Viewing 15 posts - 16 through 30 (of 35 total)
This still seems to be the case in 2008. The CHECK CONSTRAINT on the underlying tables must be set to "Check Existing Data on Creation or Re-Enabling = Yes." I...
November 16, 2009 at 1:06 pm
This worked like a CHAMP! I added the insert to our existing trigger, and it caught my insert details in the failure condition. Now if this thing recreates itself, we...
November 4, 2009 at 8:30 am
Very nice! Thanks!
November 3, 2009 at 8:19 pm
so this proc needs to be installed in each database where you want to run it?
September 17, 2009 at 12:09 pm
Stephen Cassady (3/26/2007)
Don't rebuild and drop and all that, just use
sp_replrestart
This worked for me. Ran this on the publisher database, and the logreader ran fine. I'm going to read up...
March 13, 2009 at 8:20 am
I was getting this on one single custom replication proc. It turns out that the linked server referenced in the proc on the subscriber was referencing the publisher, and this...
February 5, 2009 at 1:51 pm
Thanks very much, Adam! Looks like I was looking at the wrong table.
Much appreciated.
March 4, 2008 at 2:20 pm
Check and make sure you have enough disk space for the files to grow. If the DB files are set to autogrow, they will grow until they run out of...
February 27, 2008 at 7:47 am
As a relatively new DBA myself, I can recommend SQL Books Online as your primary source. Pretty much everything you will need to know is in there. Microsoft pulished administrators...
June 8, 2007 at 7:31 am
Is it the query analyser box? If so, it wants you to tell it what server to connect to, and what login to use.
June 8, 2007 at 7:27 am
Do you have any indexes on the table? Do you really need to select all of those columns? IF you can create a unique index on the columns that you...
June 8, 2007 at 7:24 am
Making the login db_datareader on the desired database would work as well, wouldn't it?
April 18, 2007 at 7:12 am
From books online:
DBCC SHRINKFILE applies to the files in the current database. Switch context to the database to issue a DBCC SHRINKFILE statement referencing a file in that particular database....
January 23, 2007 at 9:59 am
I was able to get around this issue by setting up an alias for the server giving me trouble in the Client Network Utility.
January 22, 2007 at 7:19 am
With the help of a much smarter DBA, this has been solved. At some point, someone moved a system database on the system. Apparently, after you do this, you...
January 12, 2007 at 8:35 am
Viewing 15 posts - 16 through 30 (of 35 total)