Viewing 13 posts - 1 through 13 (of 13 total)
I found this in BOL April 2006.
By default, the image is rendered in TIFF format, which can be displayed with the default image viewer of your operating system...
June 30, 2006 at 9:47 am
A first palce to look, besides system and application logs is sqlsp.log - which should be located in the windows directory on that machine. Look for error messages in there...
June 27, 2006 at 7:49 am
Your most likely looking at seconds expired since '01-01-1970' in case you want to 'translate' into datetime you can write it like this
SELECT
DATEADD(ss, (A.[yourtime]- 14400), '01-01-1970') AS [UTC-4] --...
June 23, 2006 at 8:49 am
I hope you mistyped/misspoke and didnt compress the log files via ntfs or any other method. A) it's not supported B) Your log files absorb the majority of your I/O activity...
June 20, 2006 at 11:44 am
Thanks for the follow up Vincent. I understand your earlier statemet now given the added explanation/observation. - Sassan
May 2, 2006 at 10:40 am
I typically take SQL server offline - in case this is not possible - you can detach certain DBs at a time in case they are located on separate drives....
April 26, 2006 at 9:05 am
Could somebody explain the math for 58 records should take less than a second at 100 Mbps - Thanks already
April 25, 2006 at 9:44 am
Are the new drives manged by Vertias volume manager?
April 21, 2006 at 2:54 pm
I can't seem to find either the download or DBA_Verify_File_Exists procedure.
March 21, 2006 at 8:17 am
As a safeway out for future questions - one answer possibilty could always be 'none of the above'. Who said multiple choice has to be limited to 4 or 5...
March 1, 2006 at 11:26 am
you probably attached msdb back before attaching model back. In this case add startup traceflag -T3608 (to only recover master db on startup) then detach msdb. Accordingly you would now...
August 31, 2005 at 2:04 pm
Several aspects stand out. Your collation is Thai_CI_AS which might add addtional overhead (double byte for unicode?) (I am assuming your whole server is in the same collation. Your temp...
August 28, 2005 at 7:28 pm
Temp DB is in simple recovery mode - accordingly truncating the log is unnecessary.
The error message you got indicates that the Default file group (Primary) was full - this indicates that tempdev (tempdb.mdf)...
August 26, 2005 at 8:36 am
Viewing 13 posts - 1 through 13 (of 13 total)