Viewing 15 posts - 46 through 60 (of 117 total)
I've seen it in the past were the square boxes are the translation of a carriage return/line feed (iether on alone or in combination).
May 15, 2007 at 9:12 am
Trend could be causing this issue. Try excluding .mdb and .ldb files from being scanned.
May 14, 2007 at 11:51 am
I can think of 2 solutions.
1. If this is a scheduled job try this approach:
Add a step to you DTS that writes the start time to table before...
May 14, 2007 at 11:31 am
What JLK said is correct. You need to test your update statement in Query Analyzer. Simply use a select statement instead of an update.
I believe that you'll find that your select...
May 10, 2007 at 7:51 am
Sorry, but I've never heard of such a beast. I'd guess that most of us are self taught DTS folks and have learned by attempting to solve a specific issue.
If there...
May 9, 2007 at 8:15 am
Couple of options and questions:
1. Create a new DTS to connect to the Access DB that you created.
2. Create a new DTS and a new Access DB.
Now for the questions: ...
May 9, 2007 at 8:08 am
I believe you got this one right. Probably easiest to use the recordcount as the output parameter and procede from there.
May 8, 2007 at 6:41 am
Check books online. Search BCP and then look at "Copying Data Between Different Collations". You are using the -c option to specify a codepage but not identifying a codepage.
I would...
May 3, 2007 at 7:20 am
I believe so. That was my sample from Dev, where I had control, but as I recall once it was pushed to Prod the DBA's assumed control and simply edited...
April 17, 2007 at 11:58 am
This should fix it for you. From your ASP page call a proc that calls the DTS. This is how I did it. Below is the proc code:
DECLARE @myline...
April 17, 2007 at 6:28 am
If your DTS is a series of steps all setup with on success and a final step of sending the "Success" email you can add a failure path to each...
April 16, 2007 at 9:10 am
The easiest way is to create a proc (we called ours usp_execute_dts) that calls the DTS. You call the proc from your VB app.
The contents of the proc are:
go
CREATE PROCEDURE...
April 16, 2007 at 7:24 am
I remember having issues with the quotes. Sometimes you need the standard " other times I've had to use 2 single quotes together ''. They look quite similar and are...
April 13, 2007 at 6:21 am
Shouldn't matter.
USE DTS to get your data from the original DB.
Set up your Final and conversion tables in the destination DB.
Once the DTS imports your data it's all local and...
March 1, 2007 at 9:38 am
Sounds like the following process may work for you.
Import your data, as is, into a temp table.
Set up your conversion temp tables.
Create convtable1 (OriginalValue int, NewValue varchar(10))
Create convtable2 (Value...
March 1, 2007 at 9:23 am
Viewing 15 posts - 46 through 60 (of 117 total)