Viewing 15 posts - 421 through 435 (of 1,248 total)
Difference in RAID configurations may be one of issues.
http://en.wikipedia.org/wiki/Standard_RAID_levels#RAID_6_performance
April 29, 2008 at 9:24 am
You may try something like below:
SELECT CAST(SUBSTRING('20080314',5,2)+'/'+SUBSTRING('20080314',7,2)+'/'+SUBSTRING('20080314',1,4) AS DATETIME)
April 29, 2008 at 9:18 am
Just my personal point of view.
Adding a cluster on academic year may not be a bad idea if you often retrieve data based on years.
Normally, studentIDs use SSN. It...
April 29, 2008 at 9:13 am
In my memory, it is:
\\ServerName\SQLInstallationDrive$\SQLInstallationFolder\ReplData
If you would like to start to build, follow the GUI. You can find the default path and filters. You would not miss them.
April 29, 2008 at 9:01 am
Did you try to exclude the data folders of your SQL Server from Anti-virus scanning?
April 29, 2008 at 8:52 am
Here are two links, I believe they can help.
http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1063700,00.html
April 29, 2008 at 8:45 am
Is xp_filesize a built-in stored procedure?
Have you installed xpFileUtils.DLL?
April 29, 2008 at 8:29 am
How about
SELECT ts.SymbolID, MAX(t.ExecutionTime) FROM TradeSummary ts LEFT JOIN Trades t ON ts.SymbolID=t.SymbolID GROUP BY t.SymbolID
April 28, 2008 at 3:49 pm
I copied your script and paste it on both SQL 2000/2005. I ran it without any issue.
April 28, 2008 at 3:42 pm
You may try FileSystemObjects as your starting point.
http://msdn2.microsoft.com/en-us/library/6kxy1a51(VS.85).aspx
April 28, 2008 at 3:32 pm
Try
SELECT @@VERSION
Date of the last modification is there.
April 28, 2008 at 3:28 pm
You may consider the utility, SCPTXFR
April 28, 2008 at 3:18 pm
Since you have to do your work across servers, you may consider to create a device and backup your database directly to your target server.
April 28, 2008 at 3:13 pm
How about
SELECT * FROM sys.sysusers WHERE uid>5 AND SUBSTRING(name,1,2)<>'db'
April 28, 2008 at 2:38 pm
How about
SELECT * FROM sys.sysprocesses WHERE waittime >120000
April 28, 2008 at 2:28 pm
Viewing 15 posts - 421 through 435 (of 1,248 total)