Forum Replies Created

Viewing 15 posts - 286 through 300 (of 319 total)

  • RE: ?? on compare table to external excel ss

    Thanks for the info..

    Ok I created a table called User_Zips.

    The DB has a table called Zip

    I want to know which ones are on User_zips that are NOT on Zip?

    Thx

  • RE: If Statement...2nd try...:)

    Evil,

    This works great and I even understand it!! lol

    Thanks

    Joe

  • RE: If Statement...2nd try...:)

    Sorry Lynn,

    I'm new at this...

    Wow not only doi need a SQL class..

    I need a Forum Class!!! lol

  • RE: if statement???

    Sorry Im fairly new and as u can tell didnt write what I showed..

    Im trying to incorporate the second snippet into the first..

    so if the person has an alias of...

  • RE: if statement???

    sorry....

    So I have the following to add client name

    with tage_name = 'CUST_CLIENTNAME'

    INSERT INTO @TEMPTABLE(TAG_NAME,TAG_DATA)

    SELECT TAG_NAME = 'CUST_CLIENTNAME', TAG_DATA = (SELECT C.FNAME + CASE WHEN C.MNAME IS NULL THEN ''...

  • RE: image file ?????????

    Hi Derek..

    Still lost on this..

  • RE: image file ?????????

    thanks Derek,

    Im going to experiment

    in the meatime

  • RE: image file ?????????

    Hi,

    Ok so I did this:

    DECLARE @TEMPTABLE TABLE (

    [ID] INT IDENTITY(1,1),

    TAG_NAME varchar(255),

    TAG_DATA image)

    INSERT INTO @TEMPTABLE (TAG_NAME,tag_data)

    select TAG_NAME = 'CUST_Photo', TAG_data =

    (sELECT BLOB.BLOBASIMAGE

    FROM Client

    LEFT OUTER JOIN...

  • RE: image file ?????????

    -- Declare @TEMPTABLE to hold values to be returned to HTML Form

    DECLARE @TEMPTABLE TABLE (

    [ID] INT IDENTITY(1,1),

    TAG_NAME varchar(255),tag_image image,

    TAG_DATA varchar(8000))

    I added the tag_image

  • RE: image file ?????????

    I should explain better sorry..

    OK blobimage is an image field on a table

    the SP is used to put data on HTML forms.

    Here is a better snippet...

    first this gets denist

    INSERT INTO...

  • RE: syntax error???

    thanks..

    I got a new one Im tottaly confused about stay tuned!!! lol

  • RE: syntax error???

    Wow never picked it up!!

  • RE: syntax error???

    WOW i NEVER PICKED THAT UP!!

  • RE: syntax error???

    thats a good explaination..

    Im putting it on my Fridge!!

  • RE: syntax error???

    thanks that works great...

    hate to be a pain I really am new, can u explain why that is, just so I know?

    Thanks

Viewing 15 posts - 286 through 300 (of 319 total)