Forum Replies Created

Viewing 15 posts - 2,551 through 2,565 (of 2,611 total)

  • RE: repliction between different schemas

    I am happy to tell you that the schemas do not have to be the same.  In fact, you can replicate from several databases into a single database and also...

  • RE: Finding where a column name has been used

    The other option is to open Query Analyzer for SQL 2000 and press F4.

    You will get a search utility that can search for columns.

  • RE: How to Single-Thread a stored procedure

    Not that I want this thread to go on anymore, but here is my last post.  Yes - you are correct, the same spid can lock the same resource multiple...

  • RE: How to Single-Thread a stored procedure

    If you use a global temp table, you could also log in the table information as the procedure processes (what step it is at, who ran it, etc) and you...

  • RE: How to Single-Thread a stored procedure

    A select with a HOLDLOCK or using transaction isolation levels will work if the select command is held open.  The procedure is running more than one command so the lock...

  • RE: How to Single-Thread a stored procedure

    Before I get beat up, I want to add that the above post was not a full description of how parallelism, or transaction isolation levels work.  I was just trying...

  • RE: How to Single-Thread a stored procedure

    MAX DOP prevents multi-threading within a single process, and that is not really what he is trying to do.  With MAX DOP set to 1, you can have two users...

  • RE: How to Single-Thread a stored procedure

    I think you will have to make some adjustments to not use a transaction within the stored procedure.  I do not think the app lock can be called with an...

  • RE: restore to a different DB name

    The message was telling you that you were trying to run the restore operation while you were in the database.  If you have enterprise manager (or query analyzer for that...

  • RE: How to Single-Thread a stored procedure

    Just a term issue, I think everyone has caught on that you want to prevent more than one person from running the same procedure at the same time.  This is...

  • RE: Storedproc - executing for the past 30 min

    Ok, a couple of things.  First, all of the white space you have in your posted procedure syntax is making it hard to read.  Second, have you run sp_helptext on...

  • RE: Help setting up Reporting Services

    I think RS installs using ananymous access by default.  This means that the IIS user IUSR_<ServerName> is the context that the application is going to run under.  This user may...

  • RE: job fails

    I have seen this with trust relationships between more than one network. 

    It is possible to create a job on a server that is part of one network and the...

  • RE: Transaction Log Shipping Questions

    Log shipping is always going to give you some sort of delay or data loss.   You can reduse the time between log backups and restores to a minimal, but when...

  • RE: Replicating the result set of a view

    To do this through transactional replication, you will need to include the view and all of the tables the view uses.

    Transactional replication reads the transaction log of your database and...

Viewing 15 posts - 2,551 through 2,565 (of 2,611 total)