Forum Replies Created

Viewing 15 posts - 2,671 through 2,685 (of 5,103 total)

  • RE: Invalid Column Name does not cause error

    That makes sense. If that part of the Procedure is never executed you will never get the error!!

    Cheers

     

     

  • RE: Invalid Column Name does not cause error

    PK this kind of problem is typical  at run time only when alias are not used (which is not your case)

    About the error at compile time is not going...

  • RE: Query Analyzer Error: resource is low. Some results are dropped

    This error is ussually caused due to a MASSIVE number or records returned to the Client side. Please either Limit the number of records returned or increase the RAM of...

  • RE: Invalid Column Name does not cause error

    Can you post the Offending code

  • RE: Trigger Question

    Yes that was my sussestion but wasn't expecting high frequency Officially you can't run a job  in intervals of less than a minute. There...

  • RE: Trigger Question

    the problem with creating jobs on the fly is that you are assuming alot!

    1. The Account that created the job needs access to msdb (something I don't like particulary from...

  • RE: CHECKPOINT statement questions

    NICE Job Rudy! I knew I had seen that before

  • RE: Need help on a Trigger

    Farrell,

    Besides What Ray Already mentioned about the wrapping Transacrtions command being unnecessary your search filter must be:

    WHERE Old.Dollars <> New.Dollars 

          OR( Old.TextValue IS NULL AND New.TextValue IS NOT NULL) ...

  • RE: Need help on a Trigger

    the IF UPDATE() will speed up things in case where no action is needed

     

  • RE: Need help on a Trigger

    Yep Got Hit by timeouts more than once today too

  • RE: Need help on a Trigger

    Farrell,

    You are better off separating this into two triggers one for insert and one for update. IF UPDATE() is meant for UPDATE Triggers. The trigger should ALWAYS be coded to...

  • RE: Trigger Question

    to start a job from a Trigger is bad. Jobs are NOT re-entrant, can you imagine what would happen if you try to start a job that hasn't finished yet?

    I...

  • RE: SQL Query sintaxe

    Ah FoxPro... I have some fun memories and some not so fun from Developers that I used to work with. mind you FoxPro SQL SUCKS!!!!!!!!!

  • RE: how to get Alias name in columns for views

    It has been a while since I have been in charge of Full Model implemetation  but DBArtisan of Embarcadero, ERWin of Computer Associates and Sybase Power Designer are the most...

  • RE: Curly braces in T-SQL

    Igor {} can be used also to call ODBC scalar functions and the {} are there for backward compatibility and yes, they WORK!

    an example of such functions is:

    select {fn ucase(...

Viewing 15 posts - 2,671 through 2,685 (of 5,103 total)