Forum Replies Created

Viewing 15 posts - 4,771 through 4,785 (of 6,486 total)

  • RE: Newb needs help getting the sum of columns from multiple tables

    Roy had the right idea...but I think forgot a few pieces along the way.

    Select Ix.D, a.FirstVale, b.FourthValue, d.FifthValue

    from MainTable as x

    Left Join

    (Select id, Sum(Column1) from Table1 where type='A' GROUP...

  • RE: Increase error log qty from 6

    From what I can tell - it completely overlooks it. Perhaps once you touch the setting in SSMS, etc... I've got it set @ 250 in the registry: cycle...

  • RE: Increase error log qty from 6

    And having just tried it - the minute it cycles, the number>100 resets to 99. So - you're still stuck.

    That's from within SSMS. If you're talking 2000 then...

  • RE: Increase error log qty from 6

    If they want to pay 250$ for microsoft to tell them what the documentation already states, that's certainly their prerogative. Otherwise - show them the article above.

  • RE: Increase error log qty from 6

    You don't need to hack the registry to do this in SQL2005.

    Open up SSMS, management, right-click on SQL Server Logs, pick Configure. Set it there.

    You CANNOT set it to...

  • RE: Expresss Edition Technical Support

    It's a case of "you get what you paid for". As far as I know - you get essentially NO support other than what is in the KB and...

  • RE: How to insert date in to particular table using csv format file

    It's going to take more info than that to help you.... As in - what issue are you running into? What does you data look like? What do...

  • RE: Deleted data still in database

    ...and don't be surprised if some useful keys are wiped out in the process or cleansing the confidential data.....

    Creating a brand new database and copying the objects should work as...

  • RE: Concatenate numbers to form a 7 digit string

    It also won't help if textnumber isn't initialized to ''.

  • RE: The Identity Debate

    chris.compton (2/12/2008)


    Yes it does, thanks!

    Is "candidate" a type of key too?

    (or maybe the poster meant 'candidate' in a non db sense

    i.e. "candidate to be a key"... can't...

  • RE: TSQL: Computing Balance

    antonio.collins (2/12/2008)


    this particular example is not a pure triangle as illustrated in your article. that's because the 'code' (account number) is used as the primary join article. so,...

  • RE: Application Hang / SQL Issue?

    Also - what type of mirroring is it?

  • RE: Compare two Identical tables

    Jeff Moden (2/12/2008)


    I took a look in BOL for Kishore's suggestion on using tablediff.exe.

    Lemme quote...

    The tablediff command prompt utility returns detailed difference information between two tables and can...

  • RE: Compare two Identical tables

    Lookup_BI (2/12/2008)


    Hi Chris,

    I totally get you, but my employer is just over the hill to use a dynamic stored procedure.If only I can get this working, as I have a...

  • RE: Computed Columns

    David Leibowitz (2/12/2008)


    On more complex calc's or those calling functions, computed columns provide a significant hit on performance..I used to use them heavily...I would suggest using them sparingly.

    Also, you cannot...

Viewing 15 posts - 4,771 through 4,785 (of 6,486 total)