Viewing 15 posts - 5,611 through 5,625 (of 14,953 total)
I wrote articles on auditing and logging, including a lot of options. They're here: http://www.sqlservercentral.com/articles/Auditing/63247/ and (part 2) http://www.sqlservercentral.com/articles/Auditing/63248/.
The discussions include a lot of good data on the subject.
Have...
December 17, 2010 at 2:35 pm
Jack Corbett (12/17/2010)
December 17, 2010 at 1:50 pm
select destemail + ';'
from [dbo].[DESTINATARIO]
where tmailid = 11
for xml path('');
December 17, 2010 at 11:17 am
The only thing I can think of, besides getting the author to change the code, would be to use a resource throttle on it. That's only available in Enterprise,...
December 17, 2010 at 9:50 am
You would need to generate either a real or virtual table of valid combinations, and join to that.
If, for example, "1,2,null" is valid, you need a row in your "valid...
December 17, 2010 at 8:45 am
Do you prefer this test?
SET NOCOUNT ON;
IF OBJECT_ID(N'tempdb..#T') IS NOT NULL
DROP TABLE #T;
IF OBJECT_ID(N'tempdb..#T2') IS NOT NULL
...
December 17, 2010 at 8:12 am
The XML tools are what I see used the least where they could be used more. Both XQuery and For XML have a myriad of uses and improvements over...
December 17, 2010 at 7:20 am
vinothraj (12/17/2010)
December 17, 2010 at 6:55 am
When you say "assign", are you selecting something, or updating a table?
Also, are the "trade lanes" stored somewhere, or are you constructing them from string snippets in the columns of...
December 17, 2010 at 6:43 am
I think I'd need to know more about the business rules and the data being modeled before I could suggest more on either design or coding against it.
For one thing,...
December 17, 2010 at 6:38 am
So, basically, we've concluded that there are three ways to get this done:
The Ceiling way, which does it easily, simply, correctly, and efficiently
A wide number of Round ways which all...
December 17, 2010 at 6:29 am
CirquedeSQLeil (12/16/2010)
Paul White NZ (12/16/2010)
WayneS (12/16/2010)
Here's just two of the reasons why I've turned it off:
I just typed this successfully in 2008 SSMS with Intellisense on (which it always is):
SELECT...
December 17, 2010 at 6:18 am
WayneS (12/16/2010)
I've been using VMWare for years (and am happy with it), but to install a 64-bit Windows 7 and...
December 17, 2010 at 6:13 am
Jack Corbett (12/16/2010)
GSquared (12/16/2010)
December 16, 2010 at 12:37 pm
CirquedeSQLeil (12/16/2010)
GSquared (12/16/2010)
December 16, 2010 at 11:32 am
Viewing 15 posts - 5,611 through 5,625 (of 14,953 total)