Viewing 15 posts - 12,106 through 12,120 (of 15,381 total)
tt-615680 (5/3/2012)
I would like to find more about the Disadvantages of Transactional Replication as it is the best process of Replication for my Business needs; I would like to...
May 3, 2012 at 7:48 am
You have a couple things going on here. First your query is using the old style join. While syntactically correct it is very hard to read these types of joins....
May 3, 2012 at 7:37 am
Taking a guess that is the first version you are looking for.
Something like should get you started.
;with CityData(City, Country) as
(
select 'Madrid', 'USA' union all
select 'Madrid', 'Spain' union all
select 'Madrid', 'Brazil'...
May 2, 2012 at 3:29 pm
soulchyld21 (5/2/2012)
Evil Kraig, yes that is simmilar to what Im looking for!!Unfortunately its not as simple as the wrong data as suggested by the 2nd poster!
Which version of Kraig's is...
May 2, 2012 at 3:24 pm
In your description you said you wanted Country but in your code you used ContactName. Could it be as simple as using the correct column?
May 2, 2012 at 2:56 pm
The "Having" clause allows you to do "Where clause" type stuff on aggregates, like Max(), Min(), Avg(), and so on.
sheesh in looking at my post I could have been a...
May 2, 2012 at 1:38 pm
This looks an EAV type of system with the addition of datatype?
May 2, 2012 at 1:16 pm
Jaat (5/2/2012)
May 2, 2012 at 1:06 pm
DBA_SQL (5/2/2012)
I Tried the following update statement, but it didn't worked.
update scramble
SET FNAME = T1.Fname,
LNAME =T2.Lname
FROM(
SELECTFNAME,
ROW_NUMBER() OVER (ORDER BY NEWID()) AS recID
FROMSCRAMBLE
) AS t1
INNER JOIN(
SELECTLName,
ROW_NUMBER() OVER (ORDER...
May 2, 2012 at 12:39 pm
Duplicate post...ignore this thread and instead view the one with an answer.
http://www.sqlservercentral.com/Forums/Topic1294098-1550-1.aspx
May 2, 2012 at 12:19 pm
LOL. did that get it for you then?
May 2, 2012 at 11:06 am
Lynn Pettis (5/2/2012)
patrickmcginnis59 (5/2/2012)
Sean Lange (5/2/2012)
patrickmcginnis59 (5/2/2012)
Sean Lange (5/2/2012)
May 2, 2012 at 10:54 am
Viewing 15 posts - 12,106 through 12,120 (of 15,381 total)