Viewing 15 posts - 136 through 150 (of 153 total)
Hello,
Thank you for the code, the only problem I am having with this is the:
from msdb..DASD
what table is that? where did you get that from, its throwing the error message...
June 14, 2012 at 9:03 am
Hello Everyone,
I figured out the problem, sorry, but for everyone, please make sure you have REPORTSERVER, keyword, add server, example below:
I was putting:
also for param1 and...
June 1, 2012 at 9:37 am
hey Daniel,
thanks for your replies,
yes please, I should do a group by customer id, then use count for the profile id correct? then the count will determine the color, does...
May 29, 2012 at 3:26 pm
thanks again :).... where do i mark as answered to give points or whatever?
May 21, 2012 at 3:30 pm
.... HOLY crap your good.... no seriously, thats exactly what i need thank you :):-D
May 21, 2012 at 3:24 pm
Sorry all for any confusion here is a more acurate example,
Yes you are right those dont match however below the right examples of matching from the tables customer and person:
Insert...
May 21, 2012 at 3:11 pm
ok now for the explanation
using the second row insert of match as an example:
Insert #Match
select '1', '6', 'firstname' union all
first number 1, comes from table Customer, second number 6,...
May 21, 2012 at 2:57 pm
sorry again, offically this works, i tested it twice and will work:
insert Match2
select '1', '1','firstname' union all
select '1', '6', 'firstname' union all
select '4', '2', 'address' union all
select '5', '1',...
May 21, 2012 at 2:48 pm
here go, this works:
insert Match
select '1', '1', 'firstname'
select '1', '6', 'firstname'
select '4', '2', 'address'
select '5', '1', 'firstname'
sorry for the confusion I put a # sign before matching thinking...
May 21, 2012 at 2:31 pm
I see now says the blind man 😀
insert #Match
select '1', '27', 'firstname'
select '8', '6', 'firstname'
select '40', '107', 'address'
select '45', '19', 'firstname'
May 21, 2012 at 2:15 pm
Hello hello SSCarpal Tunnel
thank you for being paitent with me, here is the information that hopefully makes sense and I included everything from all tables to the query i amt...
May 21, 2012 at 2:05 pm
ok then....
like this:
if firstname from customer where customerid = 1 matches firstname from person where personid = ... whatever id
THEN
INSERT INTO match (customerid, personid, columnname)
VALUES (customerid, personid, firstname)
then after...
May 21, 2012 at 1:32 pm
Again thank you, the output I would like is if bob customer id 1 from customer table matches the first name bob from person table with id 27, then insert...
May 21, 2012 at 1:22 pm
Hello Everyone,
Here is the DDL, again sorry which is exactly the same that was posted except there is an id for both customer and person, and its the identifier and...
May 21, 2012 at 1:11 pm
Viewing 15 posts - 136 through 150 (of 153 total)