Viewing 7 posts - 1 through 7 (of 7 total)
You could parse the string and store the 4 integers in 4 INT columns, and use them to sort. Create a computed column that returns the 4 integers together...
January 21, 2010 at 7:02 am
JohnG,
Just for clarification, are you saying that a date/time value 1 millisecond before midnight and a date/time value 1 millisecond after midnight would have the same value in a "datetime"...
May 16, 2008 at 12:56 pm
We've put our data (not logs) on raid 10 (1+0, actually). It's better performance than raid 5, although it certainly costs more. However, disks these days are cheap...
September 28, 2007 at 7:07 am
Here is sample VB code to display all available SQL servers:
Dim i As Integer
For i = 1 To SQLDMO.ListAvailableSQLServers.Count
MsgBox SQLDMO.ListAvailableSQLServers(i)
Next i
May 11, 2006 at 7:37 am
Have you tried SQL-DMO? What is your development environment?
May 10, 2006 at 12:27 pm
Try the following. It will do what you want for every stored procedure in the current database. You will have to have Update permission on the syscomments table.
March 23, 2006 at 1:48 pm
Viewing 7 posts - 1 through 7 (of 7 total)