Forum Replies Created

Viewing 15 posts - 2,341 through 2,355 (of 3,616 total)

  • RE: How to apply SQL Server SP4 on Active \ Actice cluster

    Do you have AWE enabled?

    If so then you need to install the 2040 hot fix as well as SP4 (build 2039).

    Each instance needs a separate install of the service pack.

    SP4...

  • RE: iJacking

    I have a friend who was slightly worried about where we left our cars when we went to a rock concert.

    You don't have your works lap top in the boot...

  • RE: Is XML the Answer?

    As far as I can tell the advantages of XML are:

    • It can get through port 80 in a firewall without scaring network admins
    • It is geek readable so where the originator...
  • RE: multi table insert statement

    I don't believe that it is possible directly.

    I have used an INSTEAD OF trigger on a view to achieve something similar but to be honest the simplest way is with...

  • RE: multi table insert statement

    So Job has a dependency on the Person existing before it can be entered?

    Wrap it up in a transaction and have separate INSERT statements.

  • RE: Join Dissimilar Tables - Reporting

    Well do the tables have the same structure, or does the retrieved information have the same structure?

    Can you make your SELECT statements so that they do return same structured recordsets?

    You...

  • RE: Product with multiple categories and subcategories... design options?

    I would be tempted to have a category table with:

    • CategoryId
    • ParentCategoryId
    • CategoryName
    • ...etc

    This means that your category table becomes an extensible tree so when when a marketing type decides they want sub-sub-sub-sub categories...

  • RE: returning several record sets

    It has been a while since I did old fashioned ASP but there was a NextRecordSet method on a RecordSet object.

    FirstRs.Open "YourProc"

    Set SecondRs = FirstRs.NextRecordset

  • RE: Unmatched DBO user accounts

    I tend to have the SA as the explicit dbo user. It is the one login that is common across all servers.

    You also have the db_owner role which multiple...

  • RE: This really gets my goat

    We have something called the data protection act in the UK which is a toothless attempt to block this sort of thing.

    Why toothless? Because the government decided to allow...

  • RE: Slow Patches

    My experience is that database servers tend to have more robust perimeter security than other servers.

    IIS on the other hand is more likely to be public facing and therefore be...

  • RE: Problems WIth Varchar 8000 Help please

    Not least because the blasted thing locks records blocking other processes as a result

  • RE: Store Procedure For Backup From Sql Server 2000

    Try RESTORE VERIFYONLY FROM

  • RE: Problems WIth Varchar 8000 Help please

    What tool are you using to enter the information?

    AN INSERT or UPDATE statement will allow the full 8,000 however I think there is a limit on the datagrid used by...

  • RE: Question on Stored Proc

    Well if your 3 databases are on one server I am not sure that it makes a difference.

    My personal preference from the information given would be to place the proc...

Viewing 15 posts - 2,341 through 2,355 (of 3,616 total)