Viewing 15 posts - 16 through 30 (of 691 total)
Ask the administrator to back up the transaction log, which should free up space in the file. Then, as Chris suggested, break up your delete into smaller batches. However, breaking...
May 19, 2005 at 11:43 am
I'd be looking at anything and everything that has been changed in the application at the time that this started. Its got to be something in the application doing this. I...
May 19, 2005 at 11:30 am
Steve,
Take a look at this thread -
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=124868
Steve
May 19, 2005 at 11:13 am
I sometimes get fouled up on joins, and I don't have your schema to test with, but....
UPDATE dbo.Employee
SET CongDist = R.CongDist
FROM dbo.Ranged R
INNER JOIN( SELECT R2.Start,...
May 19, 2005 at 10:35 am
As a matter of fact, I copied the post that started this thread into my clipboard before posting it!
Steve
May 18, 2005 at 3:51 pm
SET CongDist = R.CongDist
FROM dbo.Ranged R
INNER JOIN( SELECT R2.Start, R2.Stop FROM dbo.Ranged R2
May 18, 2005 at 3:42 pm
Juanita,
In my opinion, Microsoft messed up when they named it the "transaction log", because that isn't really what it is. Its a transaction facilitator. When you issue an update, for...
May 18, 2005 at 3:27 pm
I don't have any experience with ftp, but I would think that you would create a maintenance plan to back your database up to a local disk (which includes scheduling),...
May 18, 2005 at 1:55 pm
In Simple Recovery model, as the transactions are written to the database, they are deleted or "truncated" from the transaction log. This is done each time a checkpoint is issued,...
May 18, 2005 at 1:52 pm
I read that in Books Online too. But its not quite accurate. In Kalen Delaney's book, Inside SQL Server 2000 (pp231-232), she states -
"A row with variable-length columns requires...
May 18, 2005 at 11:44 am
You could send your text as an attachment to overcome the 8000 char limitation.
Steve
May 18, 2005 at 11:12 am
Just be absolutely sure that if you are not taking transaction log backups, that you change the database recovery model to Simple. If you don't, you'll discover that your transaction...
May 18, 2005 at 11:07 am
The log will not shrink on its own with a transaction log backup. It will truncate. The difference is that SQL has ALLOCATED 450MB to your transaction log because at some...
May 18, 2005 at 10:59 am
If your server is going into single user every night, you should probably look at your maintenance plans. Some maintenance actions require exclusive use of the database, and a maintenance...
May 18, 2005 at 10:43 am
If this is a one time shot, you should be ok just copying. Be aware that the progress bar in Windows Explorer may go haywire, showing incredibly large positive/negative numbers. ...
May 18, 2005 at 10:32 am
Viewing 15 posts - 16 through 30 (of 691 total)