Viewing 15 posts - 1 through 15 (of 55 total)
I've just had this probem and it turned out that the table that it was erroring on had a diffrent definiton on the subscriber compared to that on the publisher....
Thanks Jeet
June 30, 2008 at 3:00 pm
You would think that they would do the samething, however without a reindex the defrag time will continue to creep up, and so although it would be nice just to...
Thanks Jeet
February 2, 2007 at 3:53 am
The DBReindex takes about 3-4 hours and we've now started to run it once a week as this allows us to keep the defrag & check table time down to...
Thanks Jeet
February 2, 2007 at 3:49 am
The only time we had this error was when the mechnasim that keeps the times on all the servers in sync went crazy and because the time on the domain...
Thanks Jeet
January 31, 2007 at 7:51 am
Personally I don't it matters what job you are applying for...Suited and booted always!!!
Thanks Jeet
September 4, 2006 at 7:50 am
OK, problem solved. Because I had changed whom the report server service ran as, it had no symmetric key info for this new user.
Thanks Jeet
May 15, 2006 at 9:58 am
I had something similar and was cuased by an incorrect password in the datasoure(we were using stored credentials). Who are you connecting to the DB as?
Thanks Jeet
May 11, 2006 at 8:04 am
It's best to use credentials of a domain user expecailly if the file share is on another machine. in the form <domain>\<username>.
Hope this helps.
Thanks Jeet
May 11, 2006 at 7:38 am
An update on this managed to get it working by running the report server service as localsystem instead of a domain account, however this now breaks email subscriptions. Any ideas??
Jeet
Thanks Jeet
May 10, 2006 at 9:55 am
Also have alook at this thread...
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=65&messageid=269738#bm272159
Thanks Jeet
May 2, 2006 at 3:06 am
As stated above you can drop the fk's and then recreate them. Or an alternative is to disable them do the import and then re-enable them.
DISABLE WITH
alter
...
Thanks Jeet
April 21, 2006 at 3:15 am
So is the insert failing because the trigger is failing?
What is the error? It might be a permission issue?
Thanks Jeet
April 21, 2006 at 3:03 am
Deadlocks usually mean that other processes outside of your package are trying to access the same resouces (tables) as your stored proc. If your sproc is running for three hours...
Thanks Jeet
April 11, 2006 at 4:45 am
I plan to do it in live soon, however in our test system we did the dereindex first and this dropped the nightly DBCCS by 20%, the defrag made no visible...
Thanks Jeet
April 10, 2006 at 4:17 am
if you drop the table name prefix in the where so it looks like...
DELETE FROM @tbl
WHERE ID = (SELECT dbo.PersonList_Person.PersonID FROM dbo.PersonList_Person WHERE dbo.PersonList_Person.Include = 0)
or
DELETE @tbl FROM...
Thanks Jeet
April 7, 2006 at 4:25 am
Viewing 15 posts - 1 through 15 (of 55 total)