Forum Replies Created

Viewing 15 posts - 13,771 through 13,785 (of 14,953 total)

  • RE: 2005 Upgrade Paths

    In-place won't work from 2000 Enterprise to 2005 Standard. Backup-Restore will work. So will the SQL 2005 "Copy Database" function, or Detach-Attach.

    There are some things to make sure...

  • RE: Issues with working query - Help Needed.

    The overflow is caused by "Convert(DECIMAL(3,2)...". The numbers after "decimal" tell it how many digits to allow. The first one is total digits, the second one is digits...

  • RE: SQL 2005 Query Help Needed

    If the "mother proc" creates a temp table, and calls the "child procs" to populate it, that works quite well.

  • RE: SQL Server 2005 installation

    There are options when you install SQL Server for installing server components and/or client components. The assumption with Enterprise and Standard is that you will install those on different...

  • RE: SQL Server 2005

    I would consider a question about the Resource database valid in an interview (or QotD). In the interview environment, if asked "What are the system databases in SQL 2005?",...

  • RE: Any better than IF @@ERROR <> 0 error handling?

    The error proc's contents really depends on what you need for your particular application and shop.

    The first thing to do is capture the error data. I use variables for...

  • RE: How to re-write this query in a better way? _Rob

    My first question is: What do you mean by "better"? Faster? More standard? Easier to read? Gets the right results (assuming current version doesn't)?

    As already pointed...

  • RE: next row Number

    Ident_Current() will get you the most recent identity value for a table. That would be better than select the max(ID).

    On the other hand, is it possible to either use...

  • RE: Clusterization

    Active/Active clustering can improve performance, Active/Passive won't.

    Active/Active is more expensive (requires extra SQL Server licenses).

    I can't tell you how much better it will perform, since that's very dependent on the...

  • RE: Linked

    Login timeout errors are usually (a) the server isn't running, (b) the network/connection is too slow.

  • RE: Avoiding use of -TOP 1-

    Without the code of the query, and probably the underlying tables, the best bet I can give you is, instead of using Top 1, set something in your Where clause...

  • RE: Opinions about potential database structure

    I would definitely NOT recommend either of the practices (all procs in one place, one-proc-to-rule-them-all).

    I have seen an advantage to having all the procs for a specific application in one...

  • RE: Importing spreadsheets with SQL Server 2005

    I don't know one I can recommend. I'd just fire up Google and start looking.

  • RE: Creating CURSOR

    Not sure what you mean by wrapping it in a variable, but if you mean you would need to turn it into dynamic SQL, then the answer is "maybe". ...

  • RE: Problems with ghost cleanup system process

    GilaMonster (5/7/2008)


    It does work for auto grow and shrink, also cleans up dropped objects or indexes.

    Done anything like that recently?

    Per MSDN, it does all that, but when it's just cleaning...

Viewing 15 posts - 13,771 through 13,785 (of 14,953 total)