Viewing 15 posts - 1,876 through 1,890 (of 2,051 total)
sure sp_blockinglocks is written alright? (can't find it in the books online)
October 25, 2005 at 10:29 am
probably
http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q237398&
The "Cannot start transaction while in firehose mode" error occurs when an OLE-DB provider attempts to perform a join transaction with results pending and while not in an...
October 25, 2005 at 10:03 am
With enterprise manager you can create scheduled jobs for sql agent.
(management->Sql Agent->Jobs->Create)
Sql Agent then runs it at the specified time.
October 24, 2005 at 10:01 am
Perhaps this:
http://www.dbforums.com/archive/index.php/t-958605.html
Have you tried uninstalling and than reinstalling the client components tools of sql server?
October 24, 2005 at 9:58 am
You'll need a third party program.
Ortherwise you could try to script out all views, stored procedures and run a text-difference analyzer on it.
October 24, 2005 at 9:48 am
See DENY in the books online to prevent insert rights for a specific user.
October 24, 2005 at 7:11 am
October 24, 2005 at 7:02 am
Does any ends of the distributed query involves an windows 2003 OS or XP SP2 ?
October 24, 2005 at 6:59 am
this should help you started:
http://www.sql-server-performance.com/query_execution_plan_analysis.asp
in addition a new article about indexes:
http://www.sqlservercentral.com/columnists/lPeysakhovich/indexcreationguidelines.asp
and the follup up discussion
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=163&messageid=119673&p=2
October 22, 2005 at 3:05 pm
I guess the installer comes from which language edition you bought from Microsoft.
October 22, 2005 at 12:16 pm
1)If this is for use in a TRIGGER, I must mention that the triggers fires only once per command/set. So if inserted contains more than 1 ai_id (like 1,2,3)you will...
October 22, 2005 at 12:13 pm
Rewrote you query a little to use join syntax for readability+performance
Delete dbo.table_A
FROM dbo.table_A A /*SERVER A*/
INNER JOIN dbo.table_C C /*SERVER A*/
ON a.edfoid = C.edfoid
AND a.IsLInk = convert(bit,0) /*in case of...
October 19, 2005 at 1:38 pm
sp_prepexec is explained a bit here:
http://jtds.sourceforge.net/apiCursors.html
Normally used by Ado (since it uses cursors to retrieve data)
Normally it would be like
sp_prepare..
sp_execute.. parameter query
sp_execute..parameter query
sp_execute..parameter query
sp_execute..parameter query
sp_unprepare
A one time query doesn't...
October 19, 2005 at 10:48 am
Does it happen at set times? Perhaps a job, heavy querie, network congestion got in the way.
Is it reproducable (same parameters, ....)?
You can still increase the timeout of the command...
October 19, 2005 at 10:36 am
Viewing 15 posts - 1,876 through 1,890 (of 2,051 total)