Viewing 9 posts - 1 through 9 (of 9 total)
I would have to say the first option. Multiple datasets. I'm confused myself :/
June 27, 2012 at 4:23 pm
Sorry I don't know how to provide a table structure. How may I do this?
June 27, 2012 at 4:11 pm
In section 5, it shows 3 sets of codes each for each block which displays in the screen shot. i need a loop so that i don't have to make...
June 27, 2012 at 3:57 pm
basically from the #proxylog_count_2 table. it displays clientusernames in a certain order. each block contains a different username. starting from number 1 in that table. i need it to loop...
June 27, 2012 at 3:48 pm
right here it has 3 blocks. i need it to display 10 of them. from the first data in #proxylog_count_2 then get the 2nd and third, etc.
the code above only...
June 27, 2012 at 3:46 pm
Can you tell me what the "a" and "b" stand for? and what the purpose of cross apply is?
June 27, 2012 at 2:23 pm
Sorry I hope I can clarify better.
#ProxyLog_count_2 is ordered by counts.
there are 2 columns in proxylog_count_2, ClientUserName and counts. but i only want to display ClientUserName
so i use this.
Select...
June 27, 2012 at 10:57 am
Select ClientUserName, DestHost, count(DestHost) counts from #ProxyLog_record
where ClientUserName =(Select top 1 ClientUserName from #ProxyLog_count_2) Group by ClientUserName, DestHost order by counts desc
I have...
June 27, 2012 at 9:31 am
Viewing 9 posts - 1 through 9 (of 9 total)