Using SQL Reporting is an interestingapproach, thanks for putting the idea out.
It looks like your example uses custom functionsyou created in SQL server (NW_LL_getreviewdate, NW_LL_getownerid, …). Or, am Imissing something? Also, what version of SQL server are you using?
Thanks
Bob
From: eLinkDiscussion: Open Text Live Reports Discussion[mailto:livereportsdiscussion@elinkkc.opentext.com] Sent: Wednesday, August 12, 20095:11 AMTo: eLink RecipientSubject: Re calculating size offolders
Re calculating size of folders
Posted by craigstanley (Stanley, Craig) on 2009/08/12 05:10
In reply to: calculating size of folders
Posted by dolene01user3 (user3, dolene01) on 2009/08/12 04:39
Message from <craig.stanley@nwl.co.uk> via eLink We have moved away from using Live reports and have started using Microsoft SQL Reporting Services which is a free download from Microsoft (SQL EXpress Toolkit). We have encountered performance issues running LiveREports. The SQL reporting services route is a better as you can include totals and calculations and schedule these reports to run out of hours. We did have a similar requirement that we have got around using this option select d.*, NW_LL_getdocownername(d.dataid) owner, NW_LL_getreviewdate(d.dataid) reviewdate, NW_LL_getdocownerid(d.dataid) ownerid, NW_LL_GETOWNERRIGHTS(d.dataid) maxrights, NW_LL_GETFOLDERNAME(d.parentid) folder from dtree d where (d.subtype = 144 or d.subtype = 136) and d.parentid in ( SELECT dataid FROM DTREE where subtype = 0 or subtype = 136CONNECT BY parentid = PRIOR dataid START WITH dataid = ********)order by NW_LL_getdocownername(d.dataid) Let me know if you need any help with this. Craig Stanley Information Services Northumbrian Water craig.stanley@nwl.co.uk |---------+--------------------------------------------> | | "eLink Discussion: Open Text Live| | | Reports Discussion" | | | <livereportsdiscussion@elinkkc.op| | | entext.com> | | | | | | 12/08/2009 09:44 | | | Please respond to "eLink | | | Discussion: Open Text Live | | | Reports Discussion" | | | | |---------+--------------------------------------------> >------------------------------------------------------------------------------------------------------------------------------| | | | To: "eLink Recipient" <devnull@elinkkc.opentext.com> | | cc: | | Subject: calculating size of folders | >------------------------------------------------------------------------------------------------------------------------------| calculating size of Posted by dolene01user3 (user3, dolene01) on folders 2009/08/12 04:39 I am looking for a livereport as described below: 'Level 1' folder having 3 folders L1.1 L1.2 L1.3 so when I run report and select folder 'Level 1' I should get result as e.g. L1.1 200kb L1.2 300kb L1.3 400kb Note: the above folders can have any number of sub levels having documents and it should give me size whatever documents are under those levels. [To reply to this thread, use your normal E-mail reply function.] Discussion: Open Text Live Reports Discussion Livelink knowledge-wlweb01 Server: To Unsubscribe from this Discussion, send an e-mail to unsubscribe.livereportsdiscussion@elinkkc.opentext.com. E-MAIL INFORMATION This e-mail was received by the Northumbrian Water servers on Wed, 12 Aug 2009 08:44:58 UT. At this point it was checked for all known viruses and threats. You are reminded that there is no guarantee that the information contained within this e-mail is genuine. It is not possible to verify the original sender of this e-mail, or to ensure that the information contained within has not since been altered. You are reminded that urgent or sensitive information should not be sent via e-mail, as this is not a secure method of delivery. ********************************************************************** Northumbrian Water and Essex & Suffolk Water - building our future together. Be generous with the water you drink, it's good for your health. But take care of the water you use, it's a precious resource. Don't waste it. Northumbrian Water Limited - Winners of the Queen’s Award for Enterprise: Sustainable Development 2009 and Utility Company of the Year 2008. Ranked Platinum Plus in the Business in the Community Corporate Responsibility Index Top 100 Companies that Count and Big Tick Winners 2009 for Healthy Workplaces and Power in Partnership. This email and its attachments are intended for the addressee only and may be confidential or privileged. If this email has come to you in error, you should take no action based on it. Please return it to the sender immediately and then delete it. Unless expressly stated, opinions in this message are those of the individual sender and not of Northumbrian Water Limited. You should be aware that this email, and any reply to it, may need to be made public under right to know legislation, or in connection with litigation. Emails may also be monitored in accordance with our legal responsibilities. While Northumbrian Water Limited has scanned this email and its attachments for security threats, including computer viruses, we have no liability for any damage which you may sustain as a result of any such viruses. You are advised to carry out your own virus checks before opening any attachment. Northumbrian Water Limited, registered in England and Wales number 2366703. Registered office: Northumbria House, Abbey Road, Pity Me, Durham DH1 5FJ. www.nwl.co.uk
Rgds,
Adarsh
-----Original Message-----From: eLink Discussion: Open Text Live Reports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Wednesday, August 12, 2009 7:21 PMTo: eLink RecipientSubject: RE Re calculating size of folders RE Re calculating size of folders Posted by bguilford (Guilford, Bob) on 2009/08/12 09:48 In reply to: Re calculating size of folders Posted by craigstanley (Stanley, Craig) on 2009/08/12 05:10 Message from Guilford, Bob <BGuilford@hovensa.com> via eLinkUsing SQL Reporting is an interesting approach, thanks for putting the idea out. It looks like your example uses custom functions you created in SQL server (NW_LL_getreviewdate, NW_LL_getownerid, …). Or, am I missing something? Also, what version of SQL server are you using? Thanks Bob From: eLink Discussion: Open Text Live Reports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com] Sent: Wednesday, August 12, 2009 5:11 AMTo: eLink RecipientSubject: Re calculating size of folders Re calculating size of folders Posted by craigstanley (Stanley, Craig) on 2009/08/12 05:10 In reply to: calculating size of folders Posted by dolene01user3 (user3, dolene01) on 2009/08/12 04:39 Message from <craig.stanley@nwl.co.uk> via eLinkWe have moved away from using Live reports and have started using Microsoft SQL Reporting Services which is a free download from Microsoft (SQL EXpress Toolkit). We have encountered performance issues running LiveREports. The SQL reporting services route is a better as you can include totals and calculations and schedule these reports to run out of hours. We did have a similar requirement that we have got around using this option select d.*, NW_LL_getdocownername(d.dataid) owner, NW_LL_getreviewdate(d.dataid) reviewdate, NW_LL_getdocownerid(d.dataid) ownerid, NW_LL_GETOWNERRIGHTS(d.dataid) maxrights, NW_LL_GETFOLDERNAME(d.parentid) folder from dtree d where (d.subtype = 144 or d.subtype = 136) and d.parentid in ( SELECT dataid FROM DTREE where subtype = 0 or subtype = 136CONNECT BY parentid = PRIOR dataid START WITH dataid = ********)order by NW_LL_getdocownername(d.dataid) Let me know if you need any help with this. Craig Stanley Information Services Northumbrian Water craig.stanley@nwl.co.uk |---------+--------------------------------------------> | | "eLink Discussion: Open Text Live| | | Reports Discussion" | | | <livereportsdiscussion@elinkkc.op| | | entext.com> | | | | | | 12/08/2009 09:44 | | | Please respond to "eLink | | | Discussion: Open Text Live | | | Reports Discussion" | | | | |---------+--------------------------------------------> >------------------------------------------------------------------------------------------------------------------------------| | | | To: "eLink Recipient" <devnull@elinkkc.opentext.com> | | cc: | | Subject: calculating size of folders | >------------------------------------------------------------------------------------------------------------------------------| calculating size of Posted by dolene01user3 (user3, dolene01) on folders 2009/08/12 04:39 I am looking for a livereport as described below: 'Level 1' folder having 3 folders L1.1 L1.2 L1.3 so when I run report and select folder 'Level 1' I should get result as e.g. L1.1 200kb L1.2 300kb L1.3 400kb Note: the above folders can have any number of sub levels having documents and it should give me size whatever documents are under those levels. [To reply to this thread, use your normal E-mail reply function.] Discussion: Open Text Live Reports Discussion Livelink knowledge-wlweb01 Server: To Unsubscribe from this Discussion, send an e-mail to unsubscribe.livereportsdiscussion@elinkkc.opentext.com. E-MAIL INFORMATION This e-mail was received by the Northumbrian Water servers on Wed, 12 Aug 2009 08:44:58 UT. At this point it was checked for all known viruses and threats. You are reminded that there is no guarantee that the information contained within this e-mail is genuine. It is not possible to verify the original sender of this e-mail, or to ensure that the information contained within has not since been altered. You are reminded that urgent or sensitive information should not be sent via e-mail, as this is not a secure method of delivery. ********************************************************************** Northumbrian Water and Essex & Suffolk Water - building our future together. Be generous with the water you drink, it's good for your health. But take care of the water you use, it's a precious resource. Don't waste it. Northumbrian Water Limited - Winners of the Queen’s Award for Enterprise: Sustainable Development 2009 and Utility Company of the Year 2008. Ranked Platinum Plus in the Business in the Community Corporate Responsibility Index Top 100 Companies that Count and Big Tick Winners 2009 for Healthy Workplaces and Power in Partnership. This email and its attachments are intended for the addressee only and may be confidential or privileged. If this email has come to you in error, you should take no action based on it. Please return it to the sender immediately and then delete it. Unless expressly stated, opinions in this message are those of the individual sender and not of Northumbrian Water Limited. You should be aware that this email, and any reply to it, may need to be made public under right to know legislation, or in connection with litigation. Emails may also be monitored in accordance with our legal responsibilities. While Northumbrian Water Limited has scanned this email and its attachments for security threats, including computer viruses, we have no liability for any damage which you may sustain as a result of any such viruses. You are advised to carry out your own virus checks before opening any attachment. Northumbrian Water Limited, registered in England and Wales number 2366703. Registered office: Northumbria House, Abbey Road, Pity Me, Durham DH1 5FJ. www.nwl.co.uk
Message from <craig.stanley@nwl.co.uk> via eLinkWe have moved away from using Live reports and have started using Microsoft SQL Reporting Services which is a free download from Microsoft (SQL EXpress Toolkit). We have encountered performance issues running LiveREports. The SQL reporting services route is a better as you can include totals and calculations and schedule these reports to run out of hours. We did have a similar requirement that we have got around using this option select d.*, NW_LL_getdocownername(d.dataid) owner, NW_LL_getreviewdate(d.dataid) reviewdate, NW_LL_getdocownerid(d.dataid) ownerid, NW_LL_GETOWNERRIGHTS(d.dataid) maxrights, NW_LL_GETFOLDERNAME(d.parentid) folder from dtree d where (d.subtype = 144 or d.subtype = 136) and d.parentid in ( SELECT dataid FROM DTREE where subtype = 0 or subtype = 136CONNECT BY parentid = PRIOR dataid START WITH dataid = ********)order by NW_LL_getdocownername(d.dataid) Let me know if you need any help with this. Craig Stanley Information Services Northumbrian Water craig.stanley@nwl.co.uk |---------+--------------------------------------------> | | "eLink Discussion: Open Text Live| | | Reports Discussion" | | | <livereportsdiscussion@elinkkc.op| | | entext.com> | | | | | | 12/08/2009 09:44 | | | Please respond to "eLink | | | Discussion: Open Text Live | | | Reports Discussion" | | | | |---------+--------------------------------------------> >------------------------------------------------------------------------------------------------------------------------------| | | | To: "eLink Recipient" <devnull@elinkkc.opentext.com> | | cc: | | Subject: calculating size of folders | >------------------------------------------------------------------------------------------------------------------------------| calculating size of Posted by dolene01user3 (user3, dolene01) on folders 2009/08/12 04:39 I am looking for a livereport as described below: 'Level 1' folder having 3 folders L1.1 L1.2 L1.3 so when I run report and select folder 'Level 1' I should get result as e.g. L1.1 200kb L1.2 300kb L1.3 400kb Note: the above folders can have any number of sub levels having documents and it should give me size whatever documents are under those levels. [To reply to this thread, use your normal E-mail reply function.] Discussion: Open Text Live Reports Discussion Livelink knowledge-wlweb01 Server: To Unsubscribe from this Discussion, send an e-mail to unsubscribe.livereportsdiscussion@elinkkc.opentext.com. E-MAIL INFORMATION This e-mail was received by the Northumbrian Water servers on Wed, 12 Aug 2009 08:44:58 UT. At this point it was checked for all known viruses and threats. You are reminded that there is no guarantee that the information contained within this e-mail is genuine. It is not possible to verify the original sender of this e-mail, or to ensure that the information contained within has not since been altered. You are reminded that urgent or sensitive information should not be sent via e-mail, as this is not a secure method of delivery. ********************************************************************** Northumbrian Water and Essex & Suffolk Water - building our future together. Be generous with the water you drink, it's good for your health. But take care of the water you use, it's a precious resource. Don't waste it. Northumbrian Water Limited - Winners of the Queen’s Award for Enterprise: Sustainable Development 2009 and Utility Company of the Year 2008. Ranked Platinum Plus in the Business in the Community Corporate Responsibility Index Top 100 Companies that Count and Big Tick Winners 2009 for Healthy Workplaces and Power in Partnership. This email and its attachments are intended for the addressee only and may be confidential or privileged. If this email has come to you in error, you should take no action based on it. Please return it to the sender immediately and then delete it. Unless expressly stated, opinions in this message are those of the individual sender and not of Northumbrian Water Limited. You should be aware that this email, and any reply to it, may need to be made public under right to know legislation, or in connection with litigation. Emails may also be monitored in accordance with our legal responsibilities. While Northumbrian Water Limited has scanned this email and its attachments for security threats, including computer viruses, we have no liability for any damage which you may sustain as a result of any such viruses. You are advised to carry out your own virus checks before opening any attachment. Northumbrian Water Limited, registered in England and Wales number 2366703. Registered office: Northumbria House, Abbey Road, Pity Me, Durham DH1 5FJ. www.nwl.co.uk