Viewing 15 posts - 9,076 through 9,090 (of 14,953 total)
There isn't a native way to do that. Can be done through triggers pretty easily, but not through a login/account/group permission.
July 8, 2009 at 9:01 am
Lynn Pettis (7/8/2009)
Just my 2 cents, but I really prefer using joins. I like the separation of join criteria from filter criteria. Makes reading code much easier.
I have...
July 8, 2009 at 8:58 am
Testing, testing, 1 2 3:
;with CTE (Acct) as
(select '421-15960'
union all select '421-01824'
union all select '421-07417'
union all select '421-11222'
union all select '421-95138'
union all select '421-07565'
union...
July 8, 2009 at 8:38 am
Like I said, pick a standard and stick to it. In this case, that matters more than what the specifics of the standard are. The advantages/disadvantages to each...
July 8, 2009 at 8:34 am
Yep. Those are equivalent.
They might become different in a more complex query, but generally the engine will treat the two the same.
Where it matters more is outer joins, instead...
July 8, 2009 at 8:32 am
sqlguru (7/8/2009)
GSquared (7/8/2009)
July 8, 2009 at 8:24 am
Here's where I got that it might be deprecated: http://iablog.sybase.com/paulley/2009/01/more-transact-sql-features-bite-the-dust/
Here's the source for that: http://www.sqlmag.com/Articles/ArticleID/100697/pg/1/1.html (Subscription required)
But it's not on the official deprecations page, so far as I can find:...
July 8, 2009 at 8:03 am
Take a look at Scope_Identity in Books Online or on MSDN.
July 8, 2009 at 7:43 am
No matter how you implement the pointers, there's going to be a need for some sort of physical storage. Most likely, the physical implementation will involve either a numeric...
July 8, 2009 at 7:15 am
Alvin Ramard (7/7/2009)
GSquared (7/7/2009)
WayneS (7/6/2009)
GSquared (7/6/2009)
... Heck, I once licked a live electrical cord to see what it would feel like.)Now that explains a few things.:w00t:
The results were simply...
July 8, 2009 at 6:54 am
If by "audit", he means, "take an inventory of the state of affairs with regards to..." and that list, then what you would need to do is take that list...
July 7, 2009 at 10:09 am
sqlguru (7/7/2009)
GSquared (7/7/2009)
Have to say that they strike me as "nice to have", not as crucial. I'd rate the first one as "nicer to have" than...
July 7, 2009 at 9:53 am
I don't use prefixes by choice. Current employer requires them, so I'm using them, but I dislike it.
I don't find that it adds anything useful. It's not like...
July 7, 2009 at 9:36 am
Viewing 15 posts - 9,076 through 9,090 (of 14,953 total)