Viewing 15 posts - 1 through 15 (of 16 total)
Thanks for the suggestion.
I had some questions on how to do error handling. I am not very concerned on the inserts into the archival db as its pretty much going...
August 13, 2007 at 10:54 am
Yes, the prod and arch table structures are similar.
I am copying across data which would fit certain criteria (one being the date for instance).Not that every table has a date...
August 13, 2007 at 6:31 am
I was working on a conversion project for a manufacturing major in 2004.
Their data was in DB2 and front end in a variety of languages and they wanted to
bring some...
November 3, 2006 at 1:28 pm
Have you tried checking the logging option on package properties.
October 31, 2006 at 6:26 am
Sorry . mIssed out on the other columns in the select
select x.ID,x.MDate,y.SaleID,y.Cust from (
select ID,max(SaleDate) MDate from #tab_test group by ID)x, #tab_test y
where x.ID=y.ID and x.MDate = y.SaleDate
October 25, 2006 at 1:01 pm
If i read you right this should solve the problem as well
select ID,max(SaleDate) from #tab_test group by ID
--replace #tab_test by your table.
October 25, 2006 at 12:55 pm
If you have a transfer data task in you DTS then in the options tab you can mention <none> as the value for row,column delimiters. You have to type it...
October 24, 2006 at 2:50 pm
I think you do not have sufficient access rights to access the error logs. thats what i can see from the error log. If you are able
to configure then...
October 23, 2006 at 6:29 am
I am not sure if you mention this in the connextion to sql server in DTS package.
But you could do either 1 of this.
1.set the arithabort on at database level
ALTER...
October 20, 2006 at 7:43 am
Just update the @end to 2000 in your case.
October 17, 2006 at 9:45 am
This will work too.
declare
@start int
declare
@end int
set
@start=1
set
@end=100
while
October 17, 2006 at 7:34 am
try this. Column Names i used are StartDate and EndDate in Employee table. You can use a lot of dateparts - like mi,ss,hh . Look that up in SQL server...
October 12, 2006 at 9:42 am
Have you turned on logging in the DTS package. Open package in SQL server and clikc on Pakcage --> Properties from menu. In the logging tab you can have it...
October 12, 2006 at 9:22 am
DTS will not be able to dynamically change its mappings once your source table changes.
The other way i know is to use VB code to execute your DTS package. You...
October 12, 2006 at 9:17 am
Hi,
I have seen the "general error" messages at times when the network just fails. Like suppose you are connecting to some network resource etc and the network just fails for...
October 11, 2006 at 6:50 am
Viewing 15 posts - 1 through 15 (of 16 total)