Viewing 15 posts - 42,661 through 42,675 (of 49,566 total)
Full backup does not truncate the tran log. Never has. Only a transaction log backup, an explicit truncate or a switch to simple recovery will truncate the tran log.
December 2, 2008 at 11:57 pm
Don't bother with lock pages on a desktop. Since it prevents SQL from been swapped out, it could give you perf problems with other apps.
Lock pages is important on servers...
December 2, 2008 at 11:35 pm
That's going to have to be a procedure, since you have dynamic SQL.
December 2, 2008 at 4:37 pm
Remove the select ISDATE ('5/1/2008') from before the Create Proc
You're missing begins for two of those ifs
If ISDATE(@DateMin) = 0
BEGIN
Raiserror('Please enter valid date format...
December 2, 2008 at 3:40 pm
Monitor that regularly and when the available space gets low, manually grow the file.
December 2, 2008 at 3:13 pm
That's going to take a while.
What's the availability requirements? Can you get a weekend where the DB isn't in use? It may not take that long, but just for...
December 2, 2008 at 3:12 pm
Gaby Abed (12/2/2008)
Really? I'm curious what his answer was, or was it a simple "I don't know"?
He told us (panel interview, myself, two other DBAs and a...
December 2, 2008 at 3:00 pm
nate (12/2/2008)
December 2, 2008 at 2:56 pm
Script all the objects (perhaps excluding the foreign keys) to files, bcp all of the data to file. Create a new database, run all of the script files, bcp all...
December 2, 2008 at 2:45 pm
It's got nothing to do with space available. Grows are very intensive operations and will cause the entire system to slow down due to the IO impact.
As for monitoring, try...
December 2, 2008 at 2:24 pm
There's no built-in function that does that. However...
Itzik, in his PASS precon, showed a cool trick for faking one using some highschool maths.
LOGx(a * b * c) = LOGx(a) +...
December 2, 2008 at 2:22 pm
Paul Randal (12/2/2008)
December 2, 2008 at 2:16 pm
Jeff Moden (12/2/2008)
December 2, 2008 at 2:15 pm
Oksana March (12/2/2008)
I have same question but how to go from beginner to intermediate! Oksana
Study for the SQL certifications.
Note, I did not say write and pass them. I said...
December 2, 2008 at 2:09 pm
santhoshkumar.boregowda (12/2/2008)
The SUM of above must be equal to zero.
No way to ensure that with a float.
Any Suggestion?
Change the data type to one that is precise and accurate.
December 2, 2008 at 2:07 pm
Viewing 15 posts - 42,661 through 42,675 (of 49,566 total)