Viewing 15 posts - 16 through 30 (of 62 total)
Have I been doing it wrong?
Not necessarily, in my last job we used T-SQL exclusively to do transformations. Except we called SP's using the Execute SQL Task. It worked well for...
July 11, 2005 at 2:23 pm
Here's a few DBA books for you:
Portable DBA SQL Server by Bersinic, Giles - a small book, just the basics to get you started. Not a "Dummies" book, no fluff.
SQL...
July 11, 2005 at 10:36 am
Here is one way to do it:
http://www.sqldts.com/default.aspx?246
Another way is the way I've done it in my last job. Create a parent package, create a ActiveX script to loop through...
July 8, 2005 at 5:25 pm
You might have problems, so its best to change the ownership of the objects. For the stored procedures, if they are owned by the developers login and not 'dbo', use the...
July 6, 2005 at 2:31 pm
Take a look at Professional SQL Server 2000 DTS:
My copy is well used
Diane
July 6, 2005 at 2:07 pm
Here is another article on this subject:
http://www.joesack.com/SQLServer_Email_Reports.htm
Note to all: The Send Mail task only works in a Outlook/Exchange environment. The SQL Server must already be set up to send...
October 26, 2004 at 7:19 am
A good article but your points got lost in the wordiness. A little brevity please.
September 8, 2004 at 6:32 am
The default data access technology when moving from one SQL Server to another is OLE-DB for SQL Server. When you create a connection object in DTS the drop down for "Data Source"...
February 20, 2004 at 7:28 am
Microsoft did not put out a replacement for the MS SQL Server 7.0 data warehousing exam. So you will have to find a another exam to take.
I think getting...
January 23, 2004 at 7:29 am
Would these be packages that are running as part of a job or packages that someone is currently running manually?
Diane
August 5, 2003 at 8:08 am
Their is an excellent book out called "Real-World SQL-DMO for SQL Server" by Allan Michell and Mark Allison. It has all the code you are looking for.
Diane
August 5, 2003 at 7:39 am
You can use the DTS object model within a ActiveX script task. Use the following code to put the Name and ID's into Global Variable's
Dim objCurrentPackage
Set objCurrentPackage = DTSGlobalVariables.Parent
DTSGlobalVariables("PackageName")...
August 5, 2003 at 7:21 am
That's what we use just DTS and sp's for the transformations. Works well for us. Their is a learning curve with DTS, and DTS does have it's quirks,...
August 1, 2003 at 8:20 am
Put your delete code inside a stored procedure and call the sp from the Execute SQL Task, passing in the date value as a parameter.
Diane
July 31, 2003 at 7:50 am
To get the quarter to return as Q1, Q2, and so on, use the following for the quarter column:
'Q' + cast(DATEPART(qq, INDEX_DAT) as varchar(2)) AS TheQuarter
Happy coding,
Diane
July 31, 2003 at 7:05 am
Viewing 15 posts - 16 through 30 (of 62 total)