Forum Replies Created

Viewing 15 posts - 361 through 375 (of 496 total)

  • RE: To delete temp tables or not to?

    quote:


    If you are using SQL2000, you could try the new table datatype. Check out 'Using Special Data' in BOL for an example.

  • RE: Using (nolock) hint on a system table

    So there is no way to run a query with (nolock) on this table and such queries will always degrade serve performance?

    It is really bad day

  • RE: To delete temp tables or not to?

    quote:


    Now you seem to be referring to local temporary tables created outside of stored procedures. As Jeremy wrote, you do not...

  • RE: To delete temp tables or not to?

    quote:


    Each connection will create its own version of the temporary table. Otherwise, if two users were connected at the same time...

  • RE: To delete temp tables or not to?

    quote:


    Don't know if it is really necessary, but whether your sproc deletes the tables or leave this to SQL Server, the overhead...

  • RE: MDAC Version

    1. ...\Program Files\Common Files\System\ado

    Just check versions of dll files (i.e. msado15.dll)

    2. Parameters FullInstallVer and Version in registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DataAccess

    3. "Component Checker", from Microsoft site:

    HOW TO: Check for MDAC...

  • RE: waitresource field 4 blocked & blocking processes

    Figured this out!

    The reason was a poor database design. It contained a table that was referenced...

  • RE: Unusual update

    This is all, cause I was blind!

    I misplaced the braces:

    
    
    IF NOT EXISTS (SELECT * FROM ::fn_get_sql(@who_sql_handle))
    UPDATE BLOCKS_HISTORY
    SET who_sql = 'NOT...
  • RE: On delete trigger for a view

    quote:


    ...One does not drop a database by deleting it from sysdatabases or an updatable view on sysdatabases.


  • RE: DRI permission for a function

    quote:


    Delarative Referential Integrity. Means you have FK reference permissions needed.


    Can you give some examples when...

  • RE: Column update

    My best wish is to figure out where this came from...

    Perhaps he added a spare step for a job, or created a separate job on another server, etc.

  • RE: Column update

    You mean placing an 'on update' trigger on the table?

    BTW, I, myself do some update within my job on this table, so this will not work.

    Another reason is that it...

  • RE: Permissions to run extended procedures sp_OACreate

    quote:


    hey steve! may your site is more valuable than you know, because there's been something called xp_msmq.dll up for a couple of...

  • RE: How many channels to use.

    quote:


    If you're using hot-plug drives, and I hope you are, then you will need a backplane for each channel. There will...

  • RE: Trying a new way to use fn_get_sql()

    It is kind of analog to DBCC INPUTBUFFER

    The difference is that this function returns the highest nest level, while DBCC INPUTBUFFER,- the lowest.

    It came with sp3. You can find...

Viewing 15 posts - 361 through 375 (of 496 total)