Viewing 15 posts - 466 through 480 (of 717 total)
As far as I can tell no, but I couldn't find any official documentation. I could find that SQL Server 2005 SP3 is the oldest version supported on Windows Server...
September 28, 2010 at 12:08 am
I figured that you probably want when the value on the next day is less than or equal to 50%, and to account for small differences rounded. If that is...
September 27, 2010 at 11:45 pm
Using ROW_NUMBER:
WITH CTE AS (SELECT
Symbol,
...
September 27, 2010 at 11:06 pm
Depends on what you are trying to do. DISTINCT is just an automatic GROUP BY on every column in the SELECT clause, so if that is what you want DISTINCT...
September 27, 2010 at 10:53 pm
I'm taking a guess here, but I suspect you are using the wrong columns in the ON clause to join the two tables. What columns link the two tables?
September 27, 2010 at 10:51 pm
Can you at least share the query you were running that gave you the error?
You might want to review the article that I linked to in my previous post. With...
September 27, 2010 at 10:45 pm
Your welcome, thanks for letting me know that it helped.
September 27, 2010 at 10:29 pm
What edition of SQL Server are you using?
If you aren't using Developer, Enterprise, or a higher edition I believe that you have to add the WITH (NOEXPAND) hint to...
September 27, 2010 at 10:18 pm
Question deleted, as I had mis-read the post.
September 27, 2010 at 10:14 pm
Sure, it is possible you just have to JOIN the two tables in the FROM clause.
Not having the table structures makes it so I can't actually write it for you....
September 27, 2010 at 10:11 pm
That sounds like it should work as long as nobody else INSERTs rows while your package is running.
September 27, 2010 at 9:58 pm
Actually that isn't a bad description of your problem, though it sounds a little bit like homework. Here is an article that can help you submit better questions that would...
September 27, 2010 at 9:47 pm
touchmeknot (9/27/2010)
Hello,I want to run a select command, on the basis of LIKE clause.
In WHERE condition, I want to include:
WHERE column1 LIKE '%Column2%'. i.e. I want to include the column_name.
I'm...
September 27, 2010 at 6:49 pm
Jeff Moden (9/27/2010)
For better, quicker answers on T-SQL questions, click on the following...
Jeff,
You may want to edit your signature, your link to how to ask about T-SQL appears to...
September 27, 2010 at 6:48 pm
I would look at the execution plans from both queries and compare them. 2008 may be creating a more efficient plan.
September 27, 2010 at 5:39 pm
Viewing 15 posts - 466 through 480 (of 717 total)