Viewing 15 posts - 11,326 through 11,340 (of 11,676 total)
You should edit the connection string of the Excel connection manager. Have you got an Excel connection manager in your SSIS-package?
The place to look is in the properties window of...
June 17, 2010 at 6:44 am
If you want to read an Excel file, you probaby have already an Excel File Connection Manager set-up.
Do the following:
Click on the connection manager. Then, go to the properties window...
June 16, 2010 at 4:48 am
I'm afraid you can't merge the columns in the Bulk Insert Task.
You could set-up a data flow with a Flat File Source where you read all of the file contents.
Then...
June 16, 2010 at 4:42 am
I try to avoid the built-in SCD component in SSIS for performance reasons and policies do not allow custom or 3rd party components. So I'm basically stuck with T-SQL. I've...
June 16, 2010 at 3:08 am
For reading the Excel file you certainly need an Excel connection manager and an Excel Source component in your data flow. Make sure you surf the net a bit on...
June 15, 2010 at 8:15 am
Add a second step in your first job. There, you can use T-SQL with a stored procedure to call the other job:
USE MSDB;
GO
EXEC dbo.sp_start_job N'My other job'
GO
June 15, 2010 at 2:10 am
You are missing something.
The Having clause behaves as a where clause in this query. The maximum of col2 is 6, so each row sattisfies the condition, ergo, the having clause...
June 14, 2010 at 2:39 am
Nice question, although not that hard for me as I use SELECT INTO a lot.
June 14, 2010 at 12:44 am
Ed-86789 (6/11/2010)
June 11, 2010 at 7:42 am
You can try three things:
* format the columns in the Excel file to General.
* write a SQL query to the Excel file to fetch the data and format the data...
June 11, 2010 at 7:28 am
Normally, the best option is to use global temp tables, so with two #. (##temp_table)
Where do you create your temp table? In a task before the dataflow or in the...
June 11, 2010 at 7:25 am
Ed-86789 (6/11/2010)
I don't know if this registry hack works with SSIS or not - I haven't tried it:http://searchwinit.techtarget.com/tip/0,289483,sid1_gci1059475,00.html
The registry hack works. It should be best practice to set the value...
June 11, 2010 at 7:14 am
The Truncate/insert method will only work if your source data also keeps history. If not, you're stuck with incremental load.
Furthermore, at the beginning truncate/insert will surely work faster than the...
June 10, 2010 at 4:27 am
Viewing 15 posts - 11,326 through 11,340 (of 11,676 total)