Forum Replies Created

Viewing 15 posts - 2,821 through 2,835 (of 3,658 total)

  • RE: Determining existance of a Table in SYSOBJECTS

    OBJECTPROPERTY and OBJECT_ID

    I could be wrong, it has been known before.

    I read somewhere about user defined functions that they have to be evaluated on a row by row basis. ...

  • RE: Determining existance of a Table in SYSOBJECTS

    If calling a function results in row by row processing wouldn't it be better to resort to the old fashioned

    IF EXISTS (SELECT 1 FROM dbo.SysObjects WHERE Type='U' AND Name='Customers')

  • RE: DTSRUN /~N

    Thanks, I've seen the option and it produces a /~Z string but not the individual parameters.

    As BOL says that the user name and password options can be encrypted I was...

  • RE: What should be the daily routine of a ideal DBA

    Make large cup of non-decaff coffee

    I would put check backups first closely followed by check disk space and current server activity.

    I have my...

  • RE: Service Pack

    I have been running the 818 hotfix for over a year now with no problems.

    I thought SP3 was replaced with SP3a in any case and therefore you cannot download SP3.

    The...

  • 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...

Viewing 15 posts - 2,821 through 2,835 (of 3,658 total)