Viewing 15 posts - 376 through 390 (of 562 total)
Luis Cazares (12/2/2014)
.... over complicated.....
Yes I think it is over complicated, hense the question.
But I did not find a less cumbersome solution.
The specific usage was to add a stored procedure...
December 2, 2014 at 2:57 pm
spaghettidba (10/27/2014)
This should do the trick:
Yes this is what I was after.
Thanks very much for pointing me in the right direction.
I just implemented this within my code and it does...
October 28, 2014 at 9:27 am
First of all thanks for the example. (Kudos).
I adjusted the example see below. (The identity does not get updated)
When an update is done, all fields are updated exept the identity...
October 27, 2014 at 10:16 am
First of all thanks,
Now I see I did muck up a bit, the temp table ##WW should have been ordered, see the code below. Probably lost that part of the...
October 23, 2014 at 9:12 am
Thanks for both answers.
I'll probably will go for Luis solution.
This will solve my problem of generating views for more than one database using a single stored procedure.
Thx
Ben
July 2, 2014 at 1:58 pm
Additional information.
The Showcontig information from both situations is very simular.
dbcc showcontig('B')
/*
-- FROM AN ERROR SITUATION :
DBCC SHOWCONTIG scanning 'B' table...
Table: 'BIL_Performed_Activities' (1157579162); index ID: 1, database ID: 11
TABLE level scan...
June 20, 2014 at 9:15 am
Grant Fritchey (6/16/2014)
If filtering on tableA is what you needed, just do that. The INNER JOIN will take care of the rest.
Thanks for you response, offcourse this was a 'simplyfied'...
June 17, 2014 at 10:03 am
Hello all,
Thanks for your contributions and sorry for not responding.
This weekend I had a fall and have a head injuri. In a few days time everything should be back...
April 28, 2014 at 7:31 am
gbritton1 (4/25/2014)
Assuming A and B have the same schema:
select * from A
except
select * from B
Thank you this is exactly what I was looking for.
Ben
LutzM (4/25/2014)
April 25, 2014 at 6:36 am
mister.magoo (4/21/2014)
April 22, 2014 at 9:50 am
J Livingston SQL (4/19/2014)
maybe food for thought....the random data is a bit simplistic...but relatively large.
not sure if this meets your requirements.
First thanks for your contribution.
In your solution, the Target table...
April 21, 2014 at 3:23 am
J Livingston SQL (4/19/2014)
[p](Code is used for more than 60 or 70 tables in three different databases).[/p]
out of curiosity....whats the reasoning behind this proc?
Code is used for several reasons.
Mostly to...
April 19, 2014 at 8:46 am
mister.magoo (4/19/2014)
April 19, 2014 at 8:21 am
mister.magoo (4/19/2014)
You definitely used an outer apply, and...
April 19, 2014 at 7:04 am
mister.magoo (4/19/2014)
April 19, 2014 at 6:24 am
Viewing 15 posts - 376 through 390 (of 562 total)