Viewing 15 posts - 991 through 1,005 (of 3,011 total)
theBorch (1/31/2011)...
This DBA is very reluctant to give that consultant Windows & SQL sysadmin rights to the University's SQL cluster that is housing their sensitive DB's, on account that said...
January 31, 2011 at 1:56 pm
YSLGuru (1/31/2011)
Michael Valentine Jones (1/31/2011)
We have about 300 instances of SQL Server Express/MSDE/etc. that I know of, so I just leave them alone.
I have...
January 31, 2011 at 1:01 pm
I go with "Don't ask, don't tell".
We have about 300 instances of SQL Server Express/MSDE/etc. that I know of, so I just leave them alone.
I have enough to worry about...
January 31, 2011 at 12:20 pm
You can just add them together. Example:
select
a.[Date]+a.[Time] as DatePlusTime,
a.*
from
...
January 31, 2011 at 9:30 am
By default, BCP loads everything in one transaction, so your transaction was 443 million rows and your transaction log file had to grow to hold that.
Use the BCP batch size...
January 30, 2011 at 4:55 pm
The script executes on the SQL server, not the client, and SQL Server has no knowledge of the timezone setting of the client, so the time of getdate() will be...
January 28, 2011 at 11:45 pm
When you expand a log file SQL Server has to initialize it internally, and that is what takes more time.
When you expand a database data file, that is not necessary,...
January 28, 2011 at 12:49 pm
select
*
from
MyTable
where
--Equal to or greater than start of yesterday
MyDate >= dateadd(dd, datediff(dd, 0,getdate())-1,0)and
--Less than start of yesterday
MyDate < dateadd(dd, datediff(dd, 0,getdate()),0)
January 28, 2011 at 11:52 am
Eric M Russell (1/27/2011)
TravisDBA (1/27/2011)
Michael Valentine Jones (1/26/2011)
Or something like that, can't remember exactly where...
January 28, 2011 at 8:42 am
The real problem is that there is no universal answer, since the offset changes at least twice per year in places that observe daylight saving time, and the rules for...
January 27, 2011 at 4:53 pm
You may want to look into SSD storage. For example, this product promises 6 GB/Sec of bandwidth on a 5 TB device.
http://www.fusionio.com/products/iodriveoctal
With 10 units, you would have 60...
January 27, 2011 at 1:59 pm
william-700725 (1/27/2011)
January 27, 2011 at 12:02 pm
"Small minds copy ideas but great minds steal them outright and make them their own."
Or something like that, can't remember exactly where I stole that line.
I have posted a...
January 26, 2011 at 10:46 pm
PHXHoward (1/24/2011)
Michael, I was able to make your script work in 2008 by adding some additional fields to the temp tables.
I would like to execute the...
January 26, 2011 at 9:31 am
SharePoint stores files in a SQL Server database. I haven't tried saving an MP3 in Sharepoint, but I know that we have used it to store training videos, so...
January 26, 2011 at 8:29 am
Viewing 15 posts - 991 through 1,005 (of 3,011 total)