Viewing 11 posts - 151 through 161 (of 161 total)
If you are concerned about disk I/O you might want to look into using the Partition features of sql to partition filegroups to maximise I/O. - Just a thought 🙂
January 27, 2012 at 3:08 am
Strange, this works fine for me, what version of sql are you using?
January 27, 2012 at 2:52 am
Congratz buddy! Welcome to team SQL!! 🙂
January 26, 2012 at 8:29 am
Loundy (1/26/2012)
January 26, 2012 at 8:21 am
You won't be able to combine the results from both statements as the columns are not the same. If the columns were the same in each statement you could...
January 26, 2012 at 7:50 am
The way you have the procedure written can logically return 2 data sets as you are checking for different conditions @patientid > -1 and @pid > -1
Does your application always...
January 26, 2012 at 7:25 am
I've managed to come up with 1 solution:
ExecuteSql('DATETIME', 'SELECT CONVERT(CHAR(11),GETDATE(),120)')
this will give the expected result. if anyone can come up with a better way to do this...
January 26, 2012 at 5:33 am
I went though the BOL.. and want to know that IS THERE ANY SERVER (INSTANCE LEVEL) LEVEL SETTING THAT CAN WE SET in order NOT TO HAVE AUTO COMMIT?
I've just...
September 2, 2011 at 6:02 am
What version of SQL you using? If 2008 you can use the TIME data type:
September 2, 2011 at 5:53 am
you shouldn't have to explicitly insert a value into an identity column. The idea of the identity column is to auto increment - so when a new value is...
August 8, 2011 at 3:09 pm
hxkresl (8/8/2011)
August 8, 2011 at 2:20 pm
Viewing 11 posts - 151 through 161 (of 161 total)