Forum Replies Created

Viewing 15 posts - 2,641 through 2,655 (of 3,658 total)

  • RE: Performance in Triggers

    Assuming that you have various methods of maintaining your data and can't put the logic in stored procedures try the following

    INSERT INTO dbo.HistoryTable (column1, column2......column99999,Action)

    SELECT I.column1, I.column2, I.column3 ,....column99999 ,

    CASE...

  • RE: Why do Dev people go on holiday?!!??

    Let us suppose that project A had a task called documentations and project B had a task called documentation. In a projects and employees schema these would be non-atomic.

    If you...

  • RE: sql server clustering

    Well you cluster for resilience so why wold you want to cluster on the same box?

    When you install on a cluster the Enterprise Edition knows that it IS a cluster...

  • RE: Slowed Speeds: Hardware vs Software design

    I used to develop using IIS5 and ASP and found that getting Visual Interdev to debug properly was an impossibility. For that reason I always developed a middle tier...

  • RE: Object owner not "dbo"

    No the 2nd parameter is the user within the database.

    Normally, within SQL 7 and 2000 a single login can be a single user in any one database.

    What we...

  • RE: Proper way to join tables

    I've spent 1 month tuning 400 queries that use a variety of methods for joining tables so from a performance point of view it makes little, if any difference whether...

  • RE: Object owner not "dbo"

    Let us suppose you have 3 logins for your app

    Domain\Tom

    Domain\Dick

    Domain\Harriet

    Within your database you would run

    exec sp_addalias 'Domain\Tom','dbo'

    exec sp_addalias 'Domain\Dick','dbo'

    exec sp_addalias 'Domain\Harriet','dbo'

    Even though your 3 users log on with their own...

  • RE: Slowed Speeds: Hardware vs Software design

    If you are using stored procedures make sure that you have SET NOCOUNT ON at the head of each stored procedure. I have timed 10,000 itterations of a simple...

  • RE: Proper way to join tables

    The ANSI standard is your method but for the most part it is a case of personal preference.

    My personal preference is to keep the WHERE clause for filtering and the...

  • RE: Object owner not "dbo"

    In the days of SQL 6.5 there was only ever one dbo so in order to grant dbo privileges there was an sp_addalias stored procedure to allow many logins to...

  • RE: Slacking Off

    I've mentioned it before but during the industrial revolution one of the big Lancashire mill owners discovered that if employees only had to work 14 hours a day instead of...

  • RE: Slacking Off

    There are two sorts of bunking off when you are not physically sick.

    1. You are swinging the leg because you fancy a day off.

    2. You are burnt out and need...

  • RE: sql script for table rowcounts

    Personally I would be very surprised if it could but in the old days of the Commodore Pet you could POKE a location with a certain value and the motherboard...

  • RE: Encrypt Stored Procedure

    I looked into creating extended stored procedures but I found that they were more trouble than they were worth.

    I took to creating ActiveX DLLs and using sp_OACreate etc to instantiate...

  • RE: Deadlocking & Keylocks

    What build number do you get when your run SELECT @@VERSION?

    Is it 2 separate users firing these processes or a single user?

    If it is one person firing off one command...

Viewing 15 posts - 2,641 through 2,655 (of 3,658 total)