urgent-getting error while executing query in DTS

  • hi,

    i am getting this error while executing an query in DTS:

     

    Error:  -2147217900 (80040E14); Provider Error:  8650 (21CA)

       Error string:  [Microsoft][ODBC SQL Server Driver][SQL

    Server]Intra-query parallelism caused your server command (process ID #53) to deadlock. Rerun the query without intra-query parallelism by using the query hint option (maxdop1).

       Error source:  Microsoft OLE DB Provider for ODBC Drivers

       Help file:

       Help context:  0

    DTSRun OnFinish:  ExportTask

    Please help me as it is urgent.I am using SQL SERVER 2000

    thanks and regards,

    vishal

  • Try the query like this :

    Select * from dbo.SysObjects maxdop1

  • DTS does the things only in serial manner, I mean one after the other. Check, whether you are executing two jobs at the same time. Ideally, put those on success/on completion/on failure etc.,

  • I think you need to turn off your parellism because it's causing a deadlock.

  • Did you try my version of the query???

  • Remi, not sure which query you'r ereferring to?

     

    If you're talking about the query below it only reads everything from sysobjects.

    Select * from dbo.SysObjects maxdop1

  • Select * from dbo.SysObjects maxdop1 this should stop that error from occuring.

  • Remi, do you mean something like this?

    Select *

    from dbo.SysObjects

    option (maxdop 1)

  • ya that makes more sens . No you know I never had multi processor server .

Viewing 9 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic. Login to reply