Forum Replies Created

Viewing 15 posts - 1,651 through 1,665 (of 5,685 total)

  • RE: Are the posted questions getting worse?

    Okay, I'm confused by the bolding of my name randomly in this post:

    http://www.sqlservercentral.com/Forums/FindPost1278324.aspx

    Is that supposed to mean something or am I just over-sensitive due to frustration with a completely different...

  • RE: Blocking Issue

    This, I believe, will work better for you:

    DECLARE @currentDate datetime = ' 2012-03-22'

    SELECT DISTINCT

    DC.DoctorID, ca.StatusCode

    FROM schDIA.tblDoctor AS D

    INNER JOIN schDIA.tblDoctorContact AS DC ON D.DoctorID = DC.DoctorID

    INNER JOIN schDIA.tblDoctorLicenseHistory...

  • RE: SQL SERVER WEIRD Performance problem. Please help.

    bullo (4/4/2012)


    it runs VERY fast , but runs SUPER slow on sql server. I cannot understand it. i made every latency test.

    Probably something to do with SQLEXpress, but I dont...

  • RE: SQL jobs Dead Locks Issue

    Mac1986 (4/4/2012)


    Thanks a lot Evil: I will try to locate the that particular Update statement on Workqueue table.

    But we have 17 jobs getting kicked of every 5 mins and all...

  • RE: SQL SERVER WEIRD Performance problem. Please help.

    Questions:

    Is '" &this_claday_starttime& "' the start time of the class in question or the start time of the day for all classes? Same question for '" &this_claday_endtime& "'

    What does...

  • RE: SQL jobs Dead Locks Issue

    Alright, these statements are deadlocking:

    UPDATE dbo.WorkQueue

    and the first select that uses WorkQueue which drops to a table variable.

    Since the second statement could only lock up WorkQueue, I won't have...

  • RE: SQL jobs Dead Locks Issue

    GilaMonster (4/4/2012)


    Mac1986 (4/4/2012)


    It looks like SPID 76,85 and 91 are suspended. Not sure what process is responsible for it. Is it SPID 25?

    No. It's a deadlock, processes 76, 85 and...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (4/4/2012)


    Lynn Pettis (4/4/2012)


    GilaMonster (4/4/2012)


    A new misspelling for my records...

    Thank you Linn and Gylla

    Me too.

    I'm stealing these name spellings for a story. @=)

    You guys wanna be villains, heroes, or...

  • RE: SQL jobs Dead Locks Issue

    That graph looks incomplete. It's almost all SPID 25, so unless it's deadlocking itself, that won't fly well. Is that the full graph or did you edit it heavily?...

  • RE: Please help me query

    You need to google the keyword: Pivot.

    After that, if you want more complete help, please see the first link on the left in my signature below to setup staging data...

  • RE: Blocking Issue

    sqlmaverick (4/3/2012)


    i haven't seen something blocking in sysprocessors, but for hundred records it is executing fine but when the count increase to 10000 records. It keep on executing. So...

  • RE: Blocking Issue

    Have you looked at sys.sysprocesses while it's running to determine if it is being blocked? That's not a code issue, that's a concurrency issue (unless you're deadlocking yourself, which...

  • RE: Return a value from a stored procedure

    TeraByte, to answer your question and to try to ease future pain of concurrent attempts to insert, which is what Orlando was leading to, can I recommend you take steps...

  • RE: Exclude rows from the pipeline

    I agree with Elliott that you're using a best practice scenario there with what's available. For more complex decisions I'll occasionally use an asynchronous script component that will simply...

  • RE: Query help to exclude records

    misstryguy (4/3/2012)


    Hi Craig,

    Valid transaction excludes any orders that were not fulfilled like the example above were both order O1 and O2 did not fulfill has the qty received were zero.

    Ah,...

Viewing 15 posts - 1,651 through 1,665 (of 5,685 total)