Viewing 15 posts - 31 through 45 (of 62 total)
We do a lot of date cleansing within our DTS packages, but we use T-SQL to do it. Use the datepart function to do this. Example:
select datepart(yyyyy, MyDate)...
July 29, 2003 at 8:04 am
Well, yes, QA is free, but hey, if my company will spend the money, what the heck!!
We are looking for something with VSS intergration - RapidSQL and MssqlXpress both do...
July 22, 2003 at 11:27 am
We use Global Variables along with a case statement to change the Server and Database information in production. The following code is put into a ActiveX script that is...
July 16, 2003 at 9:24 am
What type of error are you receiving? We import files with millions of rows with no problems.
Diane
July 16, 2003 at 8:45 am
Steve,
Have you ever used the serverproperty function to return version information?
Example:
select serverproperty('ProductVersion'), serverproperty('ProductLevel')
will return the version and SP number.
Diane
April 21, 2003 at 8:47 am
What is the error message you received when the DTS package fails?
Diane
February 24, 2003 at 11:12 am
I just accepted a database development job that includes working with Data Warehousing and SQL Server Analysis Services. But I took a pay cut to get into it. ...
January 2, 2003 at 2:26 pm
Set up the remote server as a linked server on your local server. SQL Server Books Online (help files) will show you how to do this.
Then use the following...
December 2, 2002 at 12:08 pm
November 21, 2002 at 3:00 pm
Double click on the job and look in the description text box. When a DTS package is scheduled, this is automatically filled in. The package name should be their...
November 21, 2002 at 2:50 pm
In the shops I've worked in, I usually refresh the development database with a backup copy of production. After the refresh the developer would apply any "In progress" changes...
November 15, 2002 at 9:21 am
Thanks to all for your replies.
Matt - I'm looking at the Entegra product but I think the price may be too steep ($5000) for my client.
Thanks,
Diane
November 15, 2002 at 9:15 am
Are you referring to a stored procedure?
November 11, 2002 at 9:28 pm
Maybe. If all your db calls are via a stored procedure than yes, they will collect the same data. If you are sending any plain SQL to the...
October 28, 2002 at 9:42 am
select db_name()
will give you the current database name
Diane
September 10, 2002 at 4:59 pm
Viewing 15 posts - 31 through 45 (of 62 total)