Viewing 14 posts - 1 through 14 (of 14 total)
Hi Chris,
If I write the query as
SELECT GroupName, ElementName, 0 AS UserCount
FROM (
SELECT g.GroupName, e.ElementName, USERID
FROM tbl_MVTResult r
LEFT JOIN tbl_MVTElement...
December 28, 2008 at 1:01 am
The query I am using now is
SELECT GroupName, ElementName, COUNT(*) AS UserCount
FROM (
SELECT g.GroupName, e.ElementName, USERID
FROM tbl_MVTResult r
LEFT JOIN tbl_MVTElement...
December 25, 2008 at 12:54 am
Hi Chris,
I needed some help. The query you had given worked good, but 1 small problem I am having. From your query we can see that By groupName which...
December 23, 2008 at 2:15 pm
In my report I am also showing the percentage of each element clicked. Before I was running one SQL to find out how many visits were there for per group....
December 10, 2008 at 5:56 am
Hi Gail,
Sorry to bother you. Wondering if you could find some solution. Thanks for your help.
Debjani
December 9, 2008 at 9:11 pm
Chris,
Your SQL statement really looks very good. It has definitely improved some performance. I am still testing. Will inform you. Thanks again.
December 8, 2008 at 3:08 pm
Hi Gail,
Here is the execution plan and the SQL scripts attached in the forum. Thanks for all your help
December 8, 2008 at 3:05 pm
Thanks for being so patient. I will script out everything and post it to you.
Thanks,
December 7, 2008 at 3:42 pm
Gail,
I might sound stupid, but I could not figure out how can I attach my database diagram which is a .pdf file along with this post.
And I can run the...
December 7, 2008 at 2:45 am
Gail,
I might sound stupid, but I could not figure out how can I attach my database diagram which is a .pdf file along with this post.
And I can run the...
December 7, 2008 at 2:44 am
Thank you very much for rearranging the SQL Statement.
The main idea is the database stores , how many users are getting which variation GRoupA, GroupB, GroupC, GroupD. And each group...
December 7, 2008 at 2:38 am
My Question is when Google Access the pge hits records through google Analytics. it does not take more than 5 secs. But mine is taking so longer . So there...
December 5, 2008 at 5:10 pm
All the columns in my JOIN are indexed and also the ones in the where clause. The problem is 10 sql statements are running together. They are all helping to...
December 5, 2008 at 4:54 pm
Ok sure , I will post the execution plan soon. Thanks.
December 4, 2008 at 1:20 pm
Viewing 14 posts - 1 through 14 (of 14 total)