Viewing 15 posts - 4,741 through 4,755 (of 4,814 total)
Come to think of it, I realized this wasn't all that hard if a table variable is ok...
Try this on for size - I have no NORTHWIND available, so I...
July 2, 2008 at 7:07 am
I'm of the opinion that this is the old "TRICK QUESTION". I don't happen to have NORTHWIND available to me, nor have I ever done anything with it,...
July 2, 2008 at 6:52 am
Try looking up CONTAINS in BOL. FREETEXT may not always recognize a shorter version of a name, and I don't think it works with wildcards.
Steve
(aka smunson)
:):):)
July 2, 2008 at 6:40 am
Unless there's some reason to avoid using the LIKE operator, I think a rather minor recoding of the original will work just fine:
Declare @Ccode varchar(20)
set @Ccode='C022,C007,C044,C050,C020'
print @Ccode
select * from ReconciledSites...
July 1, 2008 at 3:13 pm
Try this:
DECLARE @OLD_TABLE TABLE (CLNT_ACCESS varchar(3))
INSERT INTO @OLD_TABLE
SELECT 'Yes' UNION ALL
SELECT 'No' UNION ALL
SELECT 'Yes' UNION ALL
SELECT 'Yes' UNION ALL
SELECT 'No' UNION ALL
SELECT 'Yes' UNION ALL
SELECT 'Yes' UNION ALL
SELECT 'No'...
July 1, 2008 at 7:09 am
This solution is imperfect in that it doesn't identify a zero allocation, but it was fairly quickly developed, and perhaps someone with more skills can make it better:
DECLARE @RECEIPTSTABLE TABLE...
June 30, 2008 at 9:44 am
While openrowset may give you some data access, there may be other limitations that will cause problems. Most ODBC drivers for older database formats such as dBase or...
June 27, 2008 at 7:01 am
Well, Ivanna, that makes a total of three RELATIONAL verses in T-SQL Haiku... How database is that ???? :D:D:D
And as long as we're using a RELATIONAL language,...
June 27, 2008 at 6:39 am
OOPS !!! Wasn't familiar with the specifics on that... here's a fix:
BEGIN TO COMMIT
WHEN RECEIVE CONTAINS DUMP THEN
END CONVERSATION
Turns out I did have 5 on line 1,...
June 26, 2008 at 9:59 am
I think what's desired just needs a slightly different way to go about it. Start by having 4 parameters. One for the year, one for the...
June 26, 2008 at 8:15 am
How about the following?
BEGIN TO COMMIT
WHEN RECEIVE DUMP
THEN END CONVERSATION
Kind of silly, but I got a laugh out of it...
especially when I considered how RELATIONAL it is :w00t::D:P:hehe:
Steve
(aka smunson)
:D:D:D
June 26, 2008 at 8:07 am
I hear you Lynn... I just think we're clashing on a difference of either specific values or perspective. My values say that if I were going to...
June 25, 2008 at 12:59 pm
While I understand your point, why diminish the value of SSC by allowing something like QOTD to go so far off kilter? Perhaps it's time to consider making...
June 25, 2008 at 8:42 am
majorbloodnock (6/25/2008)
smunson (6/25/2008)
A.) No judgement was made, was just posing a question.
OK. That's the way it came across, but I'm happy to apologise if that wasn't your intention and I've...
June 25, 2008 at 7:23 am
A.) No judgement was made, was just posing a question.
B.) You ask for no judgement on what hasn't yet been done, and then go on to try and justify why...
June 25, 2008 at 6:34 am
Viewing 15 posts - 4,741 through 4,755 (of 4,814 total)