Viewing 15 posts - 256 through 270 (of 683 total)
cs_troyk (11/21/2007)
jomobono (11/20/2007)
Couldn't disagree more.
tgarth (11/21/2007)
I totally agree with jomobono.
I have to laugh! :hehe:
November 21, 2007 at 10:04 am
Theon Kimball (11/20/2007)
Wouldn't it be great to have a reference table holding a list of owners
And that then leads to the question of borrowing a book from a guy who...
November 20, 2007 at 6:26 pm
Andrew_Webster (11/20/2007)
"book" v "books"... hmmm.Anyone else's take on this...?
As if we don't have enough to discuss in this thread! 😀
I go with Books, BookReviews and BookAuthors.
This is a style issue...
November 20, 2007 at 4:05 pm
Obs (11/20/2007)
November 20, 2007 at 8:35 am
Obs (11/20/2007)
harald_m_mueller, I think your missing the spirit of what Steve is trying to put out. Yes, there could be a better description of what requirements are, but as...
November 20, 2007 at 8:19 am
This (and some of your others) is a great comment, Harald.
You have written exactly what I was thinking and often think in these situations. Very nicely done! 🙂
harald_m_mueller (11/20/2007)
November 20, 2007 at 6:52 am
Just for fun :D, here's the same sort of thing using the recursive CTE technique...
[font="Courier New"]DECLARE @String VARCHAR(255)
DECLARE @Delimiter CHAR(1)
DECLARE @Occurrence INT
DECLARE @Num_Fields INT
SET @String = 'A,B,C,D,E'
SET @Delimiter = ','
SET...
November 1, 2007 at 6:07 am
Nice work Jacob.
Here's a 3rd way, this time using XML PATH...
SELECT
OrderHeader.Name AS 'OrderHeader/Name',
OrderHeader.Address AS 'OrderHeader/Address',
OrderHeader.Code AS 'OrderHeader/Code',
...
October 26, 2007 at 3:41 am
Steve Coleman (9/28/2007)
Sorry but I couldn't see the whole example. The scroll bars on the example did not work.Steve
Steve,
It looks like this...
-- Declare some local variables. Actually, we are creating...
September 28, 2007 at 5:17 am
Ben (9/28/2007)
Exacxtly, though if you throw an 'or @companyName is null' in there the optimiser will ignore any 'parameters' that are not set.
Yes, I know about that (it's in...
September 28, 2007 at 3:41 am
I'm with Adam, check out MVP Erland Sommarskog's article on this: http://www.sommarskog.se/dyn-search.html
However, for the example presented by the article, can someone tell me what's wrong with simply this?...
select
...
September 28, 2007 at 3:28 am
Hi Peso - wrong site for the yak reference isn't it?
I just realised, we can use this little trick...
SELECT
ColA
September 11, 2007 at 6:45 pm
Hmmm - I'm surprised! I reckon you should use Jason's since what I gave won't give you what I think you want for some...
September 10, 2007 at 12:53 pm
Hi Sho,
This works against your sample data, but I've a feeling you're going to post more data where this doesn't give what you're looking for!
/*
Summary
Method1 Method2 Method3 Method4
----------- ----------- ----------- -----------
2539 1976 1057 2476
August 24, 2007 at 9:23 am
Viewing 15 posts - 256 through 270 (of 683 total)