Viewing 9 posts - 1 through 9 (of 9 total)
Thank you, NBSteve,
Two points:
March 26, 2021 at 12:59 am
Actually the explanation of the behavior of the fist SELECT statement is not very accurate:
"because DATETIME has a higher precedence than INT 2 is converted to a DATETIME which results...
November 16, 2010 at 4:56 pm
Nice finding! Good to know...
The script could be simplified (2005 and 2008):
SELECTOBJECT_NAME(object_id) AS proc_name
,object_id
,definition
FROMsys.sql_modules
WHEREPATINDEX('%CREATE%PROCEDURE%',definition) > 0
ANDPATINDEX('%' + OBJECT_NAME(object_id) + '%', definition) = 0
ORDERBY OBJECT_NAME(object_id);
October 15, 2010 at 1:38 pm
The next step is to peek up a word (more than three or four letters of course) and Google it:-D
I tried with this one - Kimatos :w00t:
September 3, 2010 at 9:47 am
We use it in our Peer-to-Peer replications and they are Transactional replications, too. And it is very useful... 🙂 IMO the question is incorrectly asked.
September 22, 2009 at 10:57 am
jcrawf02 (9/2/2009)
September 4, 2009 at 11:00 am
Thanks, Oded.
Unfortunately the CTE method does not work with SQL 2000. Last year I needed to cleanup hundreds tables in order to introduce primary keys, before 2000 - 2005 conversion...
January 15, 2009 at 1:19 pm
Lowell,
Thank you for your response. I brought my example just for simplicity. The viewes that I am using looks something like this one (there are some more user tables involved):
CREATE
January 16, 2007 at 9:24 am
Thank you both for your postings. May be my description of the problem wasn't clear. I don't have any problems creating views under INFORMATION_SCHEMA in SQL 2000 at all. The...
January 16, 2007 at 7:54 am
Viewing 9 posts - 1 through 9 (of 9 total)