Viewing 15 posts - 256 through 270 (of 317 total)
On the second job, do you see the database name print output in the job output (file or step history)?
March 1, 2013 at 3:21 pm
SQL Server maximum key length is 900 bytes.
Your column is varchar max and now you have inserted a value in the column that exceeds 900 bytes.
February 26, 2013 at 3:33 pm
What Gail said.
What is important for you to understand is why the log was filling up (unusually large transaction, unusually many transactions, index rebuild).
Ideally you want to get to a...
February 15, 2013 at 10:33 am
The biggest difference between being a database developer and a DBA is one of mind set.
The DBA must take ownership of his environment.
You have to monitor everything and...
February 15, 2013 at 10:13 am
My general rule is that whenever a third party application requires privileges beyond dbowner on its own databases, it gets its own instance.
February 13, 2013 at 4:49 pm
The merge agent cannot connect to the subscriber.
Either
1. any user cannot connect from the publisher to the subscriber due to network or firewall issues
2. The user you set up...
February 12, 2013 at 10:12 am
You could customize the replication update proc on the subscriber to only update the columns you want.
You custom proc script would have to be a post_snapshot_script (@post_snapshot_script in sp_add_publication)
February 5, 2013 at 4:26 pm
Is the ID the ONLY column in the clustered index?
you said "used" so I felt I had to ask.
February 5, 2013 at 10:16 am
Oh and the checkpoint is just something I do out of habit when i am doing any type manual admin task.
January 30, 2013 at 9:32 am
The transaction log is a circular file ( or a circular list of VLFs).
A tran log that has been growing will have its active part at the...
January 30, 2013 at 9:22 am
varchar fields that get frequently updated can cause page splits.
Doubly so if they are indexed.
January 29, 2013 at 6:19 pm
It is likely not shrinking because the active part of the log is at the end.
Run a few checkpoints and back up the log again and you should be able...
January 28, 2013 at 2:53 pm
Viewing 15 posts - 256 through 270 (of 317 total)