Viewing 15 posts - 6,076 through 6,090 (of 11,678 total)
Daniel Forrester 123 (12/13/2012)
Using the advanced editor does work but I have quite few packages with this problem.
I'm pretty sure the problem is related to the MSSQLToSSIS10.XML mapping file but...
December 13, 2012 at 1:20 pm
I have noticed that some point rankings give "special statuses".
December 13, 2012 at 7:18 am
Do you have a good reason to use AutoShrink? Because it will mess up the fragmentation of your indexes.
December 13, 2012 at 6:32 am
As far as I know this isn't possible in SQL Server.
You could create a computed column that takes the first 5 characters of your column and put an index on...
December 13, 2012 at 6:31 am
Another option is to make sure your dataflow doesn't fail: add an error destination after the regular destination and set the destination to redirect error rows.
This doesn't help when your...
December 13, 2012 at 6:17 am
sagar0838 (12/13/2012)
while loading 10000 records if the SSIS package got failed at 9000th record,how do we reload from 9001 record ,can anyone please help me out on this
Normally if the...
December 13, 2012 at 6:15 am
What if you change the datatype of the output column in the advanced editor? Does that work?
December 13, 2012 at 3:36 am
What do you mean?
"I did not give any permissions to the package"
or
"I haven't received any permissions on the package"
December 13, 2012 at 3:08 am
Maybe SQL Server thinks you're trying to write a correlated subquery. Since there's no WHERE clause, you'll get the "no join predicate" warning.
December 13, 2012 at 1:22 am
It might. The package will need access to the external database, so ports probably will have to be opened. And you're transfering data over the network, so there might be...
December 13, 2012 at 1:16 am
It depends.
In SSIS 2012 you have two ways of developing your packages:
* using the project deployment model (brand new and too much to explain in a forum post)
* using the...
December 13, 2012 at 1:13 am
The error is quite clear:
"Access is denied."
The account used to run the package (I guess the SQL Server Agent account) doesn't have permission to open the package.
December 13, 2012 at 1:09 am
You're sure that each and every of those 20 locations has data?
Is there a filter somewhere? (either in the report, or in the data source view, or somewhere else?)
December 13, 2012 at 1:04 am
If you look at the actual execution plan, you'll see that the nested loops (left semi join) has a warning sign. It says: "no join predicate". What basically means the...
December 13, 2012 at 1:02 am
Viewing 15 posts - 6,076 through 6,090 (of 11,678 total)