Forum Replies Created

Viewing 15 posts - 76 through 90 (of 240 total)

  • RE: deteriorating backup times

    There are too many things that could affect this.  I would advise that you see if this is a trend before assuming anything dire.  If the backups are still sluggish...

  • RE: stored procedure

    Insert the results into a temp table with an added IDENTITY (INT, 1, 1), in the order you want them displayed.  Then use an UPDATE to do the magic, something...

  • RE: T-SQL Print Command help please

    I think you're getting your PRINT output, but Access is losing it for you.

    You could create a work table and instead of using PRINT, use an INSERT into that work...

  • RE: Database related song or film titles.

    Analyze This!

    Cannery Row

    The Fifth Column

    Key Largo

    Checkpoint

    The Execution

    The Temp

     

  • RE: Speeding up deletes on a large table

    One thing you might consider, if you don't have to worry about ongoing transactions "while U wait", is a variation of Mike's suggestion.  Use BCP with the QUERYOUT option to...

  • RE: Using A recordset as an input parameter for a stored procedure

    I'll be interested to see what others have to say on this one.  To the best of my knowledge (which has holes that I find dismaying at times), you cannot...

  • RE: Please help in this trigger!!!

    > The trigger will only fire if there are rows affected so checking for rows affected is unnecessary.

    How do you do that?

  • RE: Please help in this trigger!!!

    > Man. you rock. that seems to be working pretty well.

    Glad I could help.

    > Is there a way to speed that up to create new TX tables and triggers?

    That's...

  • RE: Query Help - Mulitple inserts

    Seems like a slightly odd request, but here goes:

    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED

    CREATE TABLE #prds

      (prd_id CHAR (2) NOT NULL)

    INSERT INTO...

  • RE: Please help in this trigger!!!

    I suggest you familiarize yourself with what BOL has to say about CREATE TRIGGER, SELECT INTO, and other related stuff, and also follow any available links to familiarize yourself both...

  • RE: Compare two tables and return unique data?

    I don't think you want the JOIN.

    SELECT DISTINCT col_Fname

    FROM   tbl_Reports

    WHERE col_Fname NOT IN (SELECT col_Fname

                            FROM tbl_Employees)

     

  • RE: select distinct cast

    An earlier post pointed out the missing end-parens.

    Also, it looks to me like the WHERE clause in the nested "IN (SELECT" etc. is missing criteria.  I.e., what is this supposed...

  • RE: EXECUTE PROCESS TASK DOES RUN THE BATCH FILE CORRECTLY!

    Just a thought... Check out the permissions of the server login who owns the SQLSERVERAGENT service.  If your login has permissions to run the commands and the service owner does...

  • RE: Flowcharting a sql statement

    Questions like that are, in my experience, a Catch-22.  If the non-technical person can understand them, they aren't technical descriptions.  If the descriptions are accurate, the non-techie will not understand...

  • RE: How do you spell S-Q-L?

    There was a study done recently that found that incompetent people are quite often unaware of their incompetence -- they simply don't know what they don't know.  In fact, perversely,...

Viewing 15 posts - 76 through 90 (of 240 total)