Forum Replies Created

Viewing 15 posts - 44,146 through 44,160 (of 49,571 total)

  • RE: Standards for Stored Proc Portability

    I'd use linked servers, ensure that the linked server name remains the same and change where it points when necessary.

    Bear in mind though, that if you use linked servers...

  • RE: SQL IF Statement

    Vladan (9/30/2008)


    What you are trying is not proper SQL syntax - you have to use SET, and @ with the variables... like this:

    DECLARE @newvar varchar(8)

    IF @APRIORITY = 1 THEN

    SET...

  • RE: SQL Server startup and Database startup

    There's a very detailed look at this in one of the chapters of the book "Practical troubleshooting: The database engine", edited by Ken Henderson. The book's well worth buying.

  • RE: SQL IF Statement

    Take the THEN keyword out (as SQL does not use THEN in its if statements) and replace ELSEIF with ELSE IF and your query should work as you intend.

    Also you...

  • RE: Why 249 is the limit on NonClustered indexes?

    Jeff Moden (9/30/2008)


    Gail is correct, but just curious... you need more than 249 indexes on a single table? 😛

    It's actually not hard to hit on larger tables, seeing as automatically...

  • RE: sqlserver 2005 Express

    Vinesh (9/30/2008)


    gail,fix replication first

    What do you mean by this?

  • RE: database physical design

    Not one of that size. I believe the usual recommendation for user databases is a number of files = no more than 1/4-1/2 number of cpus. You definitely don't want...

  • RE: database physical design

    george sibbald (9/29/2008)


    we have a 'performance expert' in working for one of our more independent development areas and one of his recommendations is to have the no of files per...

  • RE: Check List for DB Design

    To add to that, make sure that you have check constraints and unique constraints where applicable and that you are using appropriate data types.

  • RE: MSSQL 2005 performance issue

    Ouch. Your IO performance looks terrible. Average of 44 sec for an async IO completion with a max of 22 minutes is way, way too high.

    I can't download the perfmon...

  • RE: Oracle to SQL replication problems

    PaulB (9/30/2008)


    I see.

    Not sure how critical is the issue for you but better to get the Oracle Service Request upgraded to either sev=1 or sev=2 - in my...

  • RE: sqlserver 2005 Express

    That alone won't cause the log to be full, which it appears to be.

    The solution is to sort out the replication and find out why you have so many undistributed...

  • RE: NEED HELP in CREATING NEW DATABASE

    I can't help you with the primary key. The column must be unique and not null. From what you've posted, there's not enough info to ID the primary key.

    Post the...

  • RE: How to shrink a transaction log in a published database

    Suspended indicates they're waiting for a resource. What are they waiting for? If they're blocked, by what process and what is that doing?

  • RE: How to shrink a transaction log in a published database

    jvElecenter (9/29/2008)


    se this database is published. When i disable I can shrink it without any problem. But whem I drop the publication I'm losing all my replications.

    Your log reader is...

Viewing 15 posts - 44,146 through 44,160 (of 49,571 total)