Forum Replies Created

Viewing 15 posts - 26,266 through 26,280 (of 26,484 total)

  • RE: User access

    In EM, right click on the database where the user needs to be able to create views.  Click on the Permissions tab.  There you can grant the user access the...

  • RE: Unable to enlist in transaction

    We had similiar issues between or Windows 2000 and Windows 2003 servers.  Can you check the configuration settings on the servers and tell us what they are?  Programs -> Administrative...

  • RE: Managment

    For free tools, you may want to look at SQLH2 from Microsoft.

  • RE: PATINDEX

    You are welcome.

  • RE: PATINDEX

    How about something like this then:

    declare

    @tststr varchar(128)

    set

    @tststr = 'Other_pg12of23_112007_Vit7_7.csv'...

  • RE: Trigger Question How done versus How To???

    The only thing I could come up with is that more than 1 row may possibly be inserted when the trigger is fired.  If you were to put the key...

  • RE: PATINDEX

    try something like this:

    declare

    @tststr varchar(128)

    set

    @tststr = 'Other_pg3of7_11202006_Ndc_N.csv'

    select

  • RE: Dynamic SQL - Drop Table

    That is an interesting way to put it.  Can I use that analogy sometime?

  • RE: Dynamic SQL - Drop Table

    Ran a few more tests using one of our production servers.  Even with adding code to insert 1000 or 5000 rows of data to the tables being created and then...

  • RE: Dynamic SQL - Drop Table

    Not really a good test.  On my desktop system the numbers were a lot closer.  But what is also interesting is if you look at the execution times of each...

  • RE: Dynamic SQL - Drop Table

    Actually, #tables and ##tables are more like database tables than table variables.  Yes, table variables and #tables are created in tempdb, however, SQL Server does not handle them the same...

  • RE: Dynamic SQL - Drop Table

    Ninja, I agree.

  • RE: Dynamic SQL - Drop Table

    Like I said, arguing is pointless.  Neither of us is going to be swayed to the other side.  You can continue to write your code your way and I will...

  • RE: Truncating Transaction Logs

    Don't do an explicit log truncate after a transaction log backup.  You may truncate a transaction that completes after the transaction log backup.  Let the transaction log backup handle deleting...

  • RE: Dynamic SQL - Drop Table

    Sorry to disappoint you, but I am knowledgeable about the subject, although I may not be an expert.  It is better to explicitly destroy that which is explicitly created.  It...

Viewing 15 posts - 26,266 through 26,280 (of 26,484 total)