Viewing 15 posts - 1 through 15 (of 23 total)
May be this helps: http://www.sqlservercentral.com/Forums/Topic446498-148-1.aspx .
Please look for the post from Ravi
July 28, 2009 at 2:05 am
You can find the FileWatcherTask on http://www.sqlis.com
April 21, 2009 at 5:00 am
The connectionString, Servername etc is set in the ExpressionEditor of your ConnectionManager, not in the Data flow.
April 21, 2009 at 4:57 am
The except-clause requires that both parts of the sql-statement have the same structure. The exist-clause needs a subquery to work. Which is faster (or better) I don't no.
April 14, 2009 at 12:15 am
AFIFM (4/7/2009)
I have to ask, what are you going to do when you find out that they're equal or not?
I was trying to find which records in table A that...
April 9, 2009 at 2:20 am
Hi
you can set the property 'HeaderRowsToSkip' in the flatfile-connection you use (SkriptTask?).
March 11, 2009 at 7:05 am
First insert the data colums in your table.
Please try an 'Execute SQL Task' with an ADONET-Connection to your database. In the SQL-statement use 'insert into yourTable (filenamecolumn) values (substring(@yourVariableContainingTheFilename,2,4))
where...
March 3, 2009 at 12:53 am
do you know the data transformation 'conditional split' ?
February 26, 2009 at 1:50 am
create an 'Execute SQL Task'. The SQL-Statement can be something like 'select filename from tablename'
Choose 'single row' for the ResultSet
In the ResultSet Tab set ResultSetName 0 and Variable Name...
February 26, 2009 at 1:47 am
a) read your flat file in a table (First column a counter, second field a row from your file)
b) create a variable
c) fill this variable with the identificator (the...
November 11, 2008 at 5:01 am
If you want to see the differences in the content of two tables, you can try this
Select * from table1
except
Select * from table2
Both tables must have the same structure
October 27, 2008 at 1:48 am
Hello
please try select cast(email as varchar(255)) from ....
What type has the variable ? String ?
October 20, 2008 at 6:45 am
Not complete. Create the CREATE Table... and the import.sql's with the Stored Procedures and run them in SSIS
September 18, 2008 at 5:36 am
Did you ever try to solve the problem with a Stored Procedure ?
September 18, 2008 at 5:24 am
Use ISO-Formated (YYYY-MM-DD) date-fields to import.
September 18, 2008 at 5:12 am
Viewing 15 posts - 1 through 15 (of 23 total)