Viewing 15 posts - 976 through 990 (of 2,052 total)
Have you checked the permissions of SQL Agent?
November 5, 2008 at 2:00 pm
The autoupdating of stats usually improves execution plan.
Perhaps you can try this in a test-environment
CHECKPOINT --writes dirty blocks to disk
DBCC DROPCLEANBUFFERS --cleans the cache
DBCC FREEPROCCACHE --cleans the stored proc cache.
Then...
November 5, 2008 at 1:59 pm
Hello,
Verify the permissions of the Windows accounts the replication jobs run under. (and also the linked server permissions)
It could be a oneway domain trust.
There is also something like the Windows...
November 5, 2008 at 1:50 pm
Does the stored procedure changes set options (like set ANSI_NULL ON)
Verify the server SET OPTION.
Certain commands fail it some specific "options" aren't set. (like index on calculated columns etc)
November 5, 2008 at 1:44 pm
Was this a one time hickup (maybe the machine shares resources with other programs)?
November 5, 2008 at 1:39 pm
A wild guess:
Have a look at
http://sql-server-performance.com/Community/forums/p/28131/151182.aspx.
They mention verifying authentication setup and the linked server connection.
November 5, 2008 at 1:37 pm
In my opinion it won't fire if you bypass the view. Would be quite a mess if the same table is referenced by multiple views.
Can be easily tested by creating...
November 5, 2008 at 1:32 pm
your view also has the dbo prefix?
November 2, 2008 at 12:38 pm
nice that you backup all database in case the hardware breaks (we had one by a defect harddisk shortcircuiting the san-backplane)
October 21, 2008 at 2:36 pm
you could use the nolock hint
October 21, 2008 at 2:32 pm
I don't know for sure but I thought there was a lengthlimit for the name of the primary key.
You could also try to remove the statistics and see what happens.
October 21, 2008 at 1:27 pm
Is the system dsn installed on the other machines with the same name?
How does your connectionstring looks like?
October 18, 2008 at 4:07 pm
Perhaps it doesn't display hidden tables.
Extra->options->Display->Hidden objects
October 18, 2008 at 4:01 pm
Never done the conversion myself but from
http://www.dbforums.com/archive/index.php/t-947624.html
it should be
Well, the good news is I finally figured it out. Quite a switch from the old DAO methods, but I guess...
October 12, 2008 at 12:24 pm
Viewing 15 posts - 976 through 990 (of 2,052 total)