Viewing 15 posts - 1 through 15 (of 17 total)
Have you used Global Variables set from a Configuration table or prompted from the DTS package/ActiveX and declare the parameters
August 17, 2004 at 10:57 am
Hi Sarah,
Here's a link that describes what you / how you need to proceed.
http://www.sqldts.com/default.aspx?225
hth
August 11, 2004 at 8:35 am
Hi Steve and all users of the QOD forum.
This QOD site is a tremendous help to me, and I'm sure for others too. Why was the forum created? For just that...
July 30, 2004 at 8:38 am
The transaction is managed within the Workflow Properties/Options. Look at the section labeled 'Transaction'
July 16, 2004 at 8:45 am
Presumption being the mother of all screw-ups, it seemed clear to me that this was written for the PUBS database, so I ran it there without error. It is obvious...
July 9, 2004 at 8:55 am
As you say - they are tough to read. I usually create a system activity table and use a stored procedure called from the DTS package to record the activity. Here's...
June 15, 2004 at 9:09 am
DTS has such logging built into it. Just enable it through DTS Package Properties
June 15, 2004 at 8:44 am
I evaluate my control and set a variable that is used to enable or disable the 'next' DTS step. This particular example is used for looping a set of files,...
May 21, 2004 at 8:33 am
In addition, you will need to declare the Global Variable(GV), either in your code or at the DTS package level. I would suggest declaring it at the package level.
Open...
April 12, 2004 at 8:24 am
Description, is a word known to SQL Server, hence the coloring of the word to blue which is the clue that the program is treating it as an embedded term...
March 17, 2004 at 10:37 am
Are you looking to total some value(Sales) by year? You may want to consider using something like:
Select Total(Sales) Group By Year(SalesDate)
For example:
SELECT PaidDate, sum(AmountPaid) FROM Payments Group By PaidDate...
March 15, 2004 at 3:14 pm
It sounds like you want to import a *.DTS file. If that's the case then:
1) Open SQL Server
2) Click on Data Transformation Services
3) Click on Action on the Menu Bar
4)...
March 15, 2004 at 2:59 pm
DTS is the way to go and it is very powerful. There is an excellent book called SQL Server 2000 DTS(Wrox) with lots of examples and code, and @850 pages of...
March 9, 2004 at 10:50 am
Thank you Calvin - it sounds relatively easy. I was missing the Dynamic Properties Task part. It sounds like a loader/variable manager applet. Will see what I can come up...
March 9, 2004 at 8:24 am
That was exactly what I needed! I'm having some teething problems with SQL Server but what I've seen so far is very impressive and you have helped me greatly -...
March 3, 2004 at 9:21 am
Viewing 15 posts - 1 through 15 (of 17 total)