Viewing 15 posts - 766 through 780 (of 1,082 total)
oh and here is the code
DECLARE @sql VARCHAR(8000),
@ThreeMonthsAgo VARCHAR(10),
@FourMonthsAgo VARCHAR(10),
@FiveMonthsAgo VARCHAR(10),
@FirstDay_FiveMonthsAgo DATETIME,
...
August 5, 2008 at 9:16 am
Hi
You need to cast/convert your getdate values to VARCHAR's before trying to concatenate them to your main sql string.
Thats why you get the error.
Take note the you will need to...
August 5, 2008 at 9:11 am
Ok I got a solution for you!
Please not the proc requires a Tally table if you don't have one the code for it is commented out in the beginning of...
August 4, 2008 at 8:19 am
Ok I got a solution for you!
Please not the proc requires a Tally table if you don't have one the code for it is commented out in the beginning of...
August 4, 2008 at 8:18 am
What is the max number of search criteria?
August 4, 2008 at 8:00 am
In your above example, is description a word to be searched or does it mean search for anudeep in the description column?
THanks
August 4, 2008 at 8:00 am
IS this the same question as this:
http://www.sqlservercentral.com/Forums/Topic546066-338-1.aspx?Update=1
August 4, 2008 at 7:54 am
here is an example of how it will work.
DECLARE @vcSearch1 VARCHAR(100)
DECLARE @vcSearch2 VARCHAR(100)
DECLARE @vcSearch3 VARCHAR(100)
DECLARE @tbl TABLE
([Name] VARCHAR(1000))
INSERT INTO @tbl
SELECT 'Christopher Stobbs' UNION ALL
SELECT 'pkuchaliya' UNION ALL
SELECT 'Jack Smith'
--GET ALL...
August 4, 2008 at 7:50 am
SELECT *
FROM Employee
WHERE [Name] LIKE '%' + @vcSearch1 + '%'
OR [Name] LIKE '%' + @vcSearch2 + '%'
OR [Name] LIKE '%' + @vcSearch3 + '%'
etc
August 4, 2008 at 7:37 am
Hi all,
The one I have come across before, is for a candidate to explain how they would design a system or what they would look out for when designing a...
August 1, 2008 at 10:06 am
Are you sure you can only weigh them once?
I can do it with two weigh in's but not 1 🙁
August 1, 2008 at 8:13 am
Jeff,
How would you best two queries to see which is performing better?
thanks
Chris
August 1, 2008 at 8:03 am
I agree, I can't get any errors ,so I'm curious about the data more than anything else
August 1, 2008 at 6:07 am
LeeLuv
Please could you let me know the error you get with the Case statement solution above????
AS mentioned by the other helpers the subquery will prob not give you the...
August 1, 2008 at 5:52 am
Viewing 15 posts - 766 through 780 (of 1,082 total)