Click here to Skip to main content
15,914,452 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: SQL Server Environments - How far back do you test? Pin
Eddy Vluggen17-Jan-19 8:44
professionalEddy Vluggen17-Jan-19 8:44 
GeneralRe: SQL Server Environments - How far back do you test? Pin
maze318-Jan-19 0:50
professionalmaze318-Jan-19 0:50 
GeneralRe: SQL Server Environments - How far back do you test? Pin
jonmbutler18-Jan-19 2:35
professionaljonmbutler18-Jan-19 2:35 
GeneralRe: SQL Server Environments - How far back do you test? Pin
kmoorevs18-Jan-19 5:32
kmoorevs18-Jan-19 5:32 
GeneralRe: SQL Server Environments - How far back do you test? Pin
jonmbutler18-Jan-19 7:00
professionaljonmbutler18-Jan-19 7:00 
GeneralRe: SQL Server Environments - How far back do you test? Pin
jeb121718-Jan-19 3:13
professionaljeb121718-Jan-19 3:13 
GeneralRe: SQL Server Environments - How far back do you test? Pin
kmoorevs18-Jan-19 5:38
kmoorevs18-Jan-19 5:38 
GeneralRe: SQL Server Environments - How far back do you test? Pin
Allan Thomas19-Jan-19 15:52
Allan Thomas19-Jan-19 15:52 
This is the code I found ages ago to check the compatability level for the databases (good old 80 compatability messed a few things up for some reports I was doing) and if your using stored procedures for a login/access check this could be part of the result where your front end checks the data and goes 100 is the minimum compatability required for the successful running of this application, so if it breaks it's your fault (technically 100 is SQL 2008 but at least it's not SQL 2000).

Unfortunately this doesn't seem to be widely know (or checked for) since where I work we use a few different programs that I'm involved in and once I had set the compatability level to 80 on the wrong database (on my machine for testing) otherwise another program would behave really weirdly. The front end software suddenly broke the next day but nothing was coming up that there was anything incorrect with the system and configuration, which took about 30 minutes to track down all the stuff I had changed in the last few days.

SELECT compatibility_level
FROM sys.databases
WHERE name = DB_NAME()

GeneralRe: SQL Server Environments - How far back do you test? Pin
kmoorevs20-Jan-19 5:40
kmoorevs20-Jan-19 5:40 
GeneralOnce, just once, I would like to finish my Coffee while it's warm! Pin
glennPattonWork316-Jan-19 22:26
professionalglennPattonWork316-Jan-19 22:26 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Johnny J.17-Jan-19 0:30
professionalJohnny J.17-Jan-19 0:30 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
OriginalGriff17-Jan-19 1:10
mveOriginalGriff17-Jan-19 1:10 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Sander Rossel17-Jan-19 3:37
professionalSander Rossel17-Jan-19 3:37 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Marc Clifton17-Jan-19 1:12
mvaMarc Clifton17-Jan-19 1:12 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
OriginalGriff17-Jan-19 1:34
mveOriginalGriff17-Jan-19 1:34 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Daniel Pfeffer17-Jan-19 2:28
professionalDaniel Pfeffer17-Jan-19 2:28 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
lopatir17-Jan-19 3:42
lopatir17-Jan-19 3:42 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Daniel Pfeffer17-Jan-19 3:50
professionalDaniel Pfeffer17-Jan-19 3:50 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
OriginalGriff17-Jan-19 4:19
mveOriginalGriff17-Jan-19 4:19 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Daniel Pfeffer17-Jan-19 2:25
professionalDaniel Pfeffer17-Jan-19 2:25 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
Maximilien17-Jan-19 4:44
Maximilien17-Jan-19 4:44 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
glennPattonWork317-Jan-19 5:39
professionalglennPattonWork317-Jan-19 5:39 
GeneralRe: Once, just once, I would like to finish my Coffee while it's warm! Pin
BryanFazekas18-Jan-19 1:47
BryanFazekas18-Jan-19 1:47 
GeneralWSO CCC OTD 2019-01-17 Pin
OriginalGriff16-Jan-19 21:58
mveOriginalGriff16-Jan-19 21:58 
GeneralRe: WSO CCC OTD 2019-01-17 Pin
Richard MacCutchan16-Jan-19 22:07
mveRichard MacCutchan16-Jan-19 22:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.