Viewing 12 posts - 31 through 42 (of 42 total)
The exception file logging does not recognise the duplicate keys or referential integrity errors , so it does not create the .source and .dest exception files in this case
Here...
April 13, 2005 at 3:43 am
this might help you
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=19&messageid=172020#bm172233
Regards
Meghana
April 13, 2005 at 3:11 am
The following URL gives u an example on how to do this
http://www.sqldts.com/default.aspx?214
Thanks
Meghana
April 7, 2005 at 4:45 am
Please put an alias to your tables and then it should work fine.
Something like this
Declare @Table_1 Table (Member varchar(20), Age int)
Declare @Table_2 Table (Member varchar(20), Score int)
Insert into...
April 6, 2005 at 3:49 am
Can you give more info on when you are getting this error.
also please check your DTC if it is running.
Regards
Meghana
March 29, 2005 at 2:33 am
I am not sure if we can update the timestamp field in a table. Since the timestamp field itself keeps track of changes (whether inserts or updates) made on the...
March 28, 2005 at 3:30 am
Try setting ConnectionTimeOut = 0 for the database connection
You can do this using the disconnected edit .
1.Expand Connections
2. You can see the DB connections your package has
3. on...
March 24, 2005 at 1:26 am
I have another way to solve this.
select CustomerID, Orderdate
from orders A where A.Orderdate in
(select Top 2 B.orderdate from orders B where A.customerId = B.customerId)
order by CustomerID, OrderDate desc
Which...
March 23, 2005 at 7:42 am
If you do not have time to go thru BOL . this is how you can do it
create view streetfile
AS
select cast(street.streetcode as varchar(2)) + '|' + streetname + '|' +...
March 23, 2005 at 2:06 am
Hi
you can try setting the nocheck constraint on the tables and then load the data. The following statement would ignore the RI Constraints and check constraints.
For Eg:
ALTER TABLE...
March 23, 2005 at 1:27 am
A initialization file can be used where the server names can be specified , production server or Dev server.
A .ini file is very helpful while moving the packages across...
March 19, 2005 at 12:37 am
Viewing 12 posts - 31 through 42 (of 42 total)