Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 1,085 total)

  • RE: DE-DUP ROWS

    Could you give us a few rows of data?  I am having trouble understanding the "seperated by even and odd numbers". 

  • RE: General question about JOINs...

    Thanks Frank - I figured you or one or two other people would be the only ones to answer this... 

     

    The script is not worth anyones time; actually, I was...

  • RE: Table Design

    That sounds like a very good suggestion. 

     

    If you want to keep historic data, no space is wasted in the "old" table; you want those records and no new records...

  • RE: Populating @Variables dynamically

    Thank you guys!  I was able to use your code in one location, Steve.  I am grateful for your research. 

    I also very much appreciate knowing that @@Global does not...

  • RE: Populating @Variables dynamically

    I cannot seem to escape the requirement to DECLARE @Variable1Name, etc... 

    I even tried changing everything to a @@Global, but once a new SPID is rattled off with Dynamic SQL,...

  • RE: Populating @Variables dynamically

    Thanks Steve!  Kenneth Wilhelmsson gave me URL to a great article on this using sp_executesql - I love it! 

    Hopefully today I will be the weasel!!  (I can't believe I...

  • RE: Populating @Variables dynamically

    Thank you all!!  My horoscope said today would be good.  I have a number of things to try. 

     

    I know the table method and that will work for this first...

  • RE: Help with UPDATE query

    I think if you put parens around your OR statement, it may look better. 

    IF EXISTS(SELECT F00069, F00026, F01298, F01299, F01300

    FROM patient INNER JOIN

    tumor ON patient.UK = tumor.FK1 INNER JOIN...

  • RE: Populating @Variables dynamically

    Not having very good luck with this.  The first step in this existing process is to rename variables passed into the Stored Procedure. 

    I was having a great deal of difficulty...

  • RE: Importing to normalized structure

    I would guess they meant to say a Trigger instead of a View.  Once one field in your tblStage2 is populated, (obviously you would want to pick a field that...

  • RE: Where do temporary tables exist? How do I delete one?

    I do not use Coldfusion, but for SQL this is not as pretty, nor as specifc as the common code you are currently using.  But it will work. 

     

    CREATE TABLE...

  • RE: terrible performance on simple update query --help

    I think you need to write: 

    WHERE     ( IN ('V5940R', 'V5941R'))

  • RE: exception handling in sqlserver

    You are asking an extremely general question. 

    You may want to hit some sights to find some good books on the subject. 

    Until then, you can look in BOL under...

  • RE: i have a problem

    If you were using SQL Server, I would suggest getting a count from you Skillset table and either ALTER TABLE (if you are putting these into a #temptable for reporting)...

  • RE: Insert daily records from one table to individual merchant tables

    It sounds like you need to give more information.  Are you using single row processing, (the Cursor) to accomplish some kind of flow control for Updates versus Inserts? 

    If not,...

Viewing 15 posts - 1,051 through 1,065 (of 1,085 total)