Forum Replies Created

Viewing 15 posts - 57,916 through 57,930 (of 59,048 total)

  • RE: Insert Exec running forever

    A little off-the-wall but I've run into similar problems with other things... the way I got around it was to run this type of thing on each server with an...

  • RE: Managing Tables

    Actually, if your users are experienced in MS-Access, what's wrong with them using it?  The only other thing you could do is either write you own Web app to do...

  • RE: list multiple rows as columns

    Thank you for the feedback.  If you add tabs instead of commas, it'll open up in Excel without much of a conversion at all.  Didn't realize that the target of...

  • RE: Problem with a select Msq. 156

    So, what your telling me is that @facturas_id2 is a VARCHAR like it needs to be?  Make sure because I didn't see it defined in any of the code you...

  • RE: list multiple rows as columns

    You'll take one look at this and think I'm as crazy as a cyclist on steroids... but try it... no real loop, nasty fast, and does not require a function...

  • RE: Need help with a loop adding time to a date

    My 2 cents...

     SELECT DATEADD(mi,30*Number,0) AS BW1

       INTO #v_hcdata_Total

       FROM MASTER.dbo.spt_Values

      WHERE NAME IS NULL

        AND Number < 48

  • RE: Help for certification details

    Certification will require some tenacity on your part...

    Anyway, take a look at this url...

    http://www.microsoft.com/learning/mcp/sixsteps.asp

     

  • RE: maxdop

    How true, how true... I'm still waiting for Ravi to post some code and maybe give us a hint as to the rowcounts in the tables. 

    Ravi, while were waiting,...

  • RE: Using top 5 max (as it were!)

    Warning... most of those sub-queries contain inequality comparsisons that form triangular joins... I haven't looked super close at them but triangular joins normally mean "Death By SQL" on larger record...

  • RE: Help for certification details

    If it were me, I'd search the Microsoft website for "certification" to get the info straight from the horse's mouth.

  • RE: cannot update table

    It may also be that the Customer table is actually some (synonym) view that someone changed or changed the underlying table on.  My recommendation is to do an execution plan...

  • RE: cannot update table

    The query does not make it's own deadlocks... the query is not wrong.  Take a look at Books Online... something else is wrong... it may be that someone added a...

  • RE: Query Output as tree structure.

    Did you do a "search" in the "Search" box on this forum?  Look for "hierarchy" and "tree"... lot's of good posts on the subject...

  • RE: Recursive Self Join

    Outstanding... you were correct from your other post in that...

    1.  You would help others

    2.  You could find it again.

    I remember...

  • RE: Problem with a select Msq. 156

    It's almost the same problem as this...

    SELECT 'A'+1

    You must convert the numeric variables to strings in order to concatenate them with other strings.

     

Viewing 15 posts - 57,916 through 57,930 (of 59,048 total)