Forum Replies Created

Viewing 15 posts - 2,776 through 2,790 (of 3,607 total)

  • RE: Cant execute sql script twice

    Firstly, I would replace the DELETE FROM statements with TRUNCTATE TABLE statements. These are faster and won't generate the same amount of log file activity.

    Secondly, replace your SELECT INTO...

  • RE: The CLR in SQL Server 2005

    My issue is that CLR (MFC with a fancy badge on it) allows programmers immense powers within my databases but I am not convinced that there is the corresponding corporate...

  • RE: Update Trigger

    CREATE TRIGGER tr_FromTrainersTable ON FromTrainersTable FOR UPDATE

    AS

    IF UPDATE(Day1)

    UPDATE FromTrainersTable

    SET TimeStamp1 = GETDATE()

    FROM FromTrainersTable INNER JOIN inserted ON FromTrainersTable.FTKey = inserted.FTKey

    WHERE FromTrainersTable.Day1 ...

  • RE: changing mssqlservice account- option not available using em

    I could be wrong here but I thought that the cluster services required a domain account and thus SYSTEM would be disabled.

  • RE: Date Time Stamp update

    You can use the COLUMNS_UPDATED() function to determine if a column has been updated however this simply tells you that a SET operation has been carried out against the column,...

  • RE: Trigger web page from a stored procedure

    If you are trying to generate a web page from a stored procedure then use sp_makewebtask.

    If you are trying to call a web page as you would for a web...

  • RE: Does SQL = MySQL

    Like PHP, MySQL seems to have been written by a bunch of people who thought "what is missing from all web creation languages and how can we put all the...

  • RE: Visual Studio Integration

    As we all know the product as Yukon why not stick with that name?

    When you brand a product by the year of release even the name has obsolescence. If...

  • RE: Increase in DB size leads to slower response times of the application.

    OK, I worked on a database that had several million transactions per country per week appended to a database. I established a rule early on that said only one...

  • RE: Increase in DB size leads to slower response times of the application.

    My personal preference follows the 80:20 rule. 20% of the data caters for 80% of the needs. Therefore I prefer to have a small amount of live data...

  • RE: Maintenance Plan stops

    Has anyone changed the recovery mode of your database to simple?

  • RE: Hits and Misses

    Let us suppose that you develop on a case sensitive server and that development includes a substantial amount of data, that is, more than you would want to insert using...

  • RE: Changing attitude to technology

    I have to admit that I still look at an XML document as a posh version of a COBOL data division.

    I quite like the ideas behind OOP and when it...

  • RE: New Monitor

    My wife took one look at a 42" plasma screen and said "it takes up less room than our existing one and will require less dusting".

    What a woman!!!!!

    It's a shame...

  • RE: A Glimpse of XBOX2

    Will we be able to chip it and use it as a cheap web server

Viewing 15 posts - 2,776 through 2,790 (of 3,607 total)