Viewing 15 posts - 91 through 105 (of 172 total)
Sorry about that.
The only thing I can offer would be to dynamically build the query, but for a large group of sprocs this would be depressing.
July 15, 2004 at 11:53 am
Would this work?
USE Northwind
select LastName + FirstName +
CONVERT(varchar(2),(DATEPART(mm,GETDATE()))) +
CONVERT(varchar(2),(DATEPART(dd,GETDATE()))) +
CONVERT(varchar(4),(DATEPART(yy,GETDATE()))) +
CONVERT(varchar(2),(DATEPART(hh,GETDATE()))) +
CONVERT(varchar(2),(DATEPART(mi,GETDATE()))) +
CONVERT(varchar(2),(DATEPART(ss,GETDATE()))) +
CONVERT(varchar(4),(DATEPART(ms,GETDATE())))
AS UID
from Employees
July 15, 2004 at 11:42 am
Hello. A list of databases can be found in master.dbo.sysdatabases.
July 15, 2004 at 11:30 am
For a rough solution, you can use a CHECKSUM approach. Below are links to an article, a script, and comments on SQLServerCentral that go me going on this.
July 15, 2004 at 11:18 am
Keep in mind that if the sproc has test variables then the data (variables in question) can be plugged straight in to the sproc and the behavior monitored.
I find that...
July 9, 2004 at 10:04 am
I’d use Query Analyzer. In fact I design my sprocs (and DTS scripts) in Query Analyzer with variables to test the sprocs, and then comment out the variables when...
July 9, 2004 at 9:52 am
Thanks for the history. Also, I too like the email notifications.
If I had to ask for one thing, it would be for the reply form to work with Mozilla....
December 30, 2003 at 10:16 am
Thanks for the information. This is shapping up to be a nice tool.
Everett
December 30, 2003 at 9:36 am
Hello.
I'm looking forward to playing with the 'Validate SP's and UDF's with checksum' over the next couple of weeks and I was wondering if there's a way to use this...
December 29, 2003 at 3:55 pm
Hello. Getdate() will work. As a test I created this function:
CREATE FUNCTION x1(@x datetime)
RETURNS datetime AS
BEGIN
return @x
END
and ran this in QA:
SELECT dbo.x1(GETDATE()) AS...
October 23, 2003 at 6:00 pm
It seems like even in a DTS you're going to end up using T-SQL (Execute SQL Task).
I'm curious, why are you using DTS and not a sproc or a...
July 25, 2003 at 4:18 pm
Quick answer is success/failure when failure matters, completion when the package should continue no matter what.
Everett
July 25, 2003 at 3:57 pm
Thanks Antares for the information.
Everett
Everett
July 25, 2003 at 9:14 am
Does anyone have a reference for log error codes? My (supposedly successful) installation recorded error codes of 2 and 997 which I believe are related to the fact that...
July 24, 2003 at 1:08 pm
Here are some thoughts:
Standby and clustering sound good if your server is heavily taxed
Replication sounds good if the primary concern is disaster recovery, this route can...
July 18, 2003 at 10:17 am
Viewing 15 posts - 91 through 105 (of 172 total)