Forum Replies Created

Viewing 15 posts - 586 through 600 (of 620 total)

  • RE: Trigger help

    Ronald San Juan (10/15/2007)


    Yep... as I said, no need for the trigger.

    Also, if I get it correctly, there may also be no need for the EmailOut table. The EmailOut Table...

  • RE: Trigger help

    SECOND, when is the trigger fired? On every update. But look closely, Sergiy. The email sending part filters

    BINGO Ronald. The table actually has around 25 columns, but I...

  • RE: Trigger help

    I think that is where I am heading Sergiy. Instead of populating the temp table in the trigger I will only use the trigger to populate a permanent queue...

  • RE: Trigger help

    Thanks again Lowell. That is a lot to chew on, especially for my home pc and SQL express. I will have to wait until I get back to...

  • RE: Trigger help

    Thanks everyone for the suggestions. Lowell, I think I can wrap my head around what you are suggesting. I guess I had reservations about making a table just...

  • RE: How do I find the differences?

    You could also try something like this

    INSERT INTO Upload

    SELECT

    t1.first_name,

    t1.last_name,

    t1.people_code_id

    FROM

    ...

  • RE: Filling in numbers

    Thanks Jeff, that's good stuff there.

  • RE: Importing range of cells from Excel into SQL table

    Personally I think the easiest way is to save the excel file as a tab delimited .txt file somewhere on your server. Then use BCP with a format file...

  • RE: How can I make this faster?

    How long does it take without the indexes?

  • RE: Filling in numbers

    Jeff Moden (9/27/2007)


    ... I've got a nasty fast "find missing ID's" script that gives the missing numbers as ranges rather than individual numbers....

    Jeff, I kind of remember that one from...

  • RE: select date pieces into one field

    Just a thought...If that works for you, and assuming there is some kind of identity field on dbo.Resources, then using a derived table for building the date might make it...

  • RE: select date pieces into one field

    Matt, that is quite a simple and nifty trick, thank you. There needs to be one more ) at the end though.

  • RE: Generic insert & update Procedure

    I think you are going to get into a situation where you have way too many variables than are user friendly. Trying to keep track of what variable corresponds...

  • RE: <> "Value"

    Mitch, keep in mind that Access puts its own spin on things. You can not always necessarily copy and paste SQL from Access into QA, or vice versa.

  • RE: select date pieces into one field

    Megan, two things to note here. First, I am pretty sure you will have to convert to date format to use between in the where clause, unless you...

Viewing 15 posts - 586 through 600 (of 620 total)