Viewing 15 posts - 646 through 660 (of 1,162 total)
Thanks for being so gracious!
I think BOL's just plain wrong. The SQL Server 2005 article says:
Is the style of the date format used to convert datetime or smalldatetime data to...
September 22, 2011 at 3:28 am
drew.allen (9/21/2011)
HowardW (9/21/2011)
The style parameter has nothing to do with converting a varchar/char to a datetime.
You might want to recheck your facts. BOL says differently:
http://msdn.microsoft.com/en-us/library/ms187928.aspx
September 21, 2011 at 2:50 pm
Mike John (9/21/2011)
You could use style 103 if you want the...
September 21, 2011 at 10:34 am
The key point here is you're misinterpreting the optional Style parameter of convert. It is not for converting a character value input into a datetime using a specific style, it's...
September 21, 2011 at 10:33 am
Not sure that answers the specific question...
I've never seen this to be greater than the Max memory setting. What exactly does this output?
sp_configure 'max server memory (MB)'
September 21, 2011 at 8:42 am
There are a lot of prerequisites to minimally logged inserts (even with trace flag 610 turned on).
There's a good explanation here:
http://msdn.microsoft.com/en-us/library/dd425070%28v=sql.100%29.aspx
Are your inserts in clustered index order, or can they...
September 21, 2011 at 7:30 am
Thanks Grant - I think I have a reasonable idea about how virtual database works as it needs a SQL engine to function, but Object Level Restore Native allows you...
September 21, 2011 at 5:36 am
Yes, it looks a mess and can certainly be optimised, but I don't think anyone here's going to spend the hours required to pick through it all and refactor it...
September 16, 2011 at 8:30 am
I think he's suggesting to backup to somewhere off the server. You do take regular backups...right?
Yes, whatever you do to clear space in the data files, you'll need to run...
September 16, 2011 at 5:58 am
The theory does actually work, it would just be useful if 5 seconds of care was taken before posting to make sure it was formatted correctly. If you just remove...
September 16, 2011 at 5:25 am
If you're using this for commercial purposes, I'd recommend using a professional address cleansing service as the increased accuracy should pay for itself.
Many have API's that you can send data...
September 16, 2011 at 1:17 am
Just divide the two aggregate functions. e.g. :
CASE WHEN MAX(CASE WHEN type = 'D' THEN backup_size
...
September 15, 2011 at 7:23 am
How's that:
WITH latest_backup_CTE
AS ( SELECT database_name ,
...
September 15, 2011 at 6:42 am
I don't understand why you need FOR XML PATH in the assignment of q. Q isn't an XML variable and it doesn't appear you need an XML output, therefore the...
September 15, 2011 at 6:00 am
I strongly, strongly recommend that you do not back everything up to the same backup file - put in a timestamp as part of your backup name and have a...
September 15, 2011 at 4:27 am
Viewing 15 posts - 646 through 660 (of 1,162 total)