Viewing 15 posts - 17,566 through 17,580 (of 26,489 total)
N is the column name in my Tally table (dbo.Tally). Do you have a Tally table? If so, what is the name of the column in your Tally...
January 7, 2010 at 5:55 pm
Look up the Multicast transformation in BOL (Books Online).
January 7, 2010 at 3:54 pm
GRE-452109 (1/7/2010)
You have my sympathy. What a ridiculous attitude to take to research! how do they think you get to be an expert?
I'll second that.
I have to agree. Being...
January 7, 2010 at 3:53 pm
Greg Martin-419640 (1/7/2010)
I've looked in the thread and not managed to see an answer to this. I use SQL server.
If I have a Customers table,...
January 7, 2010 at 3:40 pm
Jeffrey Williams-493691 (1/7/2010)
Sorry, but that won't work either - you need the following:SELECT 1 WHERE '111' NOT LIKE '%[0-9]%'
Really? Try this please after removing the space from between...
January 7, 2010 at 3:37 pm
Oksana March (1/7/2010)
Bru Medishetty (1/7/2010)
The_SQL_DBA (1/7/2010)
Bru Medishetty (1/7/2010)
Krasavita (1/7/2010)
How many db can we have per server and how much memory in total can I have?Thank you
You can start creating databases...
January 7, 2010 at 3:31 pm
Assuming you have a Tally table, how about the following code:
declare @ TestData varchar(12);
set @TestData = '03EA12J77';
select
(10 - (sum(
...
January 7, 2010 at 3:19 pm
Or this:
declare @ThisDate datetime;
set @ThisDate = '2010-01-05'
select dateadd(mm, datediff(mm, 0, @ThisDate), 0) -- Beginning of this month
select dateadd(mm, datediff(mm, 0, @ThisDate) +...
January 7, 2010 at 2:38 pm
I think you are missing the point of our questions. In your sample data, there are two duplicate users based solely on first and last name; John Doe and...
January 7, 2010 at 2:25 pm
What is the full error message that is being returned.
January 7, 2010 at 12:50 pm
CirquedeSQLeil (1/7/2010)
Lynn Pettis (1/6/2010)
Tell me what you think:Kim
Stacey
Shannon
Lynn
I have a male friend named Kim and another male acquaintance named Shannon - so I will go with male on those.
Lynn, if...
January 7, 2010 at 12:44 pm
Jennifer Levy (1/7/2010)
cherie j sheriff-437357 (1/7/2010)
It is a great career area for women in general. I see the only problems are logistics.
Excellent point. A lot of the problem...
January 7, 2010 at 12:38 pm
Okay, two questions. Regarding John Doe (ID 1 and ID 2), how do we know ID 2 is correct, because the ID number is higher? Second, in the...
January 7, 2010 at 12:35 pm
sreid08 (1/7/2010)
Here is an interesting article out of the University of WA that talks about why there are less women in the tech field....http://uwnews.org/uweek/article.aspx?visitsource=uwkmail&id=54721
Yes, very interesting article. Here is...
January 7, 2010 at 12:29 pm
Viewing 15 posts - 17,566 through 17,580 (of 26,489 total)