Viewing 15 posts - 601 through 615 (of 5,356 total)
...and while you're at it. Can you also mail it to me, Joe?
April 12, 2005 at 12:41 am
No, for UDF's you need to query directly the system tables. I'm a bit short now, since I have a meeting right now and am already late. Search the script...
April 11, 2005 at 8:57 am
If you don't have Stored Procedures that exceed 4,000 characters, this will work
SELECT
*
FROM
INFORMATION_SCHEMA.ROUTINES
WHERE
ROUTINE_DEFINITION LIKE '%mail%'
That way, you get a list, you can subsequently work on....
April 11, 2005 at 8:23 am
Much appreciated, Dave!!!
Btw, you give me the rare opportunity to post this smilie
Cheers!
April 11, 2005 at 7:19 am
SELECT
...
WHERE
DATECOLUMN >= DATEADD(m,-6,DATEDIFF(d,0,GETDATE()))
goes always 6 month from the current date back in time.
April 11, 2005 at 4:43 am
Not only this, but I also think this here is SQL Server country. Probably there are better places to ask this question.
Maybe http://www.orafaq.com
April 11, 2005 at 3:21 am
During the past 5 (+-) years or so, one might be inclined to consider this an advantage.
April 11, 2005 at 2:09 am
Don't look too closely at this system table map. The next version will turn several things here upside down.
April 11, 2005 at 2:00 am
Boy, oh, boy. This is the kind of stuff that makes monday morning a whole lot easier!!!
There are so many response here right now, that I again want to express...
April 11, 2005 at 1:57 am
You have changed yours. I'll take this chance to open up a new thread on this!
April 8, 2005 at 8:00 am
Hey Scott, now that you've stepped out of the dark, there is no excuse not to post here.
Curtis, I try to stay on...
April 8, 2005 at 7:57 am
This part
IF (@ChangeRate < 1)
BEGIN
ELSE
looks strange.
April 8, 2005 at 7:53 am
Viewing 15 posts - 601 through 615 (of 5,356 total)