Viewing 15 posts - 46 through 60 (of 153 total)
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...
February 8, 2007 at 10:40 am
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...
February 2, 2007 at 6:58 am
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...
December 19, 2006 at 10:28 am
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...
November 13, 2006 at 2:06 pm
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...
November 13, 2006 at 1:22 pm
I got it working using the following
select * from openquery(linkservername,'select * from dbo.view').
Thanks
September 18, 2006 at 9:50 am
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...
September 18, 2006 at 8:47 am
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...
September 15, 2006 at 7:20 am
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
September 11, 2006 at 10:40 am
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
September 11, 2006 at 10:21 am
Are you using sql 2005? somehow its doesnt work in sql 2000 as these system tables dont exists there.
TIA
September 8, 2006 at 10:20 am
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...
September 8, 2006 at 9:56 am
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
August 25, 2006 at 12:10 pm
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
August 25, 2006 at 11:43 am
Viewing 15 posts - 46 through 60 (of 153 total)