Viewing 15 posts - 44,146 through 44,160 (of 49,571 total)
I'd use linked servers, ensure that the linked server name remains the same and change where it points when necessary.
Bear in mind though, that if you use linked servers...
September 30, 2008 at 7:23 am
Vladan (9/30/2008)
DECLARE @newvar varchar(8)
IF @APRIORITY = 1 THEN
SET...
September 30, 2008 at 7:10 am
There's a very detailed look at this in one of the chapters of the book "Practical troubleshooting: The database engine", edited by Ken Henderson. The book's well worth buying.
September 30, 2008 at 7:08 am
Take the THEN keyword out (as SQL does not use THEN in its if statements) and replace ELSEIF with ELSE IF and your query should work as you intend.
Also you...
September 30, 2008 at 7:07 am
Jeff Moden (9/30/2008)
Gail is correct, but just curious... you need more than 249 indexes on a single table? 😛
It's actually not hard to hit on larger tables, seeing as automatically...
September 30, 2008 at 6:58 am
Vinesh (9/30/2008)
gail,fix replication first
What do you mean by this?
September 30, 2008 at 6:42 am
Not one of that size. I believe the usual recommendation for user databases is a number of files = no more than 1/4-1/2 number of cpus. You definitely don't want...
September 30, 2008 at 4:29 am
george sibbald (9/29/2008)
September 30, 2008 at 3:57 am
To add to that, make sure that you have check constraints and unique constraints where applicable and that you are using appropriate data types.
September 30, 2008 at 3:28 am
Ouch. Your IO performance looks terrible. Average of 44 sec for an async IO completion with a max of 22 minutes is way, way too high.
I can't download the perfmon...
September 30, 2008 at 3:06 am
PaulB (9/30/2008)
Not sure how critical is the issue for you but better to get the Oracle Service Request upgraded to either sev=1 or sev=2 - in my...
September 30, 2008 at 2:54 am
That alone won't cause the log to be full, which it appears to be.
The solution is to sort out the replication and find out why you have so many undistributed...
September 30, 2008 at 2:52 am
I can't help you with the primary key. The column must be unique and not null. From what you've posted, there's not enough info to ID the primary key.
Post the...
September 30, 2008 at 2:49 am
Suspended indicates they're waiting for a resource. What are they waiting for? If they're blocked, by what process and what is that doing?
September 30, 2008 at 2:47 am
jvElecenter (9/29/2008)
se this database is published. When i disable I can shrink it without any problem. But whem I drop the publication I'm losing all my replications.
Your log reader is...
September 29, 2008 at 2:25 pm
Viewing 15 posts - 44,146 through 44,160 (of 49,571 total)