Viewing 15 posts - 7,201 through 7,215 (of 26,490 total)
Hope this helps get you started. Not enough in your original post to really provide you with all the code you need.
with Tally12 as (select n from (values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12))dt(n)),
RunningCalendar...
October 15, 2013 at 2:49 am
George M Parker (10/11/2013)
http://www.sqlskills.com/blogs/jonathan/finding-what-queries-in-the-plan-cache-use-a-specific-index/
To know whether your value is good or bad, you have to know what "normal" is. That...
October 13, 2013 at 7:07 am
Been over a week, I guess you don't need any help.
October 13, 2013 at 2:20 am
update yourtable set
gender = case when gender = 'male' then 'female' when gender = 'female' then 'male' end
October 13, 2013 at 1:25 am
Ed Wagner (10/9/2013)
Lynn Pettis (10/8/2013)
Stefan Krzywicki (10/8/2013)
They want to keep me on a retainer...
October 9, 2013 at 2:36 pm
Stefan Krzywicki (10/8/2013)
They want to keep me on a retainer for 5 hours a...
October 8, 2013 at 11:11 pm
The comparison is not one character by character. Take out a dictionary, find the word axe (starts with ax). Every word after axe is "greater than" and every...
October 8, 2013 at 1:06 pm
Jeff Moden (10/6/2013)
Greg Edwards-268690 (10/6/2013)
Jeff Moden (10/5/2013)
Speaking of "unbelievable", is [font="Arial Black"]THIS[/font] all that a Master's degree + the ability to walk on water is worth nowadays?
But they have phone...
October 6, 2013 at 11:34 am
GilaMonster (10/5/2013)
Lynn, re the count(*), there's about 5 different threads over the last couple months on that problem and much ignored advice.
Well, I will see what I may be able...
October 5, 2013 at 12:46 pm
If you would really like some help with this, how about posting the DDL for the tables, some sample data for each of the tables, sample inputs for the procedure,...
October 5, 2013 at 10:18 am
Tava (10/3/2013)
I need some help! firstly to tweak my results to work as I expect it to & secondly provide an alternate method if my logic is not best...
October 4, 2013 at 2:00 am
shad.saleem41 (10/4/2013)
I created a table
CREATE TABLE IdentityProducts(
productid int IDENTITY(1,1) NOT NULL,
productname nvarchar(40) NOT NULL,
categoryid int NOT NULL,
unitprice money NOT NULL)
I want to insert values into it with...
October 4, 2013 at 12:44 am
Thank you all for your responses. You have confirmed what I believed to be correct and have passed this on to my supervisor who is satisfied with what I...
October 4, 2013 at 12:32 am
Greg Edwards-268690 (10/3/2013)
Since they were pre-keyed, I never paid attention to the keys.
I would expect since SharePoint had 1 media, and the key...
October 3, 2013 at 6:01 am
Viewing 15 posts - 7,201 through 7,215 (of 26,490 total)