Viewing 15 posts - 1 through 15 (of 23 total)
thx for the quick help on this, the UNION query does solve my problem, should have thought of this myself.
March 26, 2019 at 10:18 am
January 13, 2017 at 6:13 am
John Mitchell-245523 - Friday, January 13, 2017 3:08 AMYou just need a splitter function. Take a look at this.John
Hi John thx for...
January 13, 2017 at 4:32 am
the solution proposed by John/Louis does the trick and I'm able to query data for each end point. Thx again for all the help.
October 12, 2016 at 8:35 am
All,
thx again for all the help much appreciated.
September 2, 2015 at 1:20 am
All, thx for the quick solution one thing I forgot to mention how would I also include the column that shows the # machines this patchgroup got deployed?
pgroup ...
September 1, 2015 at 8:53 am
hi,
that is what I wanted, thx very much for quick response, appreciated.
August 21, 2015 at 4:20 am
Hi,
the filter criteria should be following maybe it was not clear in my question
Machine has 1 IP Address ==> return that address even if it's '192.168.%'
Machine has > 1 IP...
August 21, 2015 at 2:34 am
I did find solution to my problem, using the for xml.
Query
SELECT
column1,
(SELECT COLUMN2 + '; ' FROM #test_table B WHERE B.column1 =...
June 10, 2015 at 7:04 am
It's only 1 column, I would like to concatenate the output from the various columns, using "|" as separator.
Main idea is to have everything returned in 1 row.
June 10, 2015 at 6:22 am
Thx for the info, I do have follow-up question
the 2nd query does acutally use function to return rows and that should also be populated with the info from first query
Your...
January 21, 2015 at 11:01 am
I've managed to create 2 queries that retrieve the data I need
--Query 1: Return machines with 1 IPAddress
select MachineId, MAX(IPAddress) as IPAddress from @IPInfo
group by MachineID
having COUNT(MachineID) = 1
--Query...
June 20, 2013 at 9:29 am
Correct I only want to exclude these IP Addresses if machine has > 1 IP Address.
if I have machine with 1 IP Address and it's inside the exclusion range, ...
June 20, 2013 at 6:57 am
Perfect, that did the trick, thx very much for all the help.
June 6, 2013 at 1:24 am
Viewing 15 posts - 1 through 15 (of 23 total)