Forum Replies Created

Viewing 15 posts - 1 through 15 (of 57 total)

  • RE: Max Number of SP Input Parameters

    Yep, that's why I was confused. BOL states 1024 (SQL 7) or 2100 (SQL 2000). My closest choices were 512 and no limit (and the question was about input parameters,...

  • RE: Max Number of SP Input Parameters

    Aha, found it:

         Index --> Create Procedure:

    n

    Is a placeholder indicating that a maximum of 2,100 parameters can be specified.

  • RE: Max Number of SP Input Parameters

    I have the Updated - SP3 version of BOL.

    Under Index --> limitations-SQL Server objects -->Parameters per stored procedure it lists 1024 for SQL Server 7 and 2100 for SQL...

  • RE: How to perform structure backup in SQL Server 2000

    You could also use DTS (copy SQL Server objects task) to copy the objects without data (there is a Copy Data check box) to a backup database. Then you would...

  • RE: cluster.exe/copy master.mdf

    Have you looked into Log Shipping to keep the DR servers up to date? I used log shipping to accomplish something similar to what you are talking about.

    You could...

  • RE: How to get notification when one node fails to another?

    I always created a job to send me an email and set the schedule to run when SQL Server Agent starts. That way I knew when a virtual server failed over...

  • RE: ER diagram

    If you just want an E/R diagram of your database in Enterprise Manager, expand the database you want to generate the diagram for. There is a Diagrams entry. You can...

  • RE: Project Plan

    I would perform the migration on a test server and generate your own project plan before I would trust anyone else's. There are too many variables when dealing with a...

  • RE: cluster arhitecture

    I would also worry about security and "putting all your eggs in one basket."

    If you get hit by a SQL Server worm, you've also taken down your domain authentication services....

  • RE: Global Variables and Execute SQL Job problem.

    I was thinking about putting all of that code in a stored proc, but I wanted to figure out why the code above wouldn't work. It seems like it should....

  • RE: Multiple Transaction Log Files

    There shouldn't be any problem, but you won't get a performance boost either. Since you said you were just looking for more log space, it should work out great. SQL...

  • RE: Ensuring Replication Agents are running

    I was looking for a way to see if the job was stopped and to restart it if it was. I could use a script and just start the job...

  • RE: How to catch exceptions

    This won't help now, unfortunately, but Yukon (SQL Server 2005) is suppossed to be adding TRY CATCH blocks to Transact SQL.

  • RE: Transactional Replication woes!

    The primary keys are already there on the subscriber. What I can't figure out is why it keeps dropping the primary keys on the subscriber during the initial snapshot.

    Rob,...

  • RE: Transactional replication and updating subscribers

    I looked into queued updates, but it looks like it requires MSMQ. I don't want to further complicate matters with another Server/Service.

     

    Thanks.

Viewing 15 posts - 1 through 15 (of 57 total)