Viewing 15 posts - 11,326 through 11,340 (of 11,678 total)
In your first post, you said that you were reading from an Excel file from a SSIS package. How did you achieve this?
I have attached a screenshot of a simple...
June 17, 2010 at 11:42 pm
You can find more information at the following URLs:
http://msdn.microsoft.com/en-us/library/ms141682.aspx
http://msdn.microsoft.com/en-us/library/cc895212.aspx
http://www.mssqltips.com/tip.asp?tip=1405
(all found in the first Google result page for the keywords ssis package configuration)
June 17, 2010 at 7:28 am
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
Viewing 15 posts - 11,326 through 11,340 (of 11,678 total)