Forum Replies Created

Viewing 15 posts - 46 through 60 (of 153 total)

  • RE: Setting values in DTS transformation

    This works but if i have multiple files and the transformation runs for each file then if i use global variable th last records is selected. I am trying to have...

  • RE: DTS help

    Exactly Russel. You are right. I need the servrname to be inserted into servername column , same with domain name also. I dont need the timestamp colum,n though. Do you...

  • RE: Scheduling a SSIS package

    Thanks for the response. I am able to set up a job to run the DTS package. I tried all 3 cases of selecting the DTs, FileSystem, SQL Server, Package Store but...

  • RE: CASE STATEMENT IN WHERE CLAUSE

    Thanks for all your help.

  • RE: CASE STATEMENT IN WHERE CLAUSE

    Thanks RGR'us

    Just wanna make sure if @custom_value is not 'D' but some other value i need to check for AL1.quantity between Threshold_value1 and @threshold_value2 . From what you wrote...

  • RE: CASE STATEMENT IN WHERE CLAUSE

    SELECT col1, col2, col3, col4, col5, AL1.amount, AL1.quantity

    from tab , tab2 AL1

    WHERE tab.id = AL1.id

    and name like '%bnb%'

    and id = 100

    AND CASE

    WHEN @custom_value='D' then

    (AL1.amount between @threshold_value1 and @threshold_value2)

    ELSE

    (AL1.quantity between @threshold_value1 and...

  • RE: SQL to Oracle

    I got it working using the following

    select * from openquery(linkservername,'select * from dbo.view').

     

    Thanks

  • RE: SQL to Oracle

    Thanks for the link that really helped I am able to set up the linked server successfully and i can see the oracle view from sql server enterprise manager. However...

  • RE: SQL to Oracle

    I have oracle client installed locally on the server from where i am trying to connect to Oracle. Now when trying to set up the linked server I am not...

  • RE: Update in batches

    Unfortunately my tables doesnt have an identity col so i trying to set up rowcount but that doesnt seem to work. Anythoughts or ideas.

    Thanks

  • RE: Update in batches

    Sorry but i cant truncate the log when thsi needs to be run in a prodn environment. Also I was looking if someone has written a code for this before.

    TIA

  • RE: Check if Index exists

    Are you using sql 2005? somehow its doesnt work in sql 2000 as these system tables dont exists there.

    TIA

  • RE: Check if Index exists

    Thanks.

    RGR'us - What i am trying to do is in a DTS pckg if an index exists for a table on a specific column first "drop it" do the data...

  • RE: Row Number

    Is that something that could be done from the back end or you are saying to have the counter at front end side? Can you please clarify. TIA

  • RE: Row Number

    Thanks I am using sql 2000 only and you are right i couldnt see any other way other than usinga temp tablle with an identity col.

    TIA

Viewing 15 posts - 46 through 60 (of 153 total)