Viewing 15 posts - 1 through 15 (of 22 total)
Thanx, That was basically the type of information i was looking for. Now i have to sort out how to implement a FileSystem watcher within the dts Script...
May 10, 2006 at 3:46 pm
Then either use an command line unicode converter through the Execute process task or if you have access to the file output application , modify it to replace all non...
April 21, 2006 at 10:52 am
look at http://www.sqldts.com/default.aspx?246, they have a dts package source code called looping, importing and archiving. Your process is similar to that one.
The only modifications you'll have to implement...
April 21, 2006 at 5:38 am
here is the way i would implement it:
on point 1:
1. Create two connection one for the server , one for the XLS file
2. Create as many tables as workbook needed ...
April 21, 2006 at 5:20 am
Data's definition is more important than the data itself.
can you tell me what was wrong ( i haven't tested your code yet) . I can't see why you turned...
March 30, 2006 at 6:50 am
Ok here is the code:
Table Cust definition:
Cust_Key Varchar(50) null,
Cust_CompanyName Varchar(50) not null,
Cust_CompanyAdress Varchar(255) null,
Cust_GroupID int null,
the table cust contains duplicate rows.
The code below is what i use...
March 30, 2006 at 6:28 am
Thanx all for your comments ,
but it doens't work.
I suspect some problems with the equalities test (i.e: Col1=a Col2=B etc) in all the queries involving such test. While it...
March 30, 2006 at 5:28 am
This might be a security problem. Check if the user executing the SP or the account under which the SQL server is running has enough right to access to network ressources...
September 1, 2005 at 3:37 am
maybe this could help:
if instr(fil.path,".dlt") > 0 then
'**** import this file***
else
'*** Check another file name ***
end if
Be carefull that ".dlt" is not used within the file path but in...
August 18, 2005 at 6:59 pm
Thanx ,
Finally i found out , the commit transaction and close connection properties of the executeSQL task were checked. so it seems that it was not considered as a...
August 10, 2005 at 8:17 am
Viewing 15 posts - 1 through 15 (of 22 total)