Viewing 15 posts - 11,626 through 11,640 (of 11,677 total)
As I read the description of dtexec at BOL, the statement should take the following form:
dtexec /f mypackage.dtsx /set \package.variables[myvariable].Value;myvalue
This without the Properties.
Can you try that?
March 4, 2010 at 12:49 am
In my native language, schema and diagram are synonyms.
You should've asked your question more clearly.
But on to the question:
click on Database in the menu and then choose Generate Relation Schema.
A...
March 4, 2010 at 12:15 am
The answer is: it depends 🙂
If the reports requires data that is the result of very complex operations, I would consider a cube, since the data is precalculated over night....
March 3, 2010 at 1:59 pm
Maybe this is an option:
right before you read your flat file, edit the file with a script task. Go to the last row, place something before the number and add...
March 3, 2010 at 12:06 pm
Try checking the folder sysssispackages. If they are not there and they are not somewhere else in the MSDB folder, well, then I don't have a clue 🙂
More information about...
March 3, 2010 at 5:55 am
I'm not sure what you're asking.
If you mean how to create a schema (aka diagram) in the Data Source View, follow these steps:
1. Right-click on an item in the Diagram...
March 3, 2010 at 4:22 am
Can you show us the code that you're using to execute dtexec?
To pass variables along with dtexec it should be something like this:
DTExec /SQL "\PkgTest" /SERVER "(local)" /SET "\Package.Variables[User::varFile].Value";"File_001.xls" /MAXCONCURRENT...
March 3, 2010 at 4:11 am
Elliott W (3/3/2010)
That has already been suggested and discussed..CEWII
I'm confused. I saw nothing about a conditional split.
March 3, 2010 at 12:44 am
If the flat file source can read all rows, even the last one, you can try to filter the last row out by using a conditional split.
The condition to find...
March 3, 2010 at 12:09 am
In Management Studio, you can connect to Integration Services.
(choose Connect and then click Integration Services...)
There you will see two folders:
Running packages and Stored packages. We will look at the last...
March 2, 2010 at 11:59 pm
Business Intelligence Development Studio, aka BIDS, is actually plain old Visual Studio. When you start Visual Studio for the first time, you can choose a 'role'. For example, .NET developer,...
March 2, 2010 at 1:18 pm
March 2, 2010 at 5:10 am
When I have to use temp tables in my packages, I always use global temp tables, like ##temp and with the property RetainSameConnection set to True (as said before by...
March 2, 2010 at 3:18 am
I don't know how you create your recordset, but couldn't you store the records in a temp table instead of a recordset and use this table for your lookup?
March 2, 2010 at 3:11 am
Viewing 15 posts - 11,626 through 11,640 (of 11,677 total)