Forum Replies Created

Viewing 15 posts - 5,341 through 5,355 (of 6,486 total)

  • RE: Setting up a 2005 Cluster: Feedback

    A few comments:

    - since you're talking about involving 3 machines, I'm assuming you're talking 2 active and 1 passive, right? If so - you need to make sure...

  • RE: Syntax question

    Xander - I'm not getting any PM's (I actually never have, so I don't know if I'm set up to receive them).

    It's probably better to just post it here. ...

  • RE: Syntax question

    Try posting what you have so far, and what you're trying to accomplish (specifically). Someone should be able to point you in the right direction, or point out why...

  • RE: Create Index on computed column

    You have to mark the calculated column as persisted (the results must also be deterministic).

  • RE: Assigning Variables using DYNAMIC T-SQL

    actually - SHE's the woman...:) But I'm sure she'll appreciate the feedback...

  • RE: Why "SELECT 'Return Value' = @return_value'

    You've got two somewhat different things going on here:

    - The first one is trying to capture the return code of a Stored Procedure into a variable for later use.

    ...

  • RE: The Backup Myth

    Why restrict yourself to the easiest part of the process? Testing the restore of a single user DB, you'ev bypassed all sorts of fun and challenging things that will...

  • RE: Add incremental count to group of rows

    The only other way to do that without a temporary table would be a correlated sub-query, which is going to kill your performance. If your adjustments table is big...

  • RE: Total columns in a table

    Try something like this:

    select

    so.name tablename,

    sc.name columnname,

    sc.colorder columnorder,

    sc.length columnsize

    from syscolumns sc

    inner join sysobjects so on sc.id=so.id

    where so.xtype='u'

  • RE: Simple Recovery and the transaction log

    the transaction log tracks what is being changed during a given operation. In simple mode, once the operation/transaction is completed and gets committed, the space in the transaction log...

  • RE: Syntax question

    If sounds like you're setting up something I refer to as "cursor hell" since this seems to be a snippet from something I can only imagine is being called from...

  • RE: Add incremental count to group of rows

    Here's an example using somethig approximating your data. You weren't really clear on the table layout, etc... so it's going to be tough to know.

    Anyway - see if this...

  • RE: Stored Procedure Help Like Syntax

    Try changing that to a varchar so that you don't get the etc blank spaces....

    @SitusParam VARCHAR(40)

    if you called your code as it is now it queries for

    ...

    WHERE (SITUS like...

  • RE: Would you go for a MBA or a Master in Info. Systems?

    The catch is - it's YOUR career, so it's what you would do. That's a purely individual question that can only be answered by you.

    that being said - you're...

  • RE: Manipulating Data

    Aah... different issue. This can be fixed with a small tally table.

    try this on

    --perhaps make smalltally or Tally a permanent addition to the tool kit!

    create table smalltally (n...

Viewing 15 posts - 5,341 through 5,355 (of 6,486 total)