Viewing 15 posts - 16 through 30 (of 94 total)
Very disappointing. This is a fairly basic question. A little proofreading could have prevented this from becoming a bad question.
September 30, 2010 at 7:12 am
Kanaka (7/19/2010)
I knew this would give a syntax error, however, I tried this and...
July 19, 2010 at 9:22 am
Thanks for all of the feedback. I definitely should have considered case-sensitivity, especially since we have several case-sensitive database here. In hind sight, I should have made everything...
July 19, 2010 at 7:23 am
This is straight from the link supplied in the answer.
SQL Server 2008 introduces several extensions to the GROUP BY clause that enable you to define multiple groupings in the same...
October 1, 2009 at 7:50 am
I'm a big fan of using surrogate keys when designing databases, but they are not intended to enforce data integrity. They should be used to simplify joins and used...
September 8, 2009 at 7:20 am
You can't use a variable to pass in that DATEADD parameter. The only way I know of to do what you're attempting is to use dynamic SQL like this:
DECLARE...
February 27, 2009 at 1:01 pm
They're not being used, so they shouldn't affect it at all.
Greg
February 27, 2009 at 12:03 pm
Year would be another column and the query is looking for 2008.
Greg
February 27, 2009 at 11:41 am
It looks like DTYPE is the column name. IN refers to the values inside the parenthesis. Basically it could be rewritten as DTYPE = 'DEPR' OR DTYPE =...
February 27, 2009 at 11:25 am
Although I never figured out why the same stored procedure was behaving differently in the two different environments, I did resolve this issue. I decided to take a completely...
February 27, 2009 at 11:21 am
You can attach the .mdf file without the .ldf file. When you go to attach it, the interface may say log file not found in the lower pane. ...
February 26, 2009 at 6:16 am
GSquared (2/25/2009)
matt stockham (2/25/2009)
Steve Jones - Editor (2/23/2009)
Produce new SKUs? Why not "unlock" features? You have the technology in the XBOX group to unlock things according to some event.
You mean...
February 25, 2009 at 11:29 am
If I understand correctly, you want one total result set instead all of the individual ones. If your iteration is happening in the stored procedure, you can insert them...
February 25, 2009 at 8:16 am
One of the main reasons to use a join is to get data from more than one table. The above query should work assuming that the columns specified are...
February 25, 2009 at 7:56 am
Viewing 15 posts - 16 through 30 (of 94 total)