Forum Replies Created

Viewing 15 posts - 8,911 through 8,925 (of 14,953 total)

  • RE: Internet Explorer and SQL server

    What if you're having to locally manage the server and need to look something up in MSDN (for example)?

  • RE: msdb.dbo sp_sqlagent_refresh_job ?

    It's a proc SQL Agent uses to refresh the jobs cache. So, it matters.

    Not sure why you'd have a user-created version, unless some DBA built a custom version of...

  • RE: multi-part identifier could not be bound

    Don't use three-part-names for the columns. SQL 2005 doesn't support that. Use the table and column name only.

  • RE: Why cursors

    They do have uses. Few and far between, but valid uses.

    The usual reason to tell people to "just don't use them", is an overreaction to overuse.

  • RE: Does Maturity Make a DBA?

    sjsubscribe (7/29/2009)


    Lynn Pettis (7/29/2009)


    Yes, my rights do include freedom from something -- your pronouncements.

    Please, show me where in the Constitution you are protected from my Freedom of Speech?

    You must try...

  • RE: Are the posted questions getting worse?

    Jack Corbett (7/29/2009)


    Anyone else want to tell this guy NOT to shrink his databases?

    Looks to me like he got the point.

  • RE: Recursive User Defined Procedure

    Take a look at "Common Table Expression" in Books Online (or MSDN). There's a section on recursive CTEs, and it has a solution for what you're looking for here....

  • RE: Is there a way to delay a trigger.,

    sarvesh singh (7/29/2009)


    I've got snapshot_isolation on and read_committed_snapshot on. Will delaying the trigger still block the tables. ...

    Yes.

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (7/29/2009)


    Lynn Pettis (7/28/2009)


    Might be E3L (or ETL, but then that might be cofused as something else), English as 3rd Language; as opposed to ESL, English as...

  • RE: Are the posted questions getting worse?

    Jack Corbett (7/28/2009)


    Dave, nothing scheduled until September now. If I'd have known a couple weeks ago we could have maybe gotten something done in August. Our group meets...

  • RE: Is there a way to delay a trigger.,

    A delay in the trigger won't do what you need. It'll just hold the transaction up and probably cause the Java to time out.

    Better to have the audit process...

  • RE: Recursive User Defined Procedure

    You could set the recursion level as an input parameter that the function passes to itself. You could set maxrecursion (see Books Online for details), but it should stop...

  • RE: Is there a way to delay a trigger.,

    While the trigger is waiting, the transaction is incomplete, and locks will be held in the table. In almost every situation I can think of, this would be a...

  • RE: Take a Seat

    The way I buy a chair is by going to a store that sells them, and sitting for a few minutes in every one of them that looks even vaguely...

  • RE: Loading Trace Files To A Table

    If you query a list of the files, it would be very easy to not use the last one in the list. That's why I suggested that.

Viewing 15 posts - 8,911 through 8,925 (of 14,953 total)