From sqr-users-bounces@sqrug.org Sun Oct 07 07:50:10 2007 Date: Thu, 4 Oct 2007 03:57:13 -0400 From: "Kumar, Rahul" Subject: [sqr-users] Flags setting for #include files Hi,=0D =0D =0D =0D I am working on one case where I need to include one=0D particular(customized) sqc from a custom folder (a folder other than=0D where all the sqc are placed).The issue is : the normal folder where all=0D the sqcs are placed is also having this sqc with the same name but is=0D not customized.=0D =0D I need to do this task without making any changes to the SQR which uses=0D this sqc. I need to know if there Is any SQR Flag which will force it to=0D take this sqc from the custom folder. Please note that the sqc also=0D exist in the normal folder from where sqr will use all the other sqcs,=0D but I need to use only that sqc which is placed in the custom folder.=0D =0D Any help or suggestion will be appreciated.=0D =0D =0D =0D Thanks in Advance=0D =0D =0D =0D Regards,=0D =0D Rahul=0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D =0D -----------------------------------------=0D This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, notify the sender immediately by return email and delete the message and any attachments from your system. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Oct 07 07:56:33 2007 Date: Thu, 4 Oct 2007 18:01:47 -0400 From: maddy Subject: [sqr-users] Challenging issue with Brio SQR in UNIX Hi, We have a strange problem with all the Brio SQR Programs executing under UNIX environment.All these programs are working fine and giving data when executed in windows environment and giving no data in UNIX enviroment. We are creating a temp table and inserting data in the SQR program but unable to Select the data from the same table and print it on to the report.However when the ORDER BY clause in the select statement is commented out, data is pulled on to the report. If I run the same program again without droping and creating the table we get the data from the table even with ORDER BY clause which is strange. How can a ORDER BY clause in the SELECT statement cause this kind of issue ? I can send the skeleton program if any of the experts can look into this issue. Environment: Hyperion 8.5 installed on UNIX (AIX) Thanks, Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Oct 07 10:36:17 2007 From: the dragon Subject: RE: [sqr-users] Loading fixed length flat file into Sybase table Date: Sun, 7 Oct 2007 07:23:05 -0500 That's the only choice you have. One insert =3D one tag to the database, a= nd each record needs to be inserted. =20 I beleieve that's the way it is with any RDBMS and any application. =20 What is it you're looking for? =20 peace, clark 'the dragon' willis PSA: Salary <> Slavery. If you earn a salary, your employer is renting your= services for 40 hours a week, not purchasing your soul. Your time is the o= nly real finite asset that you have, and once used it can never be recovere= d, so don't waste it by giving it away. I work to live; I don't live to wor= k. "Time is the coin of your life. It is the only coin you have, and only y= ou can determine how it will be spent. Be careful lest you let other people= spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defe= at an ignorant man in argument. -- William G. McAdoo Religion is regarded b= y the common people as true, by the wise as false, and by the rulers as use= ful. -- Seneca "I distrust those people who know so well what God wants the= m to do because I notice it always coincides with their own desires." - Sus= an B. Anthony> Date: Thu, 27 Sep 2007 14:57:38 -0400> From: madhudvm@gmail.= com> To: sqr-users@sqrug.org> Subject: [sqr-users] Loading fixed length fla= t file into Sybase table> > Hi,> > What is the better way to load the data = from fixed length flat file into a> sybase database table using SQR. Number= of rows in the file vary from 10,000> to 50,000> > I'm doing something lik= e the code below, but my concern is for each insert> statement it goes to t= he database and could be performance issue.> ******************************= ***************************************************************************= *****************> open 'aaaa.txt' AS 100 for-reading record=3D600:fixed st= atus=3D#z> > while 1> > read 10 into $name:40 $Id:30 $location:50> > if #en= d-file> > break> > end-if> > begin-sql> > insert into cust (name, Id, locat= ion)> > values ($name, $ID, $location)> > end-sql> > add 1 to #inserts> > i= f #inserts >=3D 100> > begin-sql> > commit transaction> > begin transaction= > > end-sql> > move 0 to #inserts> > end-if> end-while> *******************= ***************************************************************************= **************> Thanks!!> Maddy>=20 _________________________________________________________________ Help yourself to FREE treats served up daily at the Messenger Caf=E9. Stop = by today. http://www.cafemessenger.com/info/info_sweetstuff2.html?ocid=3DTXT_TAGLM_Oc= tWLtagline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Oct 07 11:42:18 2007 From: the dragon Subject: RE: [sqr-users] Challenging issue with Brio SQR in UNIX Date: Sun, 7 Oct 2007 08:56:07 -0500 I guess my primary question is *why* would you ever be creating a temp tabl= e and putting crap into it to start with? That is so inefficient and one o= f the primary reason that the abortion called App Engine sucks so badly. J= ust select your data and process it. If this is a program that gets run re= gularly, and you absolutely need a temp table, just build a real table in a= pp designer/your database and truncate it before running the program. OK, now on to your question... Your program should be working OK, If it w= orks in Windoze, it will work on Unix. There may be some system variable c= ausing the issue, like a memory constraint, but I don't see that as an issu= e. Run your program in debug mode and with the -s flag in Unix and see wha= t you get. If the sqr creates the table, and populates it, then the data i= s there for selection and use. Are you getting any errors? Like snapshot too old, or unable to extend tem= p segment??? Also, what database are you using? Informix? Perhaps it's no= t committing the data to the table before the select and it uses a differen= t thread to do the select than the one used for the insert (real databases = don't have this problem).=20 Sure send us the program, and give us information about the environment/pla= tform. peace, clark 'the dragon' willis PSA: Salary <> Slavery. If you earn a salary, your employer is renting your= services for 40 hours a week, not purchasing your soul. Your time is the o= nly real finite asset that you have, and once used it can never be recovere= d, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you = can determine how it will be spent. Be careful lest you let other people sp= end it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, an= d by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because= I notice it always coincides with their own desires." - Susan B. Anthony > Date: Thu, 4 Oct 2007 18:01:47 -0400 > From: madhudvm@gmail.com > To: sqr-users@sqrug.org > Subject: [sqr-users] Challenging issue with Brio SQR in UNIX > > Hi, > > We have a strange problem with all the Brio SQR Programs executing under > UNIX environment.All these programs are working fine and giving data when > executed in windows environment and giving no data in UNIX enviroment. > > We are creating a temp table and inserting data in the SQR program but > unable to Select the data from the same table and print it on to the > report.However when the ORDER BY clause in the select statement is commen= ted > out, data is pulled on to the report. > > If I run the same program again without droping and creating the table we > get the data from the table even with ORDER BY clause which is strange. > How can a ORDER BY clause in the SELECT statement cause this kind of issue > ? I can send the skeleton program if any of the experts can look into this > issue. > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > Thanks, > Maddy > _________________________________________________________________ Climb to the top of the charts!=A0 Play Star Shuffle:=A0 the word scramble = challenge with star power. http://club.live.com/star_shuffle.aspx?icid=3Dstarshuffle_wlmailtextlink_oct _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Oct 07 11:46:42 2007 From: the dragon Subject: RE: [sqr-users] Flags setting for #include files Date: Sun, 7 Oct 2007 08:59:16 -0500 We need more information - are you using this with Peoplesoft, or stand alo= ne? How are you executing the program? If with PeopleSoft, what version o= f tools? You can generally set up the include path using the -i flag. peace, clark 'the dragon' willis PSA: Salary <> Slavery. If you earn a salary, your employer is renting your= services for 40 hours a week, not purchasing your soul. Your time is the o= nly real finite asset that you have, and once used it can never be recovere= d, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you = can determine how it will be spent. Be careful lest you let other people sp= end it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, an= d by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because= I notice it always coincides with their own desires." - Susan B. Anthony > Date: Thu, 4 Oct 2007 03:57:13 -0400 > From: Rahul_Kumar@adp.com > To: sqr-users@sqrug.org > Subject: [sqr-users] Flags setting for #include files > > Hi, > > I am working on one case where I need to include one > particular(customized) sqc from a custom folder (a folder other than > where all the sqc are placed).The issue is : the normal folder where all > the sqcs are placed is also having this sqc with the same name but is > not customized. > > I need to do this task without making any changes to the SQR which uses > this sqc. I need to know if there Is any SQR Flag which will force it to > take this sqc from the custom folder. Please note that the sqc also > exist in the normal folder from where sqr will use all the other sqcs, > but I need to use only that sqc which is placed in the custom folder. > > > > Any help or suggestion will be appreciated. > > Thanks in Advance > > Regards, > Rahul > > _________________________________________________________________ Boo!=A0Scare away worms, viruses and so much more! Try Windows Live OneCare! http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=3Dwl_hotma= ilnews _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Oct 07 11:52:31 2007 Date: Sun, 7 Oct 2007 11:44:52 -0400 From: "Barilleaux, Rebecca" Subject: [sqr-users] RE: sqr-users Digest, Vol 44, Issue 1 I've used bcp to import text files into Sybase tables quickly. Here's an e= xample (you need to fill in the userid, password & server): let $comand =3D 'bcp cust in aaaa.txt -c -X -U userid -P password -S server' display $command call system using $comand #statuscode if #statuscode <> 0 display 'bcp failed' stop else display 'bcp successful' end-if I initially put it in a temp table, then I can run whatever edits I need be= fore inserting all the rows from the temp table into the real table. But i= f you know that all your data in the temp table is ok, then you may be able= to bcp directly into your real table. -----Original Message----- Date: Thu, 27 Sep 2007 14:57:38 -0400 From: maddy Subject: [sqr-users] Loading fixed length flat file into Sybase table To: "This list is for discussion about the SQR database reporting language from Hyperion Solutions." Message-ID: Content-Type: text/plain; charset=3DISO-8859-1 Hi, What is the better way to load the data from fixed length flat file into a sybase database table using SQR. Number of rows in the file vary from 10,000 to 50,000 I'm doing something like the code below, but my concern is for each insert statement it goes to the database and could be performance issue. ***************************************************************************= *********************************************** open 'aaaa.txt' AS 100 for-reading record=3D600:fixed status=3D#z while 1 read 10 into $name:40 $Id:30 $location:50 if #end-file break end-if begin-sql insert into cust (name, Id, location) values ($name, $ID, $location) end-sql add 1 to #inserts if #inserts >=3D 100 begin-sql commit transaction begin transaction end-sql move 0 to #inserts end-if end-while ***************************************************************************= ********************************* Thanks!! Maddy ------------------------------ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users =20 CONFIDENTIALITY NOTICE: This e-mail message, including any attachments,=20 is for the sole use of the intended recipient(s) and may contain confidenti= al and privileged information or otherwise protected by law. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Oct 07 11:57:12 2007 Subject: RE: [sqr-users] Flags setting for #include files Date: Sun, 7 Oct 2007 11:44:30 -0400 From: "Larry Roux" This is a multi-part message in MIME format... ------_=_NextPart_001_01C808F9.4874D151 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable You can include the new location in the order of the include seach (ie make= the new location first). ie: -ic:\newsqcs;d:\origsqcs. I forget if the t= railing \ is needed or not. Or you can hard-code the location in the SQR= (ie #include 'c:\newsqcs\abc.sqc') =20 =20 ________________________________ From: sqr-users-bounces+lroux=3Dsyr.edu@sqrug.org on behalf of Kumar, Rahul Sent: Thu 10/4/2007 3:57 AM To: This list is for discussion about the SQR database reportinglanguage fr= omHyperion Solutions. Subject: [sqr-users] Flags setting for #include files Hi, I am working on one case where I need to include one particular(customized) sqc from a custom folder (a folder other than where all the sqc are placed).The issue is : the normal folder where all the sqcs are placed is also having this sqc with the same name but is not customized. I need to do this task without making any changes to the SQR which uses this sqc. I need to know if there Is any SQR Flag which will force it to take this sqc from the custom folder. Please note that the sqc also exist in the normal folder from where sqr will use all the other sqcs, but I need to use only that sqc which is placed in the custom folder. Any help or suggestion will be appreciated. Thanks in Advance Regards, Rahul ----------------------------------------- This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, notify the sender immediately by return email and delete the message and any attachments from your system. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------_=_NextPart_001_01C808F9.4874D151 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Description: AUTOMATIC WARNING Here was a non admissible message part of 'application/ms-tnef' MIME type. It has been automatically discarded before sending the message to the list. ------_=_NextPart_001_01C808F9.4874D151 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------_=_NextPart_001_01C808F9.4874D151-- From sqr-users-bounces@sqrug.org Mon Oct 08 08:54:38 2007 Subject: RE: [sqr-users] Challenging issue with Brio SQR in UNIX Date: Mon, 8 Oct 2007 07:48:40 -0500 From: "Bambach, Tom" Maddy, See if making the select statement dynamic helps - ie, let $where =3D 'WHERE A.FIELD=3D' || chr(39) || $var || chr(39) then in the select statement: : : FROM table A [$where] : : I've had issues like you describe that were inexplicably solved by putting the WHERE statement in a variable... Tom -----Original Message----- From: maddy [mailto:madhudvm@gmail.com]=20 Sent: Thursday, October 04, 2007 6:02 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: [sqr-users] Challenging issue with Brio SQR in UNIX Hi, We have a strange problem with all the Brio SQR Programs executing under UNIX environment.All these programs are working fine and giving data when executed in windows environment and giving no data in UNIX enviroment. We are creating a temp table and inserting data in the SQR program but unable to Select the data from the same table and print it on to the report.However when the ORDER BY clause in the select statement is commented out, data is pulled on to the report. If I run the same program again without droping and creating the table we get the data from the table even with ORDER BY clause which is strange. How can a ORDER BY clause in the SELECT statement cause this kind of issue ? I can send the skeleton program if any of the experts can look into this issue. Environment: Hyperion 8.5 installed on UNIX (AIX) Thanks, Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 08 17:25:47 2007 From: rayo@ontko.com Date: Mon, 8 Oct 2007 23:20:21 +0200 Subject: [sqr-users] RETURNED MAIL: SEE TRANSCRIPT FOR DETAILS This is a multi-part message in MIME format... ------=_NextPart_000_0013_2DF6C964.135ABD37 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit The original message was received at Mon, 8 Oct 2007 23:20:21 +0200 from 180.102.241.87 ----- The following addresses had permanent fatal errors ----- sqr-users@sqrug.org ------=_NextPart_000_0013_2DF6C964.135ABD37 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Description: AUTOMATIC WARNING Here was a non admissible message part of 'application/octet-stream' MIME type. It has been automatically discarded before sending the message to the list. ------=_NextPart_000_0013_2DF6C964.135ABD37 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------=_NextPart_000_0013_2DF6C964.135ABD37-- From sqr-users-bounces@sqrug.org Mon Oct 08 17:43:56 2007 From: the dragon Subject: RE: [sqr-users] RETURNED MAIL: SEE TRANSCRIPT FOR DETAILS Date: Mon, 8 Oct 2007 16:40:59 -0500 Ray, =20 What are you sending me? =20 peace, clarkPSA: Salary <> Slavery. If you earn a salary, your employer is renting= your services for 40 hours a week, not purchasing your soul. Your time is = the only real finite asset that you have, and once used it can never be rec= overed, so don't waste it by giving it away. I work to live; I don't live t= o work. "Time is the coin of your life. It is the only coin you have, and o= nly you can determine how it will be spent. Be careful lest you let other p= eople spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to= defeat an ignorant man in argument. -- William G. McAdoo Religion is regar= ded by the common people as true, by the wise as false, and by the rulers a= s useful. -- Seneca "I distrust those people who know so well what God want= s them to do because I notice it always coincides with their own desires." = - Susan B. Anthony> From: rayo@ontko.com> To: sqr-users@sqrug.org> Date: Mo= n, 8 Oct 2007 23:20:21 +0200> Subject: [sqr-users] RETURNED MAIL: SEE TRANS= CRIPT FOR DETAILS> > The original message was received at Mon, 8 Oct 2007 2= 3:20:21 +0200 from 180.102.241.87> > ----- The following addresses had perm= anent fatal errors -----> sqr-users@sqrug.org> > >=20 _________________________________________________________________ Boo!=A0Scare away worms, viruses and so much more! Try Windows Live OneCare! http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=3Dwl_hotma= ilnews _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 09 06:54:56 2007 From: "Steve Cavill" Subject: RE: [sqr-users] Challenging issue with Brio SQR in UNIX Date: Tue, 9 Oct 2007 20:51:25 +1000 Sounds like the inserts are not being committed. Running on Windows vs Unix implies a different driver, so it's possible one is doing some sort of autocommit. Try adding appropriate commit's to your code to see if that makes a difference. Steve. -----Original Message----- From: sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org [mailto:sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org] On Behalf Of maddy Sent: Friday, 5 October 2007 8:02 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: [sqr-users] Challenging issue with Brio SQR in UNIX Hi, We have a strange problem with all the Brio SQR Programs executing under UNIX environment.All these programs are working fine and giving data when executed in windows environment and giving no data in UNIX enviroment. We are creating a temp table and inserting data in the SQR program but unable to Select the data from the same table and print it on to the report.However when the ORDER BY clause in the select statement is commented out, data is pulled on to the report. If I run the same program again without droping and creating the table we get the data from the table even with ORDER BY clause which is strange. How can a ORDER BY clause in the SELECT statement cause this kind of issue ? I can send the skeleton program if any of the experts can look into this issue. Environment: Hyperion 8.5 installed on UNIX (AIX) Thanks, Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 09 11:22:39 2007 Date: Tue, 09 Oct 2007 11:19:10 -0400 From: "George Jansen" Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX It strikes me that an ORDER BY clause means sorting, sorting means the use = of temporary space, and this could be limited. As for the location, are you using Oracle? With Oracle you could under some= circumstances be connecting through a shared server (sorting in the shared= pool) and in others connecting through a dedicated server. >>> maddy 10/4/2007 6:01 PM >>> Hi, We have a strange problem with all the Brio SQR Programs executing under UNIX environment.All these programs are working fine and giving data when executed in windows environment and giving no data in UNIX enviroment. We are creating a temp table and inserting data in the SQR program but unable to Select the data from the same table and print it on to the report.However when the ORDER BY clause in the select statement is commented out, data is pulled on to the report. If I run the same program again without droping and creating the table we get the data from the table even with ORDER BY clause which is strange. How can a ORDER BY clause in the SELECT statement cause this kind of issue ? I can send the skeleton program if any of the experts can look into this issue. Environment: Hyperion 8.5 installed on UNIX (AIX) Thanks, Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 11:11:09 2007 Date: Wed, 10 Oct 2007 20:38:17 +0530 From: Jiju Subject: [sqr-users] Peoplesoft multi-language issue Hi, I am extremely sorry to write in with a core Peoplesoft issue in this SQR group. But its extremely critical for me and I know the depth of PS understanding that SQRUG members possess. My issue is related multi language sessions in Peopletools 8.45. The Calendar prompts of date fields are not correctly populating. Clicking on any date field, starts the Calendar Load process and errors out saying that 'Calendar Cannot be loaded'. This issue is only present when accessing PIA in a non-Base language. Has anyone come across this issue? Any idea/suggestion would be of great help. Thanks, Jiju Cherian. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 12:53:12 2007 From: "Jean Myles" Date: Wed, 10 Oct 2007 12:50:18 -0400 Subject: [sqr-users] SQR Tecnical Documentation We are trying to locate a hard copy of the SQR Technical Documentation (mostly the language reference guide and designing reports with sqr developer) for the latest version of SQR. We can download the PDF's. but would like to know if a hard copy exists or if you would have any other documentation recommendations. Thanks in advance for the information. Jean Myles Information Management Specialist Fashion Institute of Technology P: 212-217-3440 F: 212-217-3452 E: jean_myles@fitnyc.edu _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 13:06:20 2007 From: "Joe" Subject: Re: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 11:03:17 -0600 Contact whoever it is that now owns SQR (Brio?). If they don't have them, just Kinko them. - jej1216 ----- Original Message ----- From: "Jean Myles" To: Sent: Wednesday, October 10, 2007 10:50 AM Subject: [sqr-users] SQR Tecnical Documentation > We are trying to locate a hard copy of the SQR Technical Documentation > (mostly the language reference guide and designing reports with sqr > developer) for the latest version of SQR. We can download the PDF's. but > would like to know if a hard copy exists or if you would have any other > documentation recommendations. > > > > Thanks in advance for the information. > > > > Jean Myles > > Information Management Specialist > > Fashion Institute of Technology > > P: 212-217-3440 > > F: 212-217-3452 > > E: jean_myles@fitnyc.edu > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 13:10:26 2007 From: the dragon Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 12:07:21 -0500 Contact Brio, Hyperion or whomever they are now... You may be able to oder= a set, or, since they are pdfs, you could print them out and bind them. =20 There are also a couple of books available through amazon that should be ab= le to help. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> From: jean_myles@fitnyc.edu> To: sq= r-users@sqrug.org> Date: Wed, 10 Oct 2007 12:50:18 -0400> Subject: [sqr-use= rs] SQR Tecnical Documentation> > We are trying to locate a hard copy of th= e SQR Technical Documentation> (mostly the language reference guide and des= igning reports with sqr> developer) for the latest version of SQR. We can d= ownload the PDF's. but> would like to know if a hard copy exists or if you = would have any other> documentation recommendations.> > > > Thanks in advan= ce for the information.> > > > Jean Myles> > Information Management Special= ist> > Fashion Institute of Technology> > P: 212-217-3440> > F: 212-217-345= 2> > E: jean_myles@fitnyc.edu> > ___________= ____________________________________> sqr-users mailing list> sqr-users@sqr= ug.org> http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Help yourself to FREE treats served up daily at the Messenger Caf=E9. Stop = by today. http://www.cafemessenger.com/info/info_sweetstuff2.html?ocid=3DTXT_TAGLM_Oc= tWLtagline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:04:27 2007 Date: Wed, 10 Oct 2007 14:00:55 -0400 From: maddy Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX This is a multi-part message in MIME format... ------=_Part_8186_10095497.1192039255300 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I have tried all the various things mentioned in the chain of emails but still have the same issue. The issue is with commit statement but not sure why it is not working with ORDER BY clause in the SELECT statement. Please take a look at the attached SQR program and the cursor information when compiled with -S flag. Thanks!! Maddy Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDirect 5.1 Database : Sybase 12.5 On 10/9/07, George Jansen wrote: > It strikes me that an ORDER BY clause means sorting, sorting means the use of temporary space, and this could be limited. > > As for the location, are you using Oracle? With Oracle you could under some circumstances be connecting through a shared server (sorting in the shared pool) and in others connecting through a dedicated server. > > >>> maddy 10/4/2007 6:01 PM >>> > Hi, > > We have a strange problem with all the Brio SQR Programs executing under > UNIX environment.All these programs are working fine and giving data when > executed in windows environment and giving no data in UNIX enviroment. > > We are creating a temp table and inserting data in the SQR program but > unable to Select the data from the same table and print it on to the > report.However when the ORDER BY clause in the select statement is commented > out, data is pulled on to the report. > > If I run the same program again without droping and creating the table we > get the data from the table even with ORDER BY clause which is strange. > How can a ORDER BY clause in the SELECT statement cause this kind of issue > ? I can send the skeleton program if any of the experts can look into this > issue. > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > Thanks, > Maddy > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > ------=_Part_8186_10095497.1192039255300 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Description: AUTOMATIC WARNING Here was a non admissible message part of 'application/octet-stream' MIME type. It has been automatically discarded before sending the message to the list. ------=_Part_8186_10095497.1192039255300 Content-Type: text/plain; name="CID30_Cursor_Info.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="CID30_Cursor_Info.txt"; filename="CID30_Cursor_Info.txt" X-Attachment-Id: f_f7m5ds4z Q3Vyc29yIFN0YXR1czoNCg0KIEN1cnNvciAjMToNCiAgIFNRTCA9IGNvbW1p dCB0cmFuc2FjdGlvbg0KIENvbXBpbGVzID0gMQ0KIEV4ZWN1dGVzID0gMQ0K IFJvd3MgICAgID0gMA0KDQogQ3Vyc29yICMyOg0KICAgU1FMID0gaWYgZXhp c3RzKHNlbGVjdCAxIGZyb20gc3lzb2JqZWN0cyB3aGVyZSBuYW1lID0nQ0lE MzBfSlAnYW5kDQogICAgICAgICB0eXBlPSdVJykgYmVnaW4gZHJvcCB0YWJs ZSBDSUQzMF9KUCBlbmQNCiBDb21waWxlcyA9IDENCiBFeGVjdXRlcyA9IDEN CiBSb3dzICAgICA9IDANCg0KIEN1cnNvciAjMzoNCiAgIFNRTCA9IGNyZWF0 ZSB0YWJsZSBDSUQzMF9KUCAoIEJMRUlfQklMTF9MRVZFTCAgICAgY2hhcigx KSAgbnVsbCwNCiAgICAgICAgIEJMRUlfTFNUX1RMX0RVRV9EVCAgZGF0ZXRp bWUgbnVsbCwgQkxFSV9MQVNUX0JJTExfRFRNICBkYXRldGltZQ0KICAgICAg ICAgbnVsbCwgQkxFSV9MU1RfQkxfRU5EX0RUICBkYXRldGltZSBudWxsLCBC TEVJX1NVU1BORF9CTF9JTkQNCiAgICAgICAgIGNoYXIoMSkgIG51bGwsIEdS R1JfSUQgICAgICAgICAgICAgY2hhcig4KSAgbnVsbCwgU0dTR19JRA0KICAg ICAgICAgICBjaGFyKDQpICBudWxsLCBTQlNCX0lEICAgICAgICAgICAgIGNo YXIoOSkgIG51bGwgKQ0KIENvbXBpbGVzID0gMQ0KIEV4ZWN1dGVzID0gMQ0K IFJvd3MgICAgID0gMA0KDQogQ3Vyc29yICM0Og0KICAgU1FMID0gY29tbWl0 IHRyYW5zYWN0aW9uDQogQ29tcGlsZXMgPSAxDQogRXhlY3V0ZXMgPSAxDQog Um93cyAgICAgPSAwDQoNCiBDdXJzb3IgIzU6DQogICBTUUwgPSB7Y2FsbCBS UFQuLkJFUlNQX0VWRU5UX1NURVBfSU5TRVJUKD8sPyw/LD8pfQ0KIENvbXBp bGVzID0gMA0KIEV4ZWN1dGVzID0gNA0KIFJvd3MgICAgID0gMA0KDQoNCiBD dXJzb3IgIzY6DQogICBTUUwgPSBpbnNlcnQgaW50byBDSUQzMF9KUCAoIEJM RUlfQklMTF9MRVZFTCwgQkxFSV9MU1RfVExfRFVFX0RULA0KICAgICAgICAg QkxFSV9MQVNUX0JJTExfRFRNLCBCTEVJX0xTVF9CTF9FTkRfRFQsIEJMRUlf U1VTUE5EX0JMX0lORCwNCiAgICAgICAgIEdSR1JfSUQsIFNHU0dfSUQsIFNC U0JfSUQgKSBzZWxlY3QgJ0knLCBCTEVJLkJMRUlfTFNUX1RMX0RVRV9EVCwN CiAgICAgICAgIEJMRUkuQkxFSV9MQVNUX0JJTExfRFRNLCBCTEVJLkJMRUlf TFNUX0JMX0VORF9EVCwNCiAgICAgICAgIEJMRUkuQkxFSV9TVVNQTkRfQkxf SU5ELCBHUkdSLkdSR1JfSUQsIG51bGwgLCBTQlNCLlNCU0JfSUQgZnJvbQ0K ICAgICAgICAgZmFkZnlpbjEuLkNNQ19CTEVJX0VOVFlfSU5GTyAgICAgIEJM RUksIGZhZGZ5aW4xLi5DTUNfR1JHUl9HUk9VUA0KICAgICAgICAgICAgICAg R1JHUiwgZmFkZnlpbjEuLkNNQ19TQlNCX1NVQlNDICAgICAgICAgIFNCU0Ig d2hlcmUNCiAgICAgICAgIEJMRUkuQkxFSV9CSUxMX0xFVkVMX0NLICA9ICAg U0JTQi5TQlNCX0NLIGFuZCBTQlNCLkdSR1JfQ0sNCiAgICAgICAgICAgID0g ICBHUkdSLkdSR1JfQ0sgYW5kIEJMRUkuQkxFSV9CSUxMX0xFVkVMICAgICA9 ICAgJ0knIGFuZA0KICAgICAgICAgQkxFSS5CTEVJX1NVU1BORF9CTF9JTkQg aW4gKCdCJywnRCcsJ1MnKSB1bmlvbiBzZWxlY3QgJ0cnLA0KICAgICAgICAg QkxFSS5CTEVJX0xTVF9UTF9EVUVfRFQsIEJMRUkuQkxFSV9MQVNUX0JJTExf RFRNLA0KICAgICAgICAgQkxFSS5CTEVJX0xTVF9CTF9FTkRfRFQsIEJMRUku QkxFSV9TVVNQTkRfQkxfSU5ELCBHUkdSLkdSR1JfSUQsDQogICAgICAgICBT R1NHLlNHU0dfSUQsIG51bGwgZnJvbSBmYWRmeWluMS4uQ01DX0JMRUlfRU5U WV9JTkZPICAgICAgQkxFSSwNCiAgICAgICAgIGZhZGZ5aW4xLi5DTUNfR1JH Ul9HUk9VUCAgICAgIEdSR1IsIGZhZGZ5aW4xLi5DTUNfU0dTR19TVUJfR1JP VVANCiAgICAgICAgIFNHU0cgd2hlcmUgQkxFSS5CTEVJX0JJTExfTEVWRUxf Q0sgPSAgIFNHU0cuU0dTR19DSyBhbmQNCiAgICAgICAgIFNHU0cuR1JHUl9D SyAgICAgICAgICAgID0gICBHUkdSLkdSR1JfQ0sgYW5kIEJMRUkuQkxFSV9C SUxMX0xFVkVMDQogICAgICAgICAgPSAgICdTJyBhbmQgQkxFSS5CTEVJX1NV U1BORF9CTF9JTkQgaW4gKCdCJywnRCcsJ1MnKSB1bmlvbiBzZWxlY3QNCiAg ICAgICAgICdHJywgQkxFSS5CTEVJX0xTVF9UTF9EVUVfRFQsIEJMRUkuQkxF SV9MQVNUX0JJTExfRFRNLA0KICAgICAgICAgQkxFSS5CTEVJX0xTVF9CTF9F TkRfRFQsIEJMRUkuQkxFSV9TVVNQTkRfQkxfSU5ELCBHUkdSLkdSR1JfSUQs DQogICAgICAgICBudWxsLCBudWxsIGZyb20gZmFkZnlpbjEuLkNNQ19CTEVJ X0VOVFlfSU5GTyAgICAgIEJMRUksDQogICAgICAgICBmYWRmeWluMS4uQ01D X0dSR1JfR1JPVVAgICAgICAgICAgR1JHUiB3aGVyZQ0KICAgICAgICAgQkxF SS5CTEVJX0JJTExfTEVWRUxfQ0sgPSAgIEdSR1IuR1JHUl9DSyBhbmQgQkxF SS5CTEVJX0JJTExfTEVWRUwNCiAgICAgICAgICA9ICAgJ0cnIGFuZCBCTEVJ LkJMRUlfU1VTUE5EX0JMX0lORCBpbiAoJ0InLCdEJywnUycpDQogQ29tcGls ZXMgPSAxDQogRXhlY3V0ZXMgPSAxDQogUm93cyAgICAgPSAzNTQNCg0KIEN1 cnNvciAjNzoNCiAgIFNRTCA9IFNFTEVDVCBCTFNVLkJMRUlfQklMTF9MRVZF TCwgQkxTVS5CTEVJX1NVU1BORF9CTF9JTkQsIEJMU1UuR1JHUl9JRCwNCiAg ICAgICAgIEJMU1UuU0dTR19JRCwgQkxTVS5TQlNCX0lELA0KICAgICAgICAg Y29udmVydChjaGFyKDEwKSxCTFNVLkJMRUlfTFNUX1RMX0RVRV9EVCwxMDEp LA0KICAgICAgICAgY29udmVydChjaGFyKDEwKSxCTFNVLkJMRUlfTEFTVF9C SUxMX0RUTSwxMDEpLA0KICAgICAgICAgY29udmVydChjaGFyKDEwKSxCTFNV LkJMRUlfTFNUX0JMX0VORF9EVCwxMDEpICBmcm9tIFJQVC4uQ0lEMzBfSlAN CiAgICAgICAgICAgQkxTVSBvcmRlciBieSBCTFNVLkJMRUlfQklMTF9MRVZF TCwgQkxTVS5CTEVJX1NVU1BORF9CTF9JTkQsDQogICAgICAgICBCTFNVLkdS R1JfSUQsIEJMU1UuU0dTR19JRCwgQkxTVS5TQlNCX0lEDQogQ29tcGlsZXMg PSAxDQogRXhlY3V0ZXMgPSAyDQogUm93cyAgICAgPSAzNTQNCg0KIEN1cnNv ciAjODoNCiAgIFNRTCA9IGRyb3AgdGFibGUgUlBULi5DSUQzMF9KUA0KIENv bXBpbGVzID0gMQ0KIEV4ZWN1dGVzID0gMQ0KIFJvd3MgICAgID0gMA0KDQoN ClNRUjogRW5kIG9mIFJ1bi4= ------=_Part_8186_10095497.1192039255300 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------=_Part_8186_10095497.1192039255300-- From sqr-users-bounces@sqrug.org Wed Oct 10 14:09:15 2007 Date: Wed, 10 Oct 2007 14:01:52 -0400 From: "Dee Lind" Subject: RE: [sqr-users] SQR Tecnical Documentation I think Oracle owns SQR - is that correct? Dee Lind Application Engineer ResCare, Inc. Ph: 502-394-2289 Fax: 502.394.2309 dlind@rescare.com CONFIDENTIALITY NOTICE: This email, including attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, or disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender immediately and destroy all copies of the original message. >>> the dragon 10/10/2007 1:07 PM >>> Contact Brio, Hyperion or whomever they are now... You may be able to oder a set, or, since they are pdfs, you could print them out and bind them. There are also a couple of books available through amazon that should be able to help. peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> From: jean_myles@fitnyc.edu> To: sqr-users@sqrug.org> Date: Wed, 10 Oct 2007 12:50:18 -0400> Subject: [sqr-users] SQR Tecnical Documentation> > We are trying to locate a hard copy of the SQR Technical Documentation> (mostly the language reference guide and designing reports with sqr> developer) for the latest version of SQR. We can download the PDF's. but> would like to know if a hard copy exists or if you would have any other> documentation recommendations.> > > > Thanks in advance for the information.> > > > Jean Myles> > Information Management Specialist> > Fashion Institute of Technology> > P: 212-217-3440> > F: 212-217-3452> > E: jean_myles@fitnyc.edu> > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Help yourself to FREE treats served up daily at the Messenger Café. Stop by today. http://www.cafemessenger.com/info/info_sweetstuff2.html?ocid=TXT_TAGLM_OctWLtagline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:12:38 2007 Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 14:04:41 -0400 From: Brio is now owned by Oracle. The last time a dug about the brio site, there was printed documentation manuals for sale, but that was about 3-4 years ago, prior to purchase by Oracle. FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it was known as "SQR Server". That was when it was verion 4.x. It then was purchased by Brio Technology and renamed "Brio Report" It was version 6.x then and I believe also 7.x. Then Hyperion purchased it and tried to rename it something else, but users kept calling it "Brio" and SQR. About a year or so go Oracle bought it and re-instated the more familiar names. -Steve Jones=20=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of Joe Sent: Wednesday, October 10, 2007 10:03 AM To: sqr-users@sqrug.org Subject: Re: [sqr-users] SQR Tecnical Documentation Contact whoever it is that now owns SQR (Brio?). If they don't have them, just Kinko them. - jej1216 ----- Original Message ----- From: "Jean Myles" To: Sent: Wednesday, October 10, 2007 10:50 AM Subject: [sqr-users] SQR Tecnical Documentation > We are trying to locate a hard copy of the SQR Technical Documentation > (mostly the language reference guide and designing reports with sqr > developer) for the latest version of SQR. We can download the PDF's.=20 > but would like to know if a hard copy exists or if you would have any=20 > other documentation recommendations. > > > > Thanks in advance for the information. > > > > Jean Myles > > Information Management Specialist > > Fashion Institute of Technology > > P: 212-217-3440 > > F: 212-217-3452 > > E: jean_myles@fitnyc.edu > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:18:34 2007 From: the dragon Subject: RE: [sqr-users] Challenging issue with Brio SQR in UNIX Date: Wed, 10 Oct 2007 13:15:25 -0500 The sqr failed to make it through, but the -s looks to me like it is workin= g correctly - 354 rows are inserted, and 354 are selected afterwards. I gu= ess my question is what makes you think it isn't working? =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > Hi,> > I have tried all the vario= us things mentioned in the chain of emails> but still have the same issue. = The issue is with commit statement but> not sure why it is not working with= ORDER BY clause in the SELECT> statement.> > Please take a look at the att= ached SQR program and the cursor> information when compiled with -S flag.> = > > Thanks!!> Maddy> > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AI= X 5.2/ODBC DataDirect 5.1> Database : Sybase 12.5> > On 10/9/07, George Jan= sen wrote:> > It strikes me that an ORDER BY clause me= ans sorting, sorting means the use of temporary space, and this could be li= mited.> >> > As for the location, are you using Oracle? With Oracle you cou= ld under some circumstances be connecting through a shared server (sorting = in the shared pool) and in others connecting through a dedicated server.> >= > > >>> maddy 10/4/2007 6:01 PM >>>> > Hi,> >> > We ha= ve a strange problem with all the Brio SQR Programs executing under> > UNIX= environment.All these programs are working fine and giving data when> > ex= ecuted in windows environment and giving no data in UNIX enviroment.> >> > = We are creating a temp table and inserting data in the SQR program but> > u= nable to Select the data from the same table and print it on to the> > repo= rt.However when the ORDER BY clause in the select statement is commented> >= out, data is pulled on to the report.> >> > If I run the same program agai= n without droping and creating the table we> > get the data from the table = even with ORDER BY clause which is strange.> > How can a ORDER BY clause in= the SELECT statement cause this kind of issue> > ? I can send the skeleton= program if any of the experts can look into this> > issue.> >> > Environme= nt: Hyperion 8.5 installed on UNIX (AIX)> >> > Thanks,> > Maddy> > _________________________________________________________________ Help yourself to FREE treats served up daily at the Messenger Caf=E9. Stop = by today. http://www.cafemessenger.com/info/info_sweetstuff2.html?ocid=3DTXT_TAGLM_Oc= tWLtagline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:22:15 2007 From: the dragon Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 13:17:54 -0500 Actually, I believe SQR started as a Sybase tool, then was owned by MITI (v= 2 and 3) which became SQRibe. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > Brio is now owned by Oracle. The = last time a dug about the brio site,> there was printed documentation manua= ls for sale, but that was about 3-4> years ago, prior to purchase by Oracle= .> > FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it w= as> known as "SQR Server". That was when it was verion 4.x. It then was> pu= rchased by Brio Technology and renamed "Brio Report" It was version> 6.x th= en and I believe also 7.x. Then Hyperion purchased it and tried> to rename = it something else, but users kept calling it "Brio" and SQR.> About a year = or so go Oracle bought it and re-instated the more familiar> names.> -Steve= Jones > > -----Original Message-----> > Contact whoever it is that now own= s SQR (Brio?). If they don't have> them, just Kinko them.> > - jej1216> > -= ---- Original Message -----> From: "Jean Myles" > To= : > Sent: Wednesday, October 10, 2007 10:50 AM> Subjec= t: [sqr-users] SQR Tecnical Documentation> > > We are trying to locate a ha= rd copy of the SQR Technical Documentation> > > (mostly the language refere= nce guide and designing reports with sqr> > developer) for the latest versi= on of SQR. We can download the PDF's. > > but would like to know if a hard = copy exists or if you would have any > > other documentation recommendation= s.> >> >> >> > Thanks in advance for the information.> >> >> >> > Jean Myle= s> >> > Information Management Specialist> >> > Fashion Institute of Techno= logy> >> > P: 212-217-3440> >> > F: 212-217-3452> >> > E: jean_myles@fitnyc.edu> >> > _________________________________= ______________> > sqr-users mailing list> > sqr-users@sqrug.org> > http://w= ww.sqrug.org/mailman/listinfo/sqr-users> > > > ____________________________= ___________________> sqr-users mailing list> sqr-users@sqrug.org> http://ww= w.sqrug.org/mailman/listinfo/sqr-users> > > > _____________________________= __________________> sqr-users mailing list> sqr-users@sqrug.org> http://www= .sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=3DTXT_TAGHM&loc=3Dus _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:27:38 2007 Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 14:23:44 -0400 From: You go back farther than I. thx=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of the dragon Sent: Wednesday, October 10, 2007 11:18 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Actually, I believe SQR started as a Sybase tool, then was owned by MITI (v2 and 3) which became SQRibe. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Brio is now owned by Oracle. The last time a dug about the brio site,> there was printed documentation manuals for sale, but that was about 3-4> years ago, prior to purchase by Oracle.> > FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it was> known as "SQR Server". That was when it was verion 4.x. It then was> purchased by Brio Technology and renamed "Brio Report" It was version> 6.x then and I believe also 7.x. Then Hyperion purchased it and tried> to rename it something else, but users kept calling it "Brio" and SQR.> About a year or so go Oracle bought it and re-instated the more familiar> names.> -Steve Jones > > -----Original Message-----> > Contact whoever it is that now owns SQR (Brio?). If they don't have> them, just Kinko them.> > - jej1216> > ----- Original Message -----> From: "Jean Myles" > To: > Sent: Wednesday, October 10, 2007 10:50 AM> Subject: [sqr-users] SQR Tecnical Documentation> > > We are trying to locate a hard copy of the SQR Technical Documentation> > > (mostly the language reference guide and designing reports with sqr> > developer) for the latest version of SQR. We can download the PDF's. > > but would like to know if a hard copy exists or if you would have any > > other documentation recommendations.> >> >> >> > Thanks in advance for the information.> >> >> >> > Jean Myles> >> > Information Management Specialist> >> > Fashion Institute of Technology> >> > P: 212-217-3440> >> > F: 212-217-3452> >> > E: jean_myles@fitnyc.edu> >> > _______________________________________________> > sqr-users mailing list> > sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=3DTXT_TAGHM&loc=3Dus _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:31:35 2007 Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 14:28:43 -0400 From: "Wes Williams" Written by a guy Israel Stern...right?=20 Wes Williams Manager Facilities Mgt. Systems Princeton University 609-258-7027 609-468-6344 -----Original Message----- From: sqr-users-bounces+wes=3Dprinceton.edu@sqrug.org [mailto:sqr-users-bounces+wes=3Dprinceton.edu@sqrug.org] On Behalf Of Jones.Steven@ups-scs.com Sent: Wednesday, October 10, 2007 2:24 PM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR Tecnical Documentation You go back farther than I. thx=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of the dragon Sent: Wednesday, October 10, 2007 11:18 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Actually, I believe SQR started as a Sybase tool, then was owned by MITI (v2 and 3) which became SQRibe. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Brio is now owned by Oracle. The last time a dug about the brio site,> there was printed documentation manuals for sale, but that was about 3-4> years ago, prior to purchase by Oracle.> > FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it was> known as "SQR Server". That was when it was verion 4.x. It then was> purchased by Brio Technology and renamed "Brio Report" It was version> 6.x then and I believe also 7.x. Then Hyperion purchased it and tried> to rename it something else, but users kept calling it "Brio" and SQR.> About a year or so go Oracle bought it and re-instated the more familiar> names.> -Steve Jones > > -----Original Message-----> > Contact whoever it is that now owns SQR (Brio?). If they don't have> them, just Kinko them.> > - jej1216> > ----- Original Message -----> From: "Jean Myles" > To: > Sent: Wednesday, October 10, 2007 10:50 AM> Subject: [sqr-users] SQR Tecnical Documentation> > > We are trying to locate a hard copy of the SQR Technical Documentation> > > (mostly the language reference guide and designing reports with sqr> > developer) for the latest version of SQR. We can download the PDF's. > > but would like to know if a hard copy exists or if you would have any > > other documentation recommendations.> >> >> >> > Thanks in advance for the information.> >> >> >> > Jean Myles> >> > Information Management Specialist> >> > Fashion Institute of Technology> >> > P: 212-217-3440> >> > F: 212-217-3452> >> > E: jean_myles@fitnyc.edu> >> > _______________________________________________> > sqr-users mailing list> > sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=3DTXT_TAGHM&loc=3Dus _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:38:41 2007 From: "Alexander, Steven" Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 11:35:49 -0700 We should add this history to the Wikipedia article about SQR. -----Original Message----- From: sqr-users-bounces+steven.alexander=sanjoseca.gov@sqrug.org [mailto:sqr-users-bounces+steven.alexander=sanjoseca.gov@sqrug.org] On Behalf Of Wes Williams Sent: Wednesday, October 10, 2007 11:29 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Written by a guy Israel Stern...right? Wes Williams Manager Facilities Mgt. Systems Princeton University 609-258-7027 609-468-6344 -----Original Message----- From: sqr-users-bounces+wes=princeton.edu@sqrug.org [mailto:sqr-users-bounces+wes=princeton.edu@sqrug.org] On Behalf Of Jones.Steven@ups-scs.com Sent: Wednesday, October 10, 2007 2:24 PM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR Tecnical Documentation You go back farther than I. thx -----Original Message----- From: sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org] On Behalf Of the dragon Sent: Wednesday, October 10, 2007 11:18 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Actually, I believe SQR started as a Sybase tool, then was owned by MITI (v2 and 3) which became SQRibe. peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Brio is now owned by Oracle. The last time a dug about the brio site,> there was printed documentation manuals for sale, but that was about 3-4> years ago, prior to purchase by Oracle.> > FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it was> known as "SQR Server". That was when it was verion 4.x. It then was> purchased by Brio Technology and renamed "Brio Report" It was version> 6.x then and I believe also 7.x. Then Hyperion purchased it and tried> to rename it something else, but users kept calling it "Brio" and SQR.> About a year or so go Oracle bought it and re-instated the more familiar> names.> -Steve Jones > > -----Original Message-----> > Contact whoever it is that now owns SQR (Brio?). If they don't have> them, just Kinko them.> > - jej1216> > ----- Original Message -----> From: "Jean Myles" > To: > Sent: Wednesday, October 10, 2007 10:50 AM> Subject: [sqr-users] SQR Tecnical Documentation> > > We are trying to locate a hard copy of the SQR Technical Documentation> > > (mostly the language reference guide and designing reports with sqr> > developer) for the latest version of SQR. We can download the PDF's. > > but would like to know if a hard copy exists or if you would have any > > other documentation recommendations.> >> >> >> > Thanks in advance for the information.> >> >> >> > Jean Myles> >> > Information Management Specialist> >> > Fashion Institute of Technology> >> > P: 212-217-3440> >> > F: 212-217-3452> >> > E: jean_myles@fitnyc.edu> >> > _______________________________________________> > sqr-users mailing list> > sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=TXT_TAGHM&loc=us _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 14:47:21 2007 Date: Wed, 10 Oct 2007 14:44:20 -0400 From: maddy Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX This is a multi-part message in MIME format... ------=_Part_8301_4897302.1192041860710 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi dragon, Thanks for your quick response.By mistake I had sent you the wrong file with Cursor information. Please take a look at the new file attached. Thanks, Maddy On 10/10/07, the dragon wrote: > The sqr failed to make it through, but the -s looks to me like it is work= ing > correctly - 354 rows are inserted, and 354 are selected afterwards. I gu= ess > my question is what makes you think it isn't working? > > peace, > clark 'the dragon' willis > > PSA: Salary <> Slavery. If you earn a salary, your employer is renting yo= ur > services for 40 hours a week, not purchasing your soul. Your time is the > only real finite asset that you have, and once used it can never be > recovered, so don't waste it by giving it away. > > I work to live; I don't live to work. > > "Time is the coin of your life. It is the only coin you have, and only you > can determine how it will be spent. Be careful lest you let other people > spend it for you." -- Carl Sandburg (1878 - 1967) > > It is impossible to defeat an ignorant man in argument. -- William G. McA= doo > > Religion is regarded by the common people as true, by the wise as false, = and > by the rulers as useful. -- Seneca > > "I distrust those people who know so well what God wants them to do becau= se > I notice it always coincides with their own desires." - Susan B. Anthony > > > > > Hi, > > > > I have tried all the various things mentioned in the chain of emails > > but still have the same issue. The issue is with commit statement but > > not sure why it is not working with ORDER BY clause in the SELECT > > statement. > > > > Please take a look at the attached SQR program and the cursor > > information when compiled with -S flag. > > > > > > Thanks!! > > Maddy > > > > > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDirect > 5.1 > > Database : Sybase 12.5 > > > > On 10/9/07, George Jansen wrote: > > > It strikes me that an ORDER BY clause means sorting, sorting means the > use of temporary space, and this could be limited. > > > > > > As for the location, are you using Oracle? With Oracle you could under > some circumstances be connecting through a shared server (sorting in the > shared pool) and in others connecting through a dedicated server. > > > > > > >>> maddy 10/4/2007 6:01 PM >>> > > > Hi, > > > > > > We have a strange problem with all the Brio SQR Programs executing un= der > > > UNIX environment.All these programs are working fine and giving data > when > > > executed in windows environment and giving no data in UNIX enviroment. > > > > > > We are creating a temp table and inserting data in the SQR program but > > > unable to Select the data from the same table and print it on to the > > > report.However when the ORDER BY clause in the select statement is > commented > > > out, data is pulled on to the report. > > > > > > If I run the same program again without droping and creating the table > we > > > get the data from the table even with ORDER BY clause which is strang= e. > > > How can a ORDER BY clause in the SELECT statement cause this kind of > issue > > > ? I can send the skeleton program if any of the experts can look into > this > > > issue. > > > > > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > > > > > Thanks, > > > Maddy > > > > > > ________________________________ > Help yourself to FREE treats served up daily at the Messenger Caf=E9. Sto= p by > today! ------=_Part_8301_4897302.1192041860710 Content-Type: text/plain; name="CID30_Cursor_Info.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="CID30_Cursor_Info.txt"; filename="CID30_Cursor_Info.txt"; filename="CID30_Cursor_Info.txt" X-Attachment-Id: f_f7m6wkhn Q3Vyc29yIFN0YXR1czoNCg0KIEN1cnNvciAjMToNCiAgIFNRTCA9IGNvbW1p dCB0cmFuc2FjdGlvbg0KIENvbXBpbGVzID0gMQ0KIEV4ZWN1dGVzID0gMQ0K IFJvd3MgICAgID0gMA0KDQogQ3Vyc29yICMyOg0KICAgU1FMID0gaWYgZXhp c3RzKHNlbGVjdCAxIGZyb20gc3lzb2JqZWN0cyB3aGVyZSBuYW1lID0nQ0lE MzBfSlAnYW5kDQogICAgICAgICB0eXBlPSdVJykgYmVnaW4gZHJvcCB0YWJs ZSBDSUQzMF9KUCBlbmQNCiBDb21waWxlcyA9IDENCiBFeGVjdXRlcyA9IDEN CiBSb3dzICAgICA9IDANCg0KIEN1cnNvciAjMzoNCiAgIFNRTCA9IGNyZWF0 ZSB0YWJsZSBDSUQzMF9KUCAoIEJMRUlfQklMTF9MRVZFTCAgICAgY2hhcigx KSAgbnVsbCwNCiAgICAgICAgIEJMRUlfTFNUX1RMX0RVRV9EVCAgZGF0ZXRp bWUgbnVsbCwgQkxFSV9MQVNUX0JJTExfRFRNICBkYXRldGltZQ0KICAgICAg ICAgbnVsbCwgQkxFSV9MU1RfQkxfRU5EX0RUICBkYXRldGltZSBudWxsLCBC TEVJX1NVU1BORF9CTF9JTkQNCiAgICAgICAgIGNoYXIoMSkgIG51bGwsIEdS R1JfSUQgICAgICAgICAgICAgY2hhcig4KSAgbnVsbCwgU0dTR19JRA0KICAg ICAgICAgICBjaGFyKDQpICBudWxsLCBTQlNCX0lEICAgICAgICAgICAgIGNo YXIoOSkgIG51bGwgKQ0KIENvbXBpbGVzID0gMQ0KIEV4ZWN1dGVzID0gMQ0K IFJvd3MgICAgID0gMA0KDQogQ3Vyc29yICM0Og0KICAgU1FMID0gY29tbWl0 IHRyYW5zYWN0aW9uDQogQ29tcGlsZXMgPSAxDQogRXhlY3V0ZXMgPSAxDQog Um93cyAgICAgPSAwDQoNCiBDdXJzb3IgIzU6DQogICBTUUwgPSB7Y2FsbCBS UFQuLkJFUlNQX0VWRU5UX1NURVBfSU5TRVJUKD8sPyw/LD8pfQ0KIENvbXBp bGVzID0gMA0KIEV4ZWN1dGVzID0gNA0KIFJvd3MgICAgID0gMA0KDQoNCiBD dXJzb3IgIzY6DQogICBTUUwgPSBpbnNlcnQgaW50byBDSUQzMF9KUCAoIEJM RUlfQklMTF9MRVZFTCwgQkxFSV9MU1RfVExfRFVFX0RULA0KICAgICAgICAg QkxFSV9MQVNUX0JJTExfRFRNLCBCTEVJX0xTVF9CTF9FTkRfRFQsIEJMRUlf U1VTUE5EX0JMX0lORCwNCiAgICAgICAgIEdSR1JfSUQsIFNHU0dfSUQsIFNC U0JfSUQgKSBzZWxlY3QgJ0knLCBCTEVJLkJMRUlfTFNUX1RMX0RVRV9EVCwN CiAgICAgICAgIEJMRUkuQkxFSV9MQVNUX0JJTExfRFRNLCBCTEVJLkJMRUlf TFNUX0JMX0VORF9EVCwNCiAgICAgICAgIEJMRUkuQkxFSV9TVVNQTkRfQkxf SU5ELCBHUkdSLkdSR1JfSUQsIG51bGwgLCBTQlNCLlNCU0JfSUQgZnJvbQ0K ICAgICAgICAgZmFkZnlpbjEuLkNNQ19CTEVJX0VOVFlfSU5GTyAgICAgIEJM RUksIGZhZGZ5aW4xLi5DTUNfR1JHUl9HUk9VUA0KICAgICAgICAgICAgICAg R1JHUiwgZmFkZnlpbjEuLkNNQ19TQlNCX1NVQlNDICAgICAgICAgIFNCU0Ig d2hlcmUNCiAgICAgICAgIEJMRUkuQkxFSV9CSUxMX0xFVkVMX0NLICA9ICAg U0JTQi5TQlNCX0NLIGFuZCBTQlNCLkdSR1JfQ0sNCiAgICAgICAgICAgID0g ICBHUkdSLkdSR1JfQ0sgYW5kIEJMRUkuQkxFSV9CSUxMX0xFVkVMICAgICA9 ICAgJ0knIGFuZA0KICAgICAgICAgQkxFSS5CTEVJX1NVU1BORF9CTF9JTkQg aW4gKCdCJywnRCcsJ1MnKSB1bmlvbiBzZWxlY3QgJ0cnLA0KICAgICAgICAg QkxFSS5CTEVJX0xTVF9UTF9EVUVfRFQsIEJMRUkuQkxFSV9MQVNUX0JJTExf RFRNLA0KICAgICAgICAgQkxFSS5CTEVJX0xTVF9CTF9FTkRfRFQsIEJMRUku QkxFSV9TVVNQTkRfQkxfSU5ELCBHUkdSLkdSR1JfSUQsDQogICAgICAgICBT R1NHLlNHU0dfSUQsIG51bGwgZnJvbSBmYWRmeWluMS4uQ01DX0JMRUlfRU5U WV9JTkZPICAgICAgQkxFSSwNCiAgICAgICAgIGZhZGZ5aW4xLi5DTUNfR1JH Ul9HUk9VUCAgICAgIEdSR1IsIGZhZGZ5aW4xLi5DTUNfU0dTR19TVUJfR1JP VVANCiAgICAgICAgIFNHU0cgd2hlcmUgQkxFSS5CTEVJX0JJTExfTEVWRUxf Q0sgPSAgIFNHU0cuU0dTR19DSyBhbmQNCiAgICAgICAgIFNHU0cuR1JHUl9D SyAgICAgICAgICAgID0gICBHUkdSLkdSR1JfQ0sgYW5kIEJMRUkuQkxFSV9C SUxMX0xFVkVMDQogICAgICAgICAgPSAgICdTJyBhbmQgQkxFSS5CTEVJX1NV U1BORF9CTF9JTkQgaW4gKCdCJywnRCcsJ1MnKSB1bmlvbiBzZWxlY3QNCiAg ICAgICAgICdHJywgQkxFSS5CTEVJX0xTVF9UTF9EVUVfRFQsIEJMRUkuQkxF SV9MQVNUX0JJTExfRFRNLA0KICAgICAgICAgQkxFSS5CTEVJX0xTVF9CTF9F TkRfRFQsIEJMRUkuQkxFSV9TVVNQTkRfQkxfSU5ELCBHUkdSLkdSR1JfSUQs DQogICAgICAgICBudWxsLCBudWxsIGZyb20gZmFkZnlpbjEuLkNNQ19CTEVJ X0VOVFlfSU5GTyAgICAgIEJMRUksDQogICAgICAgICBmYWRmeWluMS4uQ01D X0dSR1JfR1JPVVAgICAgICAgICAgR1JHUiB3aGVyZQ0KICAgICAgICAgQkxF SS5CTEVJX0JJTExfTEVWRUxfQ0sgPSAgIEdSR1IuR1JHUl9DSyBhbmQgQkxF SS5CTEVJX0JJTExfTEVWRUwNCiAgICAgICAgICA9ICAgJ0cnIGFuZCBCTEVJ LkJMRUlfU1VTUE5EX0JMX0lORCBpbiAoJ0InLCdEJywnUycpDQogQ29tcGls ZXMgPSAxDQogRXhlY3V0ZXMgPSAxDQogUm93cyAgICAgPSAzNTQNCg0KIEN1 cnNvciAjNzoNCiAgIFNRTCA9IFNFTEVDVCBCTFNVLkJMRUlfQklMTF9MRVZF TCwgQkxTVS5CTEVJX1NVU1BORF9CTF9JTkQsIEJMU1UuR1JHUl9JRCwNCiAg ICAgICAgIEJMU1UuU0dTR19JRCwgQkxTVS5TQlNCX0lELA0KICAgICAgICAg Y29udmVydChjaGFyKDEwKSxCTFNVLkJMRUlfTFNUX1RMX0RVRV9EVCwxMDEp LA0KICAgICAgICAgY29udmVydChjaGFyKDEwKSxCTFNVLkJMRUlfTEFTVF9C SUxMX0RUTSwxMDEpLA0KICAgICAgICAgY29udmVydChjaGFyKDEwKSxCTFNV LkJMRUlfTFNUX0JMX0VORF9EVCwxMDEpICBmcm9tIFJQVC4uQ0lEMzBfSlAN CiAgICAgICAgICAgQkxTVSBvcmRlciBieSBCTFNVLkJMRUlfQklMTF9MRVZF TCwgQkxTVS5CTEVJX1NVU1BORF9CTF9JTkQsDQogICAgICAgICBCTFNVLkdS R1JfSUQsIEJMU1UuU0dTR19JRCwgQkxTVS5TQlNCX0lEDQogQ29tcGlsZXMg PSAxDQogRXhlY3V0ZXMgPSAxDQogUm93cyAgICAgPSAwDQoNCiBDdXJzb3Ig Izg6DQogICBTUUwgPSBkcm9wIHRhYmxlIFJQVC4uQ0lEMzBfSlANCiBDb21w aWxlcyA9IDENCiBFeGVjdXRlcyA9IDENCiBSb3dzICAgICA9IDANCg0KDQpT UVI6IEVuZCBvZiBSdW4u ------=_Part_8301_4897302.1192041860710 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------=_Part_8301_4897302.1192041860710-- From sqr-users-bounces@sqrug.org Wed Oct 10 15:20:11 2007 From: the dragon Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 14:17:15 -0500 I'd love to do that - it would be the first time I have something that I kn= ow enough that I could add that isn't there already... =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > We should add this history to the= Wikipedia article about SQR.> > -----Original Message-----> > Written by a= guy Israel Stern...right? > > Wes Williams> Manager Facilities Mgt. System= s> Princeton University> 609-258-7027> 609-468-6344> > -----Original Messag= e-----> > You go back farther than I. thx > > -----Original Message-----> >= > Actually, I believe SQR started as a Sybase tool, then was owned by MITI= > (v2 and 3) which became SQRibe.> > peace,> clark 'the dragon'=20 _________________________________________________________________ Windows Live Hotmail and Microsoft Office Outlook =96 together at last. =A0= Get it now. http://office.microsoft.com/en-us/outlook/HA102225181033.aspx?pid=3DCL10062= 6971033 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 15:41:09 2007 From: franck.masson2002@laposte.net Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX Date: Wed, 10 Oct 2007 21:37:56 +0200 (CEST) what happen if you add a commit statement after the Insert and before the s= elect statement ? > Message du 10/10/07 20:47 > De : "maddy"=20 > A : "the dragon"=20 > Copie =C3=A0 : "This list is for discussion about the SQR database report= ing language from Hyperion Solutions."=20 > Objet : Re: [sqr-users] Challenging issue with Brio SQR in UNIX > > Hi dragon, >=20 > Thanks for your quick response.By mistake I had sent you the wrong > file with Cursor information. Please take a look at the new file > attached. >=20 >=20 > Thanks, > Maddy >=20 >=20 >=20 > On 10/10/07, the dragon wrote: > > The sqr failed to make it through, but the -s looks to me like it is wo= rking > > correctly - 354 rows are inserted, and 354 are selected afterwards. I g= uess > > my question is what makes you think it isn't working? > > > > peace, > > clark 'the dragon' willis > > > > PSA: Salary <> Slavery. If you earn a salary, your employer is renting = your > > services for 40 hours a week, not purchasing your soul. Your time is the > > only real finite asset that you have, and once used it can never be > > recovered, so don't waste it by giving it away. > > > > I work to live; I don't live to work. > > > > "Time is the coin of your life. It is the only coin you have, and only = you > > can determine how it will be spent. Be careful lest you let other people > > spend it for you." -- Carl Sandburg (1878 - 1967) > > > > It is impossible to defeat an ignorant man in argument. -- William G. M= cAdoo > > > > Religion is regarded by the common people as true, by the wise as false= , and > > by the rulers as useful. -- Seneca > > > > "I distrust those people who know so well what God wants them to do bec= ause > > I notice it always coincides with their own desires." - Susan B. Anthony > > > > > > > > Hi, > > > > > > I have tried all the various things mentioned in the chain of emails > > > but still have the same issue. The issue is with commit statement but > > > not sure why it is not working with ORDER BY clause in the SELECT > > > statement. > > > > > > Please take a look at the attached SQR program and the cursor > > > information when compiled with -S flag. > > > > > > > > > Thanks!! > > > Maddy > > > > > > > > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDire= ct > > 5.1 > > > Database : Sybase 12.5 > > > > > > On 10/9/07, George Jansen wrote: > > > > It strikes me that an ORDER BY clause means sorting, sorting means = the > > use of temporary space, and this could be limited. > > > > > > > > As for the location, are you using Oracle? With Oracle you could un= der > > some circumstances be connecting through a shared server (sorting in the > > shared pool) and in others connecting through a dedicated server. > > > > > > > > >>> maddy 10/4/2007 6:01 PM >>> > > > > Hi, > > > > > > > > We have a strange problem with all the Brio SQR Programs executing = under > > > > UNIX environment.All these programs are working fine and giving data > > when > > > > executed in windows environment and giving no data in UNIX envirome= nt. > > > > > > > > We are creating a temp table and inserting data in the SQR program = but > > > > unable to Select the data from the same table and print it on to the > > > > report.However when the ORDER BY clause in the select statement is > > commented > > > > out, data is pulled on to the report. > > > > > > > > If I run the same program again without droping and creating the ta= ble > > we > > > > get the data from the table even with ORDER BY clause which is stra= nge. > > > > How can a ORDER BY clause in the SELECT statement cause this kind of > > issue > > > > ? I can send the skeleton program if any of the experts can look in= to > > this > > > > issue. > > > > > > > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > > > > > > > Thanks, > > > > Maddy > > > > > > > > > > ________________________________ > > Help yourself to FREE treats served up daily at the Messenger Caf=C3=A9= . Stop by > > today! > > > [ CID30_Cursor_Info.txt (4.3 Ko) ] > [ (pas de nom de fichier) (0.1 Ko) ] Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 16:59:39 2007 Date: Wed, 10 Oct 2007 15:51:11 -0500 From: "Leonard, Kyle" Subject: [sqr-users] SQRP v9.3 return code of 3 Can anyone point me to a list of what the various command line return values mean? =20 We are issuing a CALL command to run SQRP and it is failing. Debugging efforts have failed. Our last clue is the return value of '3' =20 Thanks Kyle =20 The information contained in this message and any attachments is intended o= nly for the use of the individual or entity to which it is addressed, and m= ay contain information that is PRIVILEGED, CONFIDENTIAL, and exempt from di= sclosure under applicable law. If you are not the intended recipient, you = are prohibited from copying, distributing, or using the information. Pleas= e contact the sender immediately by return e-mail and delete the original m= essage from your system. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 17:05:38 2007 From: "Peter Burton" Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 16:58:24 -0400 Incorrect, SQR was originally written as a replacement for Oracle RPT and = RPF tools many, many, years ago.=20 Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of the dragon Sent: Wednesday, October 10, 2007 2:18 PM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Actually, I believe SQR started as a Sybase tool, then was owned by MITI (v= 2 and 3) which became SQRibe. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > Brio is now owned by Oracle. The = last time a dug about the brio site,> there was printed documentation manua= ls for sale, but that was about 3-4> years ago, prior to purchase by Oracle= .> > FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it w= as> known as "SQR Server". That was when it was verion 4.x. It then was> pu= rchased by Brio Technology and renamed "Brio Report" It was version> 6.x th= en and I believe also 7.x. Then Hyperion purchased it and tried> to rename = it something else, but users kept calling it "Brio" and SQR.> About a year = or so go Oracle bought it and re-instated the more familiar> names.> -Steve= Jones > > -----Original Message-----> > Contact whoever it is that now own= s SQR (Brio?). If they don't have> them, just Kinko them.> > - jej1216> > -= ---- Original Message -----> From: "Jean Myles" > To= : > Sent: Wednesday, October 10, 2007 10:50 AM> Subjec= t: [sqr-users] SQR Tecnical Documentation> > > We are trying to locate a ha= rd copy of the SQR Technical Documentation> > > (mostly the language refere= nce guide and designing reports with sqr> > developer) for the latest versi= on of SQR. We can download the PDF's. > > but would like to know if a hard = copy exists or if you would have any > > other documentation recommendation= s.> >> >> >> > Thanks in advance for the information.> >> >> >> > Jean Myle= s> >> > Information Management Specialist> >> > Fashion Institute of Techno= logy> >> > P: 212-217-3440> >> > F: 212-217-3452> >> > E: jean_myles@fitnyc.edu> >> > _________________________________= ______________> > sqr-users mailing list> > sqr-users@sqrug.org> > http://w= ww.sqrug.org/mailman/listinfo/sqr-users> > > > ____________________________= ___________________> sqr-users mailing list> sqr-users@sqrug.org> http://ww= w.sqrug.org/mailman/listinfo/sqr-users> > > > _____________________________= __________________> sqr-users mailing list> sqr-users@sqrug.org> http://www= .sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=3DTXT_TAGHM&loc=3Dus _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 17:11:52 2007 Subject: RE: [sqr-users] SQRP v9.3 return code of 3 Date: Wed, 10 Oct 2007 16:09:01 -0500 From: "Bob Stone" it should be the return code for the command line for the System you're calling on. So check with you windows/unix admins about command line return codes for whatever machine you're running on. -----Original Message----- From: sqr-users-bounces+bstone=3Dfastenal.com@sqrug.org [mailto:sqr-users-bounces+bstone=3Dfastenal.com@sqrug.org] On Behalf Of Leonard, Kyle Sent: Wednesday, October 10, 2007 3:51 PM To: This list is for discussion about the SQR database reportinglanguage from Hyperion Solutions. Subject: [sqr-users] SQRP v9.3 return code of 3 Can anyone point me to a list of what the various command line return values mean? =20 We are issuing a CALL command to run SQRP and it is failing. Debugging efforts have failed. Our last clue is the return value of '3' =20 Thanks Kyle =20 The information contained in this message and any attachments is intended only for the use of the individual or entity to which it is addressed, and may contain information that is PRIVILEGED, CONFIDENTIAL, and exempt from disclosure under applicable law. If you are not the intended recipient, you are prohibited from copying, distributing, or using the information. Please contact the sender immediately by return e-mail and delete the original message from your system. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 17:19:01 2007 Date: Wed, 10 Oct 2007 15:15:09 -0600 From: jwillson@dssltd.com Subject: [sqr-users] SQR & BI Publisher &/OR XML Publisher Hi, has any one made a comparison among these tools or languages? How about SQR using JAVA in place of C under the wraps? Any input welcome. John Willson http://www.dssltd.com/ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 18:01:31 2007 Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 17:58:10 -0400 From: Go ahead, pls.=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of Alexander, Steven Sent: Wednesday, October 10, 2007 11:36 AM To: 'This list is for discussion about the SQR database reportinglanguagefrom Hyperion Solutions.' Subject: RE: [sqr-users] SQR Tecnical Documentation We should add this history to the Wikipedia article about SQR. -----Original Message----- From: sqr-users-bounces+steven.alexander=3Dsanjoseca.gov@sqrug.org [mailto:sqr-users-bounces+steven.alexander=3Dsanjoseca.gov@sqrug.org] On Behalf Of Wes Williams Sent: Wednesday, October 10, 2007 11:29 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Written by a guy Israel Stern...right?=20 Wes Williams Manager Facilities Mgt. Systems Princeton University 609-258-7027 609-468-6344 -----Original Message----- From: sqr-users-bounces+wes=3Dprinceton.edu@sqrug.org [mailto:sqr-users-bounces+wes=3Dprinceton.edu@sqrug.org] On Behalf Of Jones.Steven@ups-scs.com Sent: Wednesday, October 10, 2007 2:24 PM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR Tecnical Documentation You go back farther than I. thx=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of the dragon Sent: Wednesday, October 10, 2007 11:18 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR Tecnical Documentation Actually, I believe SQR started as a Sybase tool, then was owned by MITI (v2 and 3) which became SQRibe. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Brio is now owned by Oracle. The last time a dug about the brio site,> there was printed documentation manuals for sale, but that was about 3-4> years ago, prior to purchase by Oracle.> > FYI, Brio sqr started out as SQRIBE, by Sqribe Technologies where it was> known as "SQR Server". That was when it was verion 4.x. It then was> purchased by Brio Technology and renamed "Brio Report" It was version> 6.x then and I believe also 7.x. Then Hyperion purchased it and tried> to rename it something else, but users kept calling it "Brio" and SQR.> About a year or so go Oracle bought it and re-instated the more familiar> names.> -Steve Jones > > -----Original Message-----> > Contact whoever it is that now owns SQR (Brio?). If they don't have> them, just Kinko them.> > - jej1216> > ----- Original Message -----> From: "Jean Myles" > To: > Sent: Wednesday, October 10, 2007 10:50 AM> Subject: [sqr-users] SQR Tecnical Documentation> > > We are trying to locate a hard copy of the SQR Technical Documentation> > > (mostly the language reference guide and designing reports with sqr> > developer) for the latest version of SQR. We can download the PDF's. > > but would like to know if a hard copy exists or if you would have any > > other documentation recommendations.> >> >> >> > Thanks in advance for the information.> >> >> >> > Jean Myles> >> > Information Management Specialist> >> > Fashion Institute of Technology> >> > P: 212-217-3440> >> > F: 212-217-3452> >> > E: jean_myles@fitnyc.edu> >> > _______________________________________________> > sqr-users mailing list> > sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > > > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=3DTXT_TAGHM&loc=3Dus _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 18:13:25 2007 From: the dragon Subject: RE: [sqr-users] SQR Tecnical Documentation Date: Wed, 10 Oct 2007 17:08:01 -0500 It looks like the correct history is already there... =20 SQ Software created SQR in the mid 1980s. It had a marketing agreement with= D & N Systems, which changed its name to SQL Solutions and was later acqui= red by Sybase Inc. Sybase purchased SQ Software in the early 1990s. To avoi= d competing directly with Oracle Corporation, Sybase had a marketing and de= velopment agreement with MITI for the Oracle database versions of SQR. MITI= acquired the full rights to SQR in the mid 1990s. MITI changed its name to= SQRiBE Technologies in 1997. Brio Technology acquired SQRiBE in August, 19= 99. Brio Technology later changed its name to Brio Software. Brio licensed = the compiler source code to PeopleSoft Inc. sometime around 2000. Hyperion = Solutions Corporation acquired Brio Software in October, 2003. Oracle Corpo= ration acquired PeopleSoft in December, 2004. And as of March 2007 Oracle C= orporation has acquired Hyperion Solutions, thus reuniting SQR with PeopleS= oft. =20 http://en.wikipedia.org/wiki/SQR =20 peace, clarkPSA: Salary <> Slavery. If you earn a salary, your employer is renting= your services for 40 hours a week, not purchasing your soul. Your time is = the only real finite asset that you have, and once used it can never be rec= overed, so don't waste it by giving it away. I work to live; I don't live t= o work. "Time is the coin of your life. It is the only coin you have, and o= nly you can determine how it will be spent. Be careful lest you let other p= eople spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to= defeat an ignorant man in argument. -- William G. McAdoo Religion is regar= ded by the common people as true, by the wise as false, and by the rulers a= s useful. -- Seneca "I distrust those people who know so well what God want= s them to do because I notice it always coincides with their own desires." = - Susan B. Anthony> > Go ahead, pls. > > -----Original Message-----> > We s= hould add this history to the Wikipedia article about SQR.> > -----Original= Message-----> > Written by a guy Israel Stern...right? > > Wes Williams> M= anager Facilities Mgt. Systems> Princeton University> 609-258-7027> 609-468= -6344> > -----Original Message-----> > You go back farther than I. thx > > = -----Original Message-----> > > Actually, I believe SQR started as a Sybase= tool, then was owned by MITI> (v2 and 3) which became SQRibe.> > peace,> c= lark 'the dragon'=20 _________________________________________________________________ Windows Live Hotmail and Microsoft Office Outlook =96 together at last. =A0= Get it now. http://office.microsoft.com/en-us/outlook/HA102225181033.aspx?pid=3DCL10062= 6971033 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 10 18:22:19 2007 Date: Wed, 10 Oct 2007 18:19:20 -0400 From: maddy Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX I have tried adding commit statements before and after each query and still see the same issue. On 10/10/07, franck.masson2002@laposte.net wrote: > what happen if you add a commit statement after the Insert and before the= select statement ? > > > > > > > Message du 10/10/07 20:47 > > De : "maddy" > > A : "the dragon" > > Copie =E0 : "This list is for discussion about the SQR database reporti= ng language from Hyperion Solutions." > > Objet : Re: [sqr-users] Challenging issue with Brio SQR in UNIX > > > > Hi dragon, > > > > Thanks for your quick response.By mistake I had sent you the wrong > > file with Cursor information. Please take a look at the new file > > attached. > > > > > > Thanks, > > Maddy > > > > > > > > On 10/10/07, the dragon wrote: > > > The sqr failed to make it through, but the -s looks to me like it is = working > > > correctly - 354 rows are inserted, and 354 are selected afterwards. I= guess > > > my question is what makes you think it isn't working? > > > > > > peace, > > > clark 'the dragon' willis > > > > > > PSA: Salary <> Slavery. If you earn a salary, your employer is rentin= g your > > > services for 40 hours a week, not purchasing your soul. Your time is = the > > > only real finite asset that you have, and once used it can never be > > > recovered, so don't waste it by giving it away. > > > > > > I work to live; I don't live to work. > > > > > > "Time is the coin of your life. It is the only coin you have, and onl= y you > > > can determine how it will be spent. Be careful lest you let other peo= ple > > > spend it for you." -- Carl Sandburg (1878 - 1967) > > > > > > It is impossible to defeat an ignorant man in argument. -- William G.= McAdoo > > > > > > Religion is regarded by the common people as true, by the wise as fal= se, and > > > by the rulers as useful. -- Seneca > > > > > > "I distrust those people who know so well what God wants them to do b= ecause > > > I notice it always coincides with their own desires." - Susan B. Anth= ony > > > > > > > > > > > Hi, > > > > > > > > I have tried all the various things mentioned in the chain of emails > > > > but still have the same issue. The issue is with commit statement b= ut > > > > not sure why it is not working with ORDER BY clause in the SELECT > > > > statement. > > > > > > > > Please take a look at the attached SQR program and the cursor > > > > information when compiled with -S flag. > > > > > > > > > > > > Thanks!! > > > > Maddy > > > > > > > > > > > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDi= rect > > > 5.1 > > > > Database : Sybase 12.5 > > > > > > > > On 10/9/07, George Jansen wrote: > > > > > It strikes me that an ORDER BY clause means sorting, sorting mean= s the > > > use of temporary space, and this could be limited. > > > > > > > > > > As for the location, are you using Oracle? With Oracle you could = under > > > some circumstances be connecting through a shared server (sorting in = the > > > shared pool) and in others connecting through a dedicated server. > > > > > > > > > > >>> maddy 10/4/2007 6:01 PM >>> > > > > > Hi, > > > > > > > > > > We have a strange problem with all the Brio SQR Programs executin= g under > > > > > UNIX environment.All these programs are working fine and giving d= ata > > > when > > > > > executed in windows environment and giving no data in UNIX enviro= ment. > > > > > > > > > > We are creating a temp table and inserting data in the SQR progra= m but > > > > > unable to Select the data from the same table and print it on to = the > > > > > report.However when the ORDER BY clause in the select statement is > > > commented > > > > > out, data is pulled on to the report. > > > > > > > > > > If I run the same program again without droping and creating the = table > > > we > > > > > get the data from the table even with ORDER BY clause which is st= range. > > > > > How can a ORDER BY clause in the SELECT statement cause this kind= of > > > issue > > > > > ? I can send the skeleton program if any of the experts can look = into > > > this > > > > > issue. > > > > > > > > > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > > > > > > > > > Thanks, > > > > > Maddy > > > > > > > > > > > > > > ________________________________ > > > Help yourself to FREE treats served up daily at the Messenger Caf=E9.= Stop by > > > today! > > > > > [ CID30_Cursor_Info.txt (4.3 Ko) ] > > [ (pas de nom de fichier) (0.1 Ko) ] > > Cr=E9ez votre adresse =E9lectronique pr=E9nom.nom@laposte.net > 1 Go d'espace de stockage, anti-spam et anti-virus int=E9gr=E9s. > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 11 09:10:19 2007 Date: Thu, 11 Oct 2007 08:54:14 -0400 From: "Barilleaux, Rebecca" Subject: [sqr-users] RE: sqr-users Digest, Vol 44, Issue 5 This is just a shot in the dark, but I noticed that you are creating & inse= rting into CID30_JP and selecting from RPT..CID30_JP. Is it possible the t= able is being created in some other database besides RPT? Like maybe tempd= b? What happens if you leave off the RPT.. From the select statement, or a= dd it to your create table & insert statements? Thanks, Rebecca -----Original Message----- Date: Wed, 10 Oct 2007 14:44:20 -0400 From: maddy Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX To: "the dragon" Cc: "This list is for discussion about the SQR database reporting language from Hyperion Solutions." Message-ID: Content-Type: text/plain; charset=3D"iso-8859-1" Hi dragon, Thanks for your quick response.By mistake I had sent you the wrong file with Cursor information. Please take a look at the new file attached. Thanks, Maddy On 10/10/07, the dragon wrote: > The sqr failed to make it through, but the -s looks to me like it is work= ing > correctly - 354 rows are inserted, and 354 are selected afterwards. I gu= ess > my question is what makes you think it isn't working? > > peace, > clark 'the dragon' willis > > PSA: Salary <> Slavery. If you earn a salary, your employer is renting yo= ur > services for 40 hours a week, not purchasing your soul. Your time is the > only real finite asset that you have, and once used it can never be > recovered, so don't waste it by giving it away. > > I work to live; I don't live to work. > > "Time is the coin of your life. It is the only coin you have, and only you > can determine how it will be spent. Be careful lest you let other people > spend it for you." -- Carl Sandburg (1878 - 1967) > > It is impossible to defeat an ignorant man in argument. -- William G. McA= doo > > Religion is regarded by the common people as true, by the wise as false, = and > by the rulers as useful. -- Seneca > > "I distrust those people who know so well what God wants them to do becau= se > I notice it always coincides with their own desires." - Susan B. Anthony > > > > > Hi, > > > > I have tried all the various things mentioned in the chain of emails > > but still have the same issue. The issue is with commit statement but > > not sure why it is not working with ORDER BY clause in the SELECT > > statement. > > > > Please take a look at the attached SQR program and the cursor > > information when compiled with -S flag. > > > > > > Thanks!! > > Maddy > > > > > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDirect > 5.1 > > Database : Sybase 12.5 > > > > On 10/9/07, George Jansen wrote: > > > It strikes me that an ORDER BY clause means sorting, sorting means the > use of temporary space, and this could be limited. > > > > > > As for the location, are you using Oracle? With Oracle you could under > some circumstances be connecting through a shared server (sorting in the > shared pool) and in others connecting through a dedicated server. > > > > > > >>> maddy 10/4/2007 6:01 PM >>> > > > Hi, > > > > > > We have a strange problem with all the Brio SQR Programs executing un= der > > > UNIX environment.All these programs are working fine and giving data > when > > > executed in windows environment and giving no data in UNIX enviroment. > > > > > > We are creating a temp table and inserting data in the SQR program but > > > unable to Select the data from the same table and print it on to the > > > report.However when the ORDER BY clause in the select statement is > commented > > > out, data is pulled on to the report. > > > > > > If I run the same program again without droping and creating the table > we > > > get the data from the table even with ORDER BY clause which is strang= e. > > > How can a ORDER BY clause in the SELECT statement cause this kind of > issue > > > ? I can send the skeleton program if any of the experts can look into > this > > > issue. > > > > > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > > > > > Thanks, > > > Maddy > > > > > > ________________________________ > Help yourself to FREE treats served up daily at the Messenger Caf=E9. Sto= p by > today! -------------- next part -------------- Cursor Status: Cursor #1: SQL =3D commit transaction Compiles =3D 1 Executes =3D 1 Rows =3D 0 Cursor #2: SQL =3D if exists(select 1 from sysobjects where name =3D'CID30_JP'and type=3D'U') begin drop table CID30_JP end Compiles =3D 1 Executes =3D 1 Rows =3D 0 Cursor #3: SQL =3D create table CID30_JP ( BLEI_BILL_LEVEL char(1) null, BLEI_LST_TL_DUE_DT datetime null, BLEI_LAST_BILL_DTM datetime null, BLEI_LST_BL_END_DT datetime null, BLEI_SUSPND_BL_IND char(1) null, GRGR_ID char(8) null, SGSG_ID char(4) null, SBSB_ID char(9) null ) Compiles =3D 1 Executes =3D 1 Rows =3D 0 Cursor #4: SQL =3D commit transaction Compiles =3D 1 Executes =3D 1 Rows =3D 0 Cursor #5: SQL =3D {call RPT..BERSP_EVENT_STEP_INSERT(?,?,?,?)} Compiles =3D 0 Executes =3D 4 Rows =3D 0 Cursor #6: SQL =3D insert into CID30_JP ( BLEI_BILL_LEVEL, BLEI_LST_TL_DUE_DT, BLEI_LAST_BILL_DTM, BLEI_LST_BL_END_DT, BLEI_SUSPND_BL_IND, GRGR_ID, SGSG_ID, SBSB_ID ) select 'I', BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, null , SBSB.SBSB_ID from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, fadfyin1..CMC_GRGR_GROUP GRGR, fadfyin1..CMC_SBSB_SUBSC SBSB where BLEI.BLEI_BILL_LEVEL_CK =3D SBSB.SBSB_CK and SBSB.GRGR_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEVEL =3D 'I' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') union select 'G', BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, SGSG.SGSG_ID, null from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, fadfyin1..CMC_GRGR_GROUP GRGR, fadfyin1..CMC_SGSG_SUB_GROUP SGSG where BLEI.BLEI_BILL_LEVEL_CK =3D SGSG.SGSG_CK and SGSG.GRGR_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEVEL =3D 'S' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') union sele= ct 'G', BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, null, null from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, fadfyin1..CMC_GRGR_GROUP GRGR where BLEI.BLEI_BILL_LEVEL_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEVEL =3D 'G' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') Compiles =3D 1 Executes =3D 1 Rows =3D 354 Cursor #7: SQL =3D SELECT BLSU.BLEI_BILL_LEVEL, BLSU.BLEI_SUSPND_BL_IND, BLSU.GRGR_= ID, BLSU.SGSG_ID, BLSU.SBSB_ID, convert(char(10),BLSU.BLEI_LST_TL_DUE_DT,101), convert(char(10),BLSU.BLEI_LAST_BILL_DTM,101), convert(char(10),BLSU.BLEI_LST_BL_END_DT,101) from RPT..CID30_JP BLSU order by BLSU.BLEI_BILL_LEVEL, BLSU.BLEI_SUSPND_BL_IND, BLSU.GRGR_ID, BLSU.SGSG_ID, BLSU.SBSB_ID Compiles =3D 1 Executes =3D 1 Rows =3D 0 Cursor #8: SQL =3D drop table RPT..CID30_JP Compiles =3D 1 Executes =3D 1 Rows =3D 0 SQR: End of Run. ------------------------------ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users CONFIDENTIALITY NOTICE: This e-mail message, including any attachments,=20 is for the sole use of the intended recipient(s) and may contain confidenti= al and privileged information or otherwise protected by law. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 11 09:46:37 2007 Date: Thu, 11 Oct 2007 09:43:33 -0400 From: maddy Subject: Re: [sqr-users] RE: sqr-users Digest, Vol 44, Issue 5 Thanks Rebecca, there is nothing wrong in the program and we have tried everything. Actually 4 senior developers are working on this issue and also opened a ticket with Hyperion on this issue. Thanks, Maddy On 10/11/07, Barilleaux, Rebecca wrote: > This is just a shot in the dark, but I noticed that you are creating & in= serting into CID30_JP and selecting from RPT..CID30_JP. Is it possible the= table is being created in some other database besides RPT? Like maybe tem= pdb? What happens if you leave off the RPT.. From the select statement, or= add it to your create table & insert statements? > > Thanks, > Rebecca > > -----Original Message----- > Date: Wed, 10 Oct 2007 14:44:20 -0400 > From: maddy > Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX > To: "the dragon" > Cc: "This list is for discussion about the SQR database reporting > language from Hyperion Solutions." > Message-ID: > > Content-Type: text/plain; charset=3D"iso-8859-1" > > Hi dragon, > > Thanks for your quick response.By mistake I had sent you the wrong > file with Cursor information. Please take a look at the new file > attached. > > > Thanks, > Maddy > > > > On 10/10/07, the dragon wrote: > > The sqr failed to make it through, but the -s looks to me like it is wo= rking > > correctly - 354 rows are inserted, and 354 are selected afterwards. I = guess > > my question is what makes you think it isn't working? > > > > peace, > > clark 'the dragon' willis > > > > PSA: Salary <> Slavery. If you earn a salary, your employer is renting = your > > services for 40 hours a week, not purchasing your soul. Your time is the > > only real finite asset that you have, and once used it can never be > > recovered, so don't waste it by giving it away. > > > > I work to live; I don't live to work. > > > > "Time is the coin of your life. It is the only coin you have, and only = you > > can determine how it will be spent. Be careful lest you let other people > > spend it for you." -- Carl Sandburg (1878 - 1967) > > > > It is impossible to defeat an ignorant man in argument. -- William G. M= cAdoo > > > > Religion is regarded by the common people as true, by the wise as false= , and > > by the rulers as useful. -- Seneca > > > > "I distrust those people who know so well what God wants them to do bec= ause > > I notice it always coincides with their own desires." - Susan B. Anthony > > > > > > > > Hi, > > > > > > I have tried all the various things mentioned in the chain of emails > > > but still have the same issue. The issue is with commit statement but > > > not sure why it is not working with ORDER BY clause in the SELECT > > > statement. > > > > > > Please take a look at the attached SQR program and the cursor > > > information when compiled with -S flag. > > > > > > > > > Thanks!! > > > Maddy > > > > > > > > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDire= ct > > 5.1 > > > Database : Sybase 12.5 > > > > > > On 10/9/07, George Jansen wrote: > > > > It strikes me that an ORDER BY clause means sorting, sorting means = the > > use of temporary space, and this could be limited. > > > > > > > > As for the location, are you using Oracle? With Oracle you could un= der > > some circumstances be connecting through a shared server (sorting in the > > shared pool) and in others connecting through a dedicated server. > > > > > > > > >>> maddy 10/4/2007 6:01 PM >>> > > > > Hi, > > > > > > > > We have a strange problem with all the Brio SQR Programs executing = under > > > > UNIX environment.All these programs are working fine and giving data > > when > > > > executed in windows environment and giving no data in UNIX envirome= nt. > > > > > > > > We are creating a temp table and inserting data in the SQR program = but > > > > unable to Select the data from the same table and print it on to the > > > > report.However when the ORDER BY clause in the select statement is > > commented > > > > out, data is pulled on to the report. > > > > > > > > If I run the same program again without droping and creating the ta= ble > > we > > > > get the data from the table even with ORDER BY clause which is stra= nge. > > > > How can a ORDER BY clause in the SELECT statement cause this kind of > > issue > > > > ? I can send the skeleton program if any of the experts can look in= to > > this > > > > issue. > > > > > > > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > > > > > > > Thanks, > > > > Maddy > > > > > > > > > > ________________________________ > > Help yourself to FREE treats served up daily at the Messenger Caf=E9. S= top by > > today! > -------------- next part -------------- > Cursor Status: > > Cursor #1: > SQL =3D commit transaction > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #2: > SQL =3D if exists(select 1 from sysobjects where name =3D'CID30_JP'and > type=3D'U') begin drop table CID30_JP end > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #3: > SQL =3D create table CID30_JP ( BLEI_BILL_LEVEL char(1) null, > BLEI_LST_TL_DUE_DT datetime null, BLEI_LAST_BILL_DTM datetime > null, BLEI_LST_BL_END_DT datetime null, BLEI_SUSPND_BL_IND > char(1) null, GRGR_ID char(8) null, SGSG_ID > char(4) null, SBSB_ID char(9) null ) > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #4: > SQL =3D commit transaction > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #5: > SQL =3D {call RPT..BERSP_EVENT_STEP_INSERT(?,?,?,?)} > Compiles =3D 0 > Executes =3D 4 > Rows =3D 0 > > > Cursor #6: > SQL =3D insert into CID30_JP ( BLEI_BILL_LEVEL, BLEI_LST_TL_DUE_DT, > BLEI_LAST_BILL_DTM, BLEI_LST_BL_END_DT, BLEI_SUSPND_BL_IND, > GRGR_ID, SGSG_ID, SBSB_ID ) select 'I', BLEI.BLEI_LST_TL_DUE_DT, > BLEI.BLEI_LAST_BILL_DTM, BLEI.BLEI_LST_BL_END_DT, > BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, null , SBSB.SBSB_ID from > fadfyin1..CMC_BLEI_ENTY_INFO BLEI, fadfyin1..CMC_GRGR_GROUP > GRGR, fadfyin1..CMC_SBSB_SUBSC SBSB where > BLEI.BLEI_BILL_LEVEL_CK =3D SBSB.SBSB_CK and SBSB.GRGR_CK > =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEVEL =3D 'I' and > BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') union select 'G', > BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, > BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, > SGSG.SGSG_ID, null from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, > fadfyin1..CMC_GRGR_GROUP GRGR, fadfyin1..CMC_SGSG_SUB_GROUP > SGSG where BLEI.BLEI_BILL_LEVEL_CK =3D SGSG.SGSG_CK and > SGSG.GRGR_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEV= EL > =3D 'S' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') union sel= ect > 'G', BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, > BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, > null, null from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, > fadfyin1..CMC_GRGR_GROUP GRGR where > BLEI.BLEI_BILL_LEVEL_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEV= EL > =3D 'G' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') > Compiles =3D 1 > Executes =3D 1 > Rows =3D 354 > > Cursor #7: > SQL =3D SELECT BLSU.BLEI_BILL_LEVEL, BLSU.BLEI_SUSPND_BL_IND, BLSU.GRGR= _ID, > BLSU.SGSG_ID, BLSU.SBSB_ID, > convert(char(10),BLSU.BLEI_LST_TL_DUE_DT,101), > convert(char(10),BLSU.BLEI_LAST_BILL_DTM,101), > convert(char(10),BLSU.BLEI_LST_BL_END_DT,101) from RPT..CID30_JP > BLSU order by BLSU.BLEI_BILL_LEVEL, BLSU.BLEI_SUSPND_BL_IND, > BLSU.GRGR_ID, BLSU.SGSG_ID, BLSU.SBSB_ID > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #8: > SQL =3D drop table RPT..CID30_JP > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > > SQR: End of Run. > > ------------------------------ > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, > is for the sole use of the intended recipient(s) and may contain confiden= tial > and privileged information or otherwise protected by law. Any unauthoriz= ed > review, use, disclosure or distribution is prohibited. If you are not the > intended recipient, please contact the sender by reply e-mail and destroy > all copies of the original message. > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 11 09:52:39 2007 Subject: RE: [sqr-users] RE: sqr-users Digest, Vol 44, Issue 5 Date: Thu, 11 Oct 2007 08:49:38 -0500 From: "Bob Stone" have you considered that the problem isn't with the connect to the DB, but = rather with the printing/writing statements for the report? -----Original Message----- From: sqr-users-bounces+bstone=3Dfastenal.com@sqrug.org [mailto:sqr-users-b= ounces+bstone=3Dfastenal.com@sqrug.org] On Behalf Of maddy Sent: Thursday, October 11, 2007 8:44 AM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: Re: [sqr-users] RE: sqr-users Digest, Vol 44, Issue 5 Thanks Rebecca, there is nothing wrong in the program and we have tried everything. Actually 4 senior developers are working on this issue and also opened a ticket with Hyperion on this issue. Thanks, Maddy On 10/11/07, Barilleaux, Rebecca wrote: > This is just a shot in the dark, but I noticed that you are creating & in= serting into CID30_JP and selecting from RPT..CID30_JP. Is it possible the= table is being created in some other database besides RPT? Like maybe tem= pdb? What happens if you leave off the RPT.. From the select statement, or= add it to your create table & insert statements? > > Thanks, > Rebecca > > -----Original Message----- > Date: Wed, 10 Oct 2007 14:44:20 -0400 > From: maddy > Subject: Re: [sqr-users] Challenging issue with Brio SQR in UNIX > To: "the dragon" > Cc: "This list is for discussion about the SQR database reporting > language from Hyperion Solutions." > Message-ID: > > Content-Type: text/plain; charset=3D"iso-8859-1" > > Hi dragon, > > Thanks for your quick response.By mistake I had sent you the wrong > file with Cursor information. Please take a look at the new file > attached. > > > Thanks, > Maddy > > > > On 10/10/07, the dragon wrote: > > The sqr failed to make it through, but the -s looks to me like it is wo= rking > > correctly - 354 rows are inserted, and 354 are selected afterwards. I = guess > > my question is what makes you think it isn't working? > > > > peace, > > clark 'the dragon' willis > > > > PSA: Salary <> Slavery. If you earn a salary, your employer is renting = your > > services for 40 hours a week, not purchasing your soul. Your time is the > > only real finite asset that you have, and once used it can never be > > recovered, so don't waste it by giving it away. > > > > I work to live; I don't live to work. > > > > "Time is the coin of your life. It is the only coin you have, and only = you > > can determine how it will be spent. Be careful lest you let other people > > spend it for you." -- Carl Sandburg (1878 - 1967) > > > > It is impossible to defeat an ignorant man in argument. -- William G. M= cAdoo > > > > Religion is regarded by the common people as true, by the wise as false= , and > > by the rulers as useful. -- Seneca > > > > "I distrust those people who know so well what God wants them to do bec= ause > > I notice it always coincides with their own desires." - Susan B. Anthony > > > > > > > > Hi, > > > > > > I have tried all the various things mentioned in the chain of emails > > > but still have the same issue. The issue is with commit statement but > > > not sure why it is not working with ORDER BY clause in the SELECT > > > statement. > > > > > > Please take a look at the attached SQR program and the cursor > > > information when compiled with -S flag. > > > > > > > > > Thanks!! > > > Maddy > > > > > > > > > Environment : Hyperion 8.5.0.0.0.566/IBM RS6000/AIX 5.2/ODBC DataDire= ct > > 5.1 > > > Database : Sybase 12.5 > > > > > > On 10/9/07, George Jansen wrote: > > > > It strikes me that an ORDER BY clause means sorting, sorting means = the > > use of temporary space, and this could be limited. > > > > > > > > As for the location, are you using Oracle? With Oracle you could un= der > > some circumstances be connecting through a shared server (sorting in the > > shared pool) and in others connecting through a dedicated server. > > > > > > > > >>> maddy 10/4/2007 6:01 PM >>> > > > > Hi, > > > > > > > > We have a strange problem with all the Brio SQR Programs executing = under > > > > UNIX environment.All these programs are working fine and giving data > > when > > > > executed in windows environment and giving no data in UNIX envirome= nt. > > > > > > > > We are creating a temp table and inserting data in the SQR program = but > > > > unable to Select the data from the same table and print it on to the > > > > report.However when the ORDER BY clause in the select statement is > > commented > > > > out, data is pulled on to the report. > > > > > > > > If I run the same program again without droping and creating the ta= ble > > we > > > > get the data from the table even with ORDER BY clause which is stra= nge. > > > > How can a ORDER BY clause in the SELECT statement cause this kind of > > issue > > > > ? I can send the skeleton program if any of the experts can look in= to > > this > > > > issue. > > > > > > > > Environment: Hyperion 8.5 installed on UNIX (AIX) > > > > > > > > Thanks, > > > > Maddy > > > > > > > > > > ________________________________ > > Help yourself to FREE treats served up daily at the Messenger Caf=E9. S= top by > > today! > -------------- next part -------------- > Cursor Status: > > Cursor #1: > SQL =3D commit transaction > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #2: > SQL =3D if exists(select 1 from sysobjects where name =3D'CID30_JP'and > type=3D'U') begin drop table CID30_JP end > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #3: > SQL =3D create table CID30_JP ( BLEI_BILL_LEVEL char(1) null, > BLEI_LST_TL_DUE_DT datetime null, BLEI_LAST_BILL_DTM datetime > null, BLEI_LST_BL_END_DT datetime null, BLEI_SUSPND_BL_IND > char(1) null, GRGR_ID char(8) null, SGSG_ID > char(4) null, SBSB_ID char(9) null ) > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #4: > SQL =3D commit transaction > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #5: > SQL =3D {call RPT..BERSP_EVENT_STEP_INSERT(?,?,?,?)} > Compiles =3D 0 > Executes =3D 4 > Rows =3D 0 > > > Cursor #6: > SQL =3D insert into CID30_JP ( BLEI_BILL_LEVEL, BLEI_LST_TL_DUE_DT, > BLEI_LAST_BILL_DTM, BLEI_LST_BL_END_DT, BLEI_SUSPND_BL_IND, > GRGR_ID, SGSG_ID, SBSB_ID ) select 'I', BLEI.BLEI_LST_TL_DUE_DT, > BLEI.BLEI_LAST_BILL_DTM, BLEI.BLEI_LST_BL_END_DT, > BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, null , SBSB.SBSB_ID from > fadfyin1..CMC_BLEI_ENTY_INFO BLEI, fadfyin1..CMC_GRGR_GROUP > GRGR, fadfyin1..CMC_SBSB_SUBSC SBSB where > BLEI.BLEI_BILL_LEVEL_CK =3D SBSB.SBSB_CK and SBSB.GRGR_CK > =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEVEL =3D 'I' and > BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') union select 'G', > BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, > BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, > SGSG.SGSG_ID, null from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, > fadfyin1..CMC_GRGR_GROUP GRGR, fadfyin1..CMC_SGSG_SUB_GROUP > SGSG where BLEI.BLEI_BILL_LEVEL_CK =3D SGSG.SGSG_CK and > SGSG.GRGR_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEV= EL > =3D 'S' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') union sel= ect > 'G', BLEI.BLEI_LST_TL_DUE_DT, BLEI.BLEI_LAST_BILL_DTM, > BLEI.BLEI_LST_BL_END_DT, BLEI.BLEI_SUSPND_BL_IND, GRGR.GRGR_ID, > null, null from fadfyin1..CMC_BLEI_ENTY_INFO BLEI, > fadfyin1..CMC_GRGR_GROUP GRGR where > BLEI.BLEI_BILL_LEVEL_CK =3D GRGR.GRGR_CK and BLEI.BLEI_BILL_LEV= EL > =3D 'G' and BLEI.BLEI_SUSPND_BL_IND in ('B','D','S') > Compiles =3D 1 > Executes =3D 1 > Rows =3D 354 > > Cursor #7: > SQL =3D SELECT BLSU.BLEI_BILL_LEVEL, BLSU.BLEI_SUSPND_BL_IND, BLSU.GRGR= _ID, > BLSU.SGSG_ID, BLSU.SBSB_ID, > convert(char(10),BLSU.BLEI_LST_TL_DUE_DT,101), > convert(char(10),BLSU.BLEI_LAST_BILL_DTM,101), > convert(char(10),BLSU.BLEI_LST_BL_END_DT,101) from RPT..CID30_JP > BLSU order by BLSU.BLEI_BILL_LEVEL, BLSU.BLEI_SUSPND_BL_IND, > BLSU.GRGR_ID, BLSU.SGSG_ID, BLSU.SBSB_ID > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > Cursor #8: > SQL =3D drop table RPT..CID30_JP > Compiles =3D 1 > Executes =3D 1 > Rows =3D 0 > > > SQR: End of Run. > > ------------------------------ > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, > is for the sole use of the intended recipient(s) and may contain confiden= tial > and privileged information or otherwise protected by law. Any unauthoriz= ed > review, use, disclosure or distribution is prohibited. If you are not the > intended recipient, please contact the sender by reply e-mail and destroy > all copies of the original message. > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 11 15:55:06 2007 Date: Thu, 11 Oct 2007 12:52:23 -0700 (PDT) From: Prasanth Pennepalli Subject: Re: [sqr-users] SQR Tecnical Documentation Yes. SQR -> Hyperion -> Oracle (Hyperion SQR) SQR -> Peopleosft -> Oracle (Peoplesoft SQR) ----- Original Message ---- From: Dee Lind To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Sent: Wednesday, October 10, 2007 11:01:52 AM Subject: RE: [sqr-users] SQR Tecnical Documentation I think Oracle owns SQR - is that correct?=20 =20 Dee Lind Application Engineer ResCare, Inc. Ph: 502-394-2289 Fax: 502.394.2309 dlind@rescare.com=20 CONFIDENTIALITY NOTICE: This email, including attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, or disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender immediately and destroy all copies of the original message. >>> the dragon 10/10/2007 1:07 PM >>> Contact Brio, Hyperion or whomever they are now... You may be able to oder a set, or, since they are pdfs, you could print them out and bind them. There are also a couple of books available through amazon that should be able to help. peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> From: jean_myles@fitnyc.edu> To: sqr-users@sqrug.org> Date: Wed, 10 Oct 2007 12:50:18 -0400> Subject: [sqr-users] SQR Tecnical Documentation> > We are trying to locate a hard copy of the SQR Technical Documentation> (mostly the language reference guide and designing reports with sqr> developer) for the latest version of SQR. We can download the PDF's. but> would like to know if a hard copy exists or if you would have any other> documentation recommendations.> > > > Thanks in advance for the information.> > > > Jean Myles> > Information Management Specialist> > Fashion Institute of Technology> > P: 212-217-3440> > F: 212-217-3452> > E: jean_myles@fitnyc.edu> > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users=20 _________________________________________________________________ Help yourself to FREE treats served up daily at the Messenger Caf=E9. Stop by today. http://www.cafemessenger.com/info/info_sweetstuff2.html?ocid=3DTXT_TAGLM_Oc= tWLtagline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users =20=20=20=20=20=20=20 ___________________________________________________________________________= _________ Be a better Heartthrob. Get better relationship answers from someone who kn= ows. Yahoo! Answers - Check it out.=20 http://answers.yahoo.com/dir/?link=3Dlist&sid=3D396545433 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Oct 12 12:15:12 2007 Date: Fri, 12 Oct 2007 12:12:41 -0400 From: "jp guptha" Subject: [sqr-users] dbexec error (SQR cursor open) Hi There, In SQR (Hyperion 12.5) I am getting the following error message when I am trying to create an index on a table, which I created in the SQR program in Begin-Setup section. The table is created in Begin-Setup section and droping the table at the end of the SQR program. Error Message: *ERROR MESSAGE:* (SQR 5528) ODBC SQL dbexec: SQLExecute error 1938 in cursor 6: [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Cannot create index or unique constraint because cursor 'S0000000E' is still open. Close the cursor(s) before creating index or constraint. Any help is greatly appreciated. Thanks Guptha _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 13:29:18 2007 Date: Mon, 15 Oct 2007 13:27:46 -0400 From: "Vaidyanathan, Ramakrishnan (GE, Corporate, consultant)" Subject: [sqr-users] Wrap Command Hi Friends, Iam using Wrap command in one of my sqr program. I have used the wrap command with max of 100 char and line depth of 2. The problem is if the line is being written at the end of page, wrap causes it to wrap to next line in the next page. So the headers gets over written. Is there any way to restrict the line getting printed on top of header? Ideally I would want it to be printed beneath the header.=20 Please help Thanks Ram _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 13:48:52 2007 Date: Mon, 15 Oct 2007 13:46:43 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Wrap Command Check out using the NEXT-LISTING command for line advancement. It has a NEED= option to check for available space before printing and issues a new-page if there isn't enough room. On 10/15/07, Vaidyanathan, Ramakrishnan (GE, Corporate, consultant) < ramakrishnan.vaidyanathan@ge.com> wrote: > > Hi Friends, > > Iam using Wrap command in one of my sqr program. I have used the > wrap command with max of 100 char and line depth of 2. The problem is if > the line is being written at the end of page, wrap causes it to wrap to > next line in the next page. So the headers gets over written. Is there > any way to restrict the line getting printed on top of header? Ideally I > would want it to be printed beneath the header. > Please help > > Thanks > Ram > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 14:11:25 2007 Subject: RE: [sqr-users] Wrap Command Date: Mon, 15 Oct 2007 14:10:07 -0400 From: "Vaidyanathan, Ramakrishnan (GE, Corporate, consultant)" If am not wrong, Next-Listing could be used only in a Select Statement. Iam using Print command.=20=20 -----Original Message----- From: sqr-users-bounces+ramakrishnan.vaidyanathan=3Dge.com@sqrug.org [mailto:sqr-users-bounces+ramakrishnan.vaidyanathan=3Dge.com@sqrug.org] On Behalf Of Don Mellen Sent: Monday, October 15, 2007 1:47 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Wrap Command Check out using the NEXT-LISTING command for line advancement. It has a NEED=3D option to check for available space before printing and issues a new-page if there isn't enough room. On 10/15/07, Vaidyanathan, Ramakrishnan (GE, Corporate, consultant) < ramakrishnan.vaidyanathan@ge.com> wrote: > > Hi Friends, > > Iam using Wrap command in one of my sqr program. I have used=20 > the wrap command with max of 100 char and line depth of 2. The problem > is if the line is being written at the end of page, wrap causes it to=20 > wrap to next line in the next page. So the headers gets over written.=20 > Is there any way to restrict the line getting printed on top of=20 > header? Ideally I would want it to be printed beneath the header. > Please help > > Thanks > Ram > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 14:16:04 2007 Date: Mon, 15 Oct 2007 14:13:08 -0400 From: "Hall, Tara" Subject: [sqr-users] SQR 2908 Warning Hi All, I recently finished testing a mod in our dev environment and had the sqc mo= ved to the test environment in order to continue testing. However, I keep = receiving the following warning/error message - (SQR 2908) Warning: Cannot = CLOSE file 1 -- file not opened.=20 I can't seem to pinpoint why I'm receiving this message in the TEST environ= ment but not in DEV. Any suggestions? Thanks, Tara L. Hall Business Systems Analyst City of Tallahassee - Accounting Services 850.891.8425 "When I was a child, my mother said to me, 'If you become a soldier, you'll= be a general. If you become a monk you'll end up as Pope.' Instead I bec= ame a painter and wound up as Picasso." - Pablo Picasso _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 14:19:36 2007 Date: Mon, 15 Oct 2007 14:13:53 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Wrap Command You are wrong. On 10/15/07, Vaidyanathan, Ramakrishnan (GE, Corporate, consultant) < ramakrishnan.vaidyanathan@ge.com> wrote: > > If am not wrong, Next-Listing could be used only in a Select Statement. > Iam using Print command. > > -----Original Message----- > From: sqr-users-bounces+ramakrishnan.vaidyanathan=ge.com@sqrug.org > [mailto:sqr-users-bounces+ramakrishnan.vaidyanathan=ge.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Monday, October 15, 2007 1:47 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Wrap Command > > Check out using the NEXT-LISTING command for line advancement. It has a > NEED= option to check for available space before printing and issues a > new-page if there isn't enough room. > > > On 10/15/07, Vaidyanathan, Ramakrishnan (GE, Corporate, consultant) < > ramakrishnan.vaidyanathan@ge.com> wrote: > > > > Hi Friends, > > > > Iam using Wrap command in one of my sqr program. I have used > > the wrap command with max of 100 char and line depth of 2. The problem > > > is if the line is being written at the end of page, wrap causes it to > > wrap to next line in the next page. So the headers gets over written. > > Is there any way to restrict the line getting printed on top of > > header? Ideally I would want it to be printed beneath the header. > > Please help > > > > Thanks > > Ram > > > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 14:25:50 2007 Subject: Re: [sqr-users] SQR 2908 Warning From: JOHN_HARRIS@qvc.com Date: Mon, 15 Oct 2007 14:22:24 -0400 This is a multi-part message in MIME format... --0__=0ABBF9E6DFF748F48f9e8a93df938690918c0ABBF9E6DFF748F4 Content-type: text/plain; charset=US-ASCII I would bet in the environment that you are receiving the error, no data is returned. Therefore you are not opening the file, but in the other, you are getting data back. Check where the open is being performed. Any questions, please call or email me Thank you. Regards, John (Embedded image moved to file: pic13357.jpg) John Harris Programmer/Analyst Application Development - Internal QVC Inc., 1200 Wilson Drive, MC 220, West Chester, PA 19380-4262 Telephone 484-701-3303 Fax 484-701-8437 e-mail jharris@qvc.com This message may contain information that is privileged or confidential. This message may contain information that is privileged or confidential. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein is STRICTLY PROHIBITED. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format. "Hall, Tara" To Ext: Sent by: cc sqr-users-bounces +john_harris=qvc. Subject com@sqrug.org [sqr-users] SQR 2908 Warning 10/15/2007 02:16 PM Please respond to "This list is for discussion about the SQR database reporting language from Hyperion Solutions." Hi All, I recently finished testing a mod in our dev environment and had the sqc moved to the test environment in order to continue testing. However, I keep receiving the following warning/error message - (SQR 2908) Warning: Cannot CLOSE file 1 -- file not opened. I can't seem to pinpoint why I'm receiving this message in the TEST environment but not in DEV. Any suggestions? Thanks, Tara L. Hall Business Systems Analyst City of Tallahassee - Accounting Services 850.891.8425 "When I was a child, my mother said to me, 'If you become a soldier, you'll be a general. If you become a monk you'll end up as Pope.' Instead I became a painter and wound up as Picasso." - Pablo Picasso _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users --0__=0ABBF9E6DFF748F48f9e8a93df938690918c0ABBF9E6DFF748F4 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Description: AUTOMATIC WARNING Here was a non admissible message part of 'image/jpeg' MIME type. It has been automatically discarded before sending the message to the list. --0__=0ABBF9E6DFF748F48f9e8a93df938690918c0ABBF9E6DFF748F4 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users --0__=0ABBF9E6DFF748F48f9e8a93df938690918c0ABBF9E6DFF748F4-- From sqr-users-bounces@sqrug.org Mon Oct 15 14:29:23 2007 From: the dragon Subject: RE: [sqr-users] SQR 2908 Warning Date: Mon, 15 Oct 2007 13:23:47 -0500 somewhere you have an inconsistency between a calling sqr, or another sqc.P= SA: Salary <> Slavery. If you earn a salary, your employer is renting your = services for 40 hours a week, not purchasing your soul. Your time is the on= ly real finite asset that you have, and once used it can never be recovered= , so don't waste it by giving it away. I work to live; I don't live to work= . "Time is the coin of your life. It is the only coin you have, and only yo= u can determine how it will be spent. Be careful lest you let other people = spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defea= t an ignorant man in argument. -- William G. McAdoo Religion is regarded by= the common people as true, by the wise as false, and by the rulers as usef= ul. -- Seneca "I distrust those people who know so well what God wants them= to do because I notice it always coincides with their own desires." - Susa= n B. Anthony> > Hi All,> > I recently finished testing a mod in our dev env= ironment and had the sqc moved to the test environment in order to continue= testing. However, I keep receiving the following warning/error message - (= SQR 2908) Warning: Cannot CLOSE file 1 -- file not opened. > > I can't seem= to pinpoint why I'm receiving this message in the TEST environment but not= in DEV.> > Any suggestions?> > Thanks,> Tara L. Hall _________________________________________________________________ Peek-a-boo FREE Tricks & Treats for You! http://www.reallivemoms.com?ocid=3DTXT_TAGHM&loc=3Dus _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 14:33:13 2007 Subject: RE: [sqr-users] SQR 2908 Warning Date: Mon, 15 Oct 2007 14:28:01 -0400 From: "Hall, Tara" Hi John, Thanks for responding. I may e-mail you if have any further questions on y= our suggestion. Tara -----Original Message----- From: sqr-users-bounces+hallt=3Dtalgov.com@sqrug.org [mailto:sqr-users-bounces+hallt=3Dtalgov.com@sqrug.org]On Behalf Of JOHN_HARRIS@qvc.com Sent: Monday, October 15, 2007 2:22 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Cc: sqr-users@sqrug.org; sqr-users-bounces+john_harris=3Dqvc.com@sqrug.org Subject: Re: [sqr-users] SQR 2908 Warning I would bet in the environment that you are receiving the error, no data is returned. Therefore you are not opening the file, but in the other, you are getting data back. Check where the open is being performed. =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 Any questions, please call or email me=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 Thank you.=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 Regards,=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 John=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 (Embedded image moved to file: pic13357.jpg)=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 John Harris=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 Programmer/Analyst=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20 Application Development - Internal=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20 QVC Inc., 1200 Wilson Drive, MC 220, West Chester, PA 19380-4262 Telephone 484-701-3303 Fax 484-701-8437 e-mail jharris@qvc.com This message may contain information that is privileged or confidential. This message may contain information that is privileged or confidential. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, or use of the information contained herein is STRICTLY PROHIBITED. If you received this transmission in error, please immediately contact the sender and destroy the material in its entirety, whether in electronic or hard copy format. =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 "Hall, Tara"=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20 To= =20 Ext: =20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20 Sent by: cc= =20 sqr-users-bounces=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20 +john_harris=3Dqvc. Subjec= t=20 com@sqrug.org [sqr-users] SQR 2908 Warning=20=20= =20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 10/15/2007 02:16=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20 PM=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 Please respond to=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20 "This list is for=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20 discussion about=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20 the SQR database=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20 reporting=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20 language from=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20 Hyperion=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20 Solutions."=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 Hi All, I recently finished testing a mod in our dev environment and had the sqc moved to the test environment in order to continue testing. However, I keep receiving the following warning/error message - (SQR 2908) Warning: Cannot CLOSE file 1 -- file not opened. I can't seem to pinpoint why I'm receiving this message in the TEST environment but not in DEV. Any suggestions? Thanks, Tara L. Hall Business Systems Analyst City of Tallahassee - Accounting Services 850.891.8425 "When I was a child, my mother said to me, 'If you become a soldier, you'll be a general. If you become a monk you'll end up as Pope.' Instead I became a painter and wound up as Picasso." - Pablo Picasso _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 15 14:36:34 2007 Date: Mon, 15 Oct 2007 14:31:46 -0400 From: "Don Mellen" Subject: Re: [sqr-users] SQR 2908 Warning My guess would be.... that the file was never opened! ;) It could be due to differences between the environments. Do you open the file "FOR-READING"? If so, does the file exist in TEST? Is the "OPEN" conditional upon finding data or some other condition? I'm assuming this did not happen before your change, so the sqc file must have gotten updated correctly. If none of this lights up an incandescent spheroid above your head, wrap the open and close with show statements (possibly within #debug conditionals) and see if the open ever fires in TEST (and see what it's "STATUS=" value is). HTH, Don On 10/15/07, Hall, Tara wrote: > > Hi All, > > I recently finished testing a mod in our dev environment and had the sqc > moved to the test environment in order to continue testing. However, I keep > receiving the following warning/error message - (SQR 2908) Warning: Cannot > CLOSE file 1 -- file not opened. > > I can't seem to pinpoint why I'm receiving this message in the TEST > environment but not in DEV. > > Any suggestions? > > Thanks, > Tara L. Hall > Business Systems Analyst > City of Tallahassee - Accounting Services > 850.891.8425 > > "When I was a child, my mother said to me, 'If you become a soldier, > you'll be a general. If you become a monk you'll end up as Pope.' Instead > I became a painter and wound up as Picasso." - Pablo Picasso > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 16 06:57:59 2007 From: "Peter Burton" Subject: RE: [sqr-users] Wrap Command Date: Tue, 16 Oct 2007 06:53:58 -0400 All, The following test program appears to work with wrap as stated in the origi= nal issue. That is, the header is not getting overwritten when the PRINT w= ith Wrap is at the end of the page. The header area is untouched on each p= age of the output. Begin-Heading 9 Print 'This is my heading' (1,1) Print 'So there.' (7,1) End-Heading Begin-Report While (#Loop < 100) Print 'Now is the time for all good men to come to aid of their country' = (+1,1) Wrap 25 5 Add 1 To #Loop End-While End-Report Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of Vaidyanathan, = Ramakrishnan (GE, Corporate, consultant) Sent: Monday, October 15, 2007 2:10 PM To: This list is for discussion about the SQR database reportinglanguage fr= om Hyperion Solutions. Subject: RE: [sqr-users] Wrap Command If am not wrong, Next-Listing could be used only in a Select Statement. Iam using Print command.=20=20 -----Original Message----- From: sqr-users-bounces+ramakrishnan.vaidyanathan=3Dge.com@sqrug.org [mailto:sqr-users-bounces+ramakrishnan.vaidyanathan=3Dge.com@sqrug.org] On Behalf Of Don Mellen Sent: Monday, October 15, 2007 1:47 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Wrap Command Check out using the NEXT-LISTING command for line advancement. It has a NEED=3D option to check for available space before printing and issues a new-page if there isn't enough room. On 10/15/07, Vaidyanathan, Ramakrishnan (GE, Corporate, consultant) < ramakrishnan.vaidyanathan@ge.com> wrote: > > Hi Friends, > > Iam using Wrap command in one of my sqr program. I have used=20 > the wrap command with max of 100 char and line depth of 2. The problem > is if the line is being written at the end of page, wrap causes it to=20 > wrap to next line in the next page. So the headers gets over written.=20 > Is there any way to restrict the line getting printed on top of=20 > header? Ideally I would want it to be printed beneath the header. > Please help > > Thanks > Ram > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 16 12:35:20 2007 Date: Tue, 16 Oct 2007 10:32:33 -0600 From: "LaFromboise, Erin" Subject: [sqr-users] Generating a Word Document I am trying to generate a word document using SQR. Does anyone have any suggestions to make this work. I am using SQR for PeopleSoft 8.46.06, I am running on Oracle 9i. Thank you in advance for your help. =20 Erin LaFromboise Payroll/Benefits Operations State Personnel Division (406)-444-0168 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 17 09:36:36 2007 Date: Wed, 17 Oct 2007 09:33:22 -0400 From: "White . Denise" Subject: [sqr-users] RE: Generating a Word Document From: White . Denise=20 Sent: Wednesday, October 17, 2007 9:26 AM To: SQR Users Group (sqr-users@sqrug.org) Subject: RE: Generating a Word Document The way this is accomplished in PeopleSoft is to create a .ltr file from th= e SQR and then have a second step in the job definition that will execute a= Word mail merge process. Look for the 'Generating Form Letters' section in the Application Fundament= als for HRMS PeopleBook, which will guide you through the development. Denise M. White=20 EBS Programmer/Analyst III=20 Dynamics Research Corporation=20 ------------------------------ Message: 2 Date: Tue, 16 Oct 2007 10:32:33 -0600 From: "LaFromboise, Erin" Subject: [sqr-users] Generating a Word Document To: Message-ID: =A0=A0=A0=A0=A0 Content-Type: text/plain;=A0=A0=A0=A0 charset=3D"us-ascii" I am trying to generate a word document using SQR.=A0=A0 Does anyone have any suggestions to make this work.=A0 I am using SQR for PeopleSoft 8.46.06= , I am running on Oracle 9i.=A0 Thank you in advance for your help. =A0 Erin LaFromboise Payroll/Benefits Operations State Personnel Division (406)-444-0168 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 17 11:22:45 2007 Date: Wed, 17 Oct 2007 11:19:43 -0400 From: srujan Subject: [sqr-users] problem with Blank page Hello everyone, I got a strange problem,Recently i added a footing to my sqr in order to print page numbers,it worked fine but the problem is now iam getting an blank page after each page. i even changed the page size from "80 132" to "60 132", i dont think it is creating the problem. Can someone help me in solving this issue?? thanks in advance. iam attaching my SQR with this mail. !****************************************************************************** begin-setup page-size 60 132 printer-init <27>(10U<27>(s0p12.00h10.0v0s0b0T ! page-size if no page-size is listed the page size is 62 lines x 132 columns end-setup !****************************************************************************** begin-program encode '<27>(8U<27>(s0p12.00h10.0v0s3b3T' into $bold ! header size encode '<27>(8U<27>(s0p13.00h10.0v0s3b3T' into $bold1 ! shrink the font size encode '<27>(8U<27>(s0p13.00h10.0v0s3b3T' into $bold2 ! shrink the font size encode '<27>(8U<27>(s0p13.00h10.0v0s0b0T' into $light encode '<27>(8U<27>(s0p13.00h10.0v0s0b3T' into $light1 encode '<27>(8U<27>(s0p13.00h10.0v0s0b3T' into $light2 encode '<27>&k2G' into $pcl encode '<27>(s0p12.0v0s3b3T' into $cmds do init_routine do get_paycenter_info do get_participant_info do header_part_loan_application if #current-line >= #max_lines new-page do header_part_loan_application1 end-if !new-page end-program !****************************************************************************** begin-footing 1 move #page-count to #page add 2 to #page print 'page ' (1,79) print #page (1,84) edit 99 end-footing !****************************************************************************** begin-procedure init_routine input $ssn input $ret_suffix input $ret_entity input $loan_no input $ret_repayment_indicator let #max_lines = 58 input $ret_amount_of_loan input $loan_maturity_date input $loan_eff_date input $loan_int_rate input $ret_loan_term input $loan_freq input $next_sch_pmt_amt input $number_of_payments input $collateral_int_rate input $paycenter if $paycenter = 'null' let $paycenter = '' end-if if $loan_no = 'null' let $loan_no = '' end-if if $ret_suffix = 'null' let $ret_suffix = '' end-if !if length($ret_employer_code) < 6 ! let $ret_employer_code = $ret_employer_code || ' ' !end-if !if length($ret_employer_code) < 6 ! let $ret_employer_code = $ret_employer_code || ' ' !end-if !if length($ret_employer_code) < 6 ! let $ret_employer_code = $ret_employer_code || ' ' !end-if ! ** MORE parameters read in from FORMS window let #months = to_number($ret_loan_term) * 12 !convert yrs to months let $months = edit(#months, '999') || ' months' let $amt_of_loan = '$' || $ret_amount_of_loan let $amt_of_loan = edit($amt_of_loan, '999,999,999.99') let $default_fee = 'null' let $insuff_fund_fee = 'null' let $application_fee = 'null' let $administration_fee = 'null' !!'$' || nvl(INITIATION_CHARGE,'0') &application_fee !'$' || nvl(ANNUAL_SERVICE_FEE,'0') &annual_admin_fee begin-select distinct !LOAN_SETUP_FEE &application_fee !ANNUAL_SETUP_FEE &annual_admin_fee !DEFAULT_FEE &default_fee !INSUFFICIENT_FUND_FEE &insufficient_fund_fee minimum_loan_amount &min_loan from ret_entity_int_rates where ENTITY_START_RANGE <= $ret_entity and ENTITY_END_RANGE >= $ret_entity end-select begin-select substr($ret_entity,1,1) &first_let substr($ret_entity,1,2) &second_let substr($ret_entity,-2,1) &penu_let substr($ret_entity,-2) &last_let if (ascii(&first_let) >= 65.0 and ascii(&first_let) <= 90.0) do get_def_fee_alpha do get_con_info_alpha else if (ascii(&penu_let) >= 65.0 and ascii(&penu_let) <= 90.0) do get_def_fee_last_alpha do get_con_info_last_alpha else do get_def_fee do get_con_info end-if end-if from dual end-select ! let $AA = '$' || edit(round(&annual_admin_fee,0), '9999') ! let $AP = '$' || edit(round(&application_fee,0), '9999') ! let $DF = '$' || edit(round(&default_fee, 0),'9999') ! let $IF = '$' || edit(round(&insufficient_fund_fee, 0),'9999') let $min_ln= '$' || edit(round(&min_loan,0), '888,888') ||'.' if $default_fee = 'null' let $DF = '$0' else let $DF = '$' ||$default_fee end-if if $insuff_fund_fee = 'null' let $IF = '$0' else let $IF = '$' ||$insuff_fund_fee end-if if $application_fee = 'null' let $AP = '$0' else let $AP = '$' ||$application_fee end-if if $administration_fee = 'null' let $AA = '$0' else let $AA = '$' ||$administration_fee end-if !begin-select !contact_number &tele_ph_no !administrator_short &admin_short !administrator_long &admin_long_nm !first_line &first_line !second_line &second_line !from ret_contact_info !where entity = $ret_entity !end-select let $line1 = $first_line let $line2 = $second_line UPPERCASE $line1 UPPERCASE $line2 let $eligibility = 'Eligibility: '||$light2 let $elig2=$eligibility||'In order to be eligible to receive a loan, you must be an actively' let $elig3='employed Plan Participant.'||$bold2 let $elig2=$eligibility||'In order to be eligible to receive a loan, you must be a participant' let $elig3='in the Plan.'|| $bold2 let $signing = $bold2||'By' let $amount_desired = 'Loan Amount Desired: ' let $loan_amount = $amt_of_loan ||$light2 let $50thou = '$50,000' let $by_bold = $bold2||'By' let $the_bold = $bold2||'The' let $loan_period = 'Loan Period Desired: ' let $security = 'Loan Security: '||$light2 let $important = 'Important Tax Notice: '||$light2 let $intRate = 'Interest Rate: '||$light2 let $applFee = 'Loan Application Fee: '||$light2||'An application fee of '| |$AP||' will be deducted from' ! let $annualFee ='Loan Annual Fee: '||$light2 let $annualAdminFee = 'Annual Administration Fee: '||$light2||'An annual admi nistrative fee of '||$AA||' will' let $loanDefaultFeeHeader = 'Loan Default Fee: '||$light2||'At the time of a ny default on the loan, a default' let $loanDefaultFee = 'fee of '||$DF||' will be deducted from your Plan accou nt(s).' let $insufficientFundFee = 'insufficient funds fee of '||$IF||' will be deduc ted from your Plan account(s).' let $insuffFundFeeHeader = 'Insufficient Funds Fee: '||$light2||'If the Admin istrator ' let $assetFee = 'Asset Fee: '||$light2||' ' end-procedure init_routine !************************************************************************* begin-procedure get_def_fee begin-select distinct entity_start_range &start_range entity_end_range &end_range default_fee &def_fees insufficient_fund_fee &insuff_fund_fee loan_setup_fee &application_fee annual_setup_fee &administration_fee do def_fee2 from ret_entity_int_rates where substr(entity_start_range,1,1) not between 'A' and 'Z' and substr(entity_end_range,1,1) not between 'A' and 'Z' end-select end-procedure get_def_fee !****************************************************************************** begin-procedure def_fee2 if $ret_entity >= &start_range and $ret_entity <= &end_range move &def_fees to $default_fee 888,888,888.88 move &insuff_fund_fee to $insuff_fund_fee 888,888,888.88 move &application_fee to $application_fee 888,888,888.88 move &administration_fee to $administration_fee 888,888,888.88 end-if end-procedure def_fee2 !****************************************************************************** begin-procedure get_def_fee_alpha begin-select distinct entity_start_range &start_range_alpha entity_end_range &end_range_alpha default_fee &def_fees_alpha insufficient_fund_fee &insuff_fund_fee_alpha loan_setup_fee &application_fee_alpha annual_setup_fee &administration_fee_alpha do get_def_fee_alpha2 from ret_entity_int_rates where substr(entity_start_range,1,2) = &second_let and substr(entity_end_range,1,2) = &second_let end-select end-procedure get_def_fee_alpha !************************************************************************* begin-procedure get_def_fee_alpha2 if $ret_entity >= &start_range_alpha and $ret_entity <= &end_range_alpha move &def_fees_alpha to $default_fee 888,888,888.88 move &insuff_fund_fee_alpha to $insuff_fund_fee 888,888,888.88 move &application_fee_alpha to $application_fee 888,888,888.88 move &administration_fee_alpha to $administration_fee 888,888,888.88 end-if end-procedure get_def_fee_alpha2 !****************************************************************************** begin-procedure get_def_fee_last_alpha begin-select distinct entity_start_range &start_range_last_alpha entity_end_range &end_range_last_alpha default_fee &def_fees_last_alpha insufficient_fund_fee &insuff_fund_fee_last_alpha loan_setup_fee &application_fee_last_alpha annual_setup_fee &administration_fee_last_alpha do get_def_fee_last_alpha2 from ret_entity_int_rates where substr(entity_start_range,-2) = &last_let and substr(entity_end_range,-2) = &last_let end-select end-procedure get_def_fee_last_alpha !************************************************************************* begin-procedure get_def_fee_last_alpha2 if $ret_entity >= &start_range_last_alpha and $ret_entity <= &end_range_last_ alpha move &def_fees_last_alpha to $default_fee 888,888,888.88 move &insuff_fund_fee_last_alpha to $insuff_fund_fee 888,888,888.88 move &application_fee_last_alpha to $application_fee 888,888,888.88 move &administration_fee_last_alpha to $administration_fee 888,888,888.88 end-if end-procedure get_def_fee_last_alpha2 !****************************************************************************** begin-procedure get_con_info begin-select entity_start_range &entity_start_range entity_end_range &entity_end_range contact_number &contact_number administrator_short &admin_short administrator_long &administrator_long first_line &first_line second_line &second_line do get_con_info2 from ret_contact_info where substr(entity_start_range,1,1) not between 'A' and 'Z' and substr(entity_end_range,1,1) not between 'A' and 'Z' end-select end-procedure get_con_info !****************************************************************************** begin-procedure get_con_info2 if $ret_entity >= &entity_start_range and $ret_entity <= &entity_end_range move &contact_number to $tele_ph_no move &admin_short to $admin_short move &administrator_long to $admin_long_nm move &first_line to $first_line move &second_line to $second_line end-if end-procedure get_con_info2 !****************************************************************************** begin-procedure get_con_info_alpha begin-select entity_start_range &entity_start_range_alpha entity_end_range &entity_end_range_alpha contact_number &contact_number_alpha administrator_short &admin_short_alpha administrator_long &administrator_long_alpha first_line &first_line_alpha second_line &second_line_alpha do get_con_info_alpha2 from ret_contact_info where substr(entity_start_range,1,2) = &second_let and substr(entity_end_range,1,2) = &second_let end-select end-procedure get_con_info_alpha !****************************************************************************** begin-procedure get_con_info_alpha2 if $ret_entity >= &entity_start_range_alpha and $ret_entity <= &entity_end_ra nge_alpha move &contact_number_alpha to $tele_ph_no move &admin_short_alpha to $admin_short move &administrator_long_alpha to $admin_long_nm move &first_line_alpha to $first_line move &second_line_alpha to $second_line end-if end-procedure get_con_info_alpha2 !****************************************************************************** begin-procedure get_con_info_last_alpha begin-select entity_start_range &entity_start_range_last_alpha entity_end_range &entity_end_range_last_alpha contact_number &contact_number_last_alpha administrator_short &admin_short_last_alpha administrator_long &administrator_long_last_alpha first_line &first_line_last_alpha second_line &second_line_last_alpha do get_con_info_last_alpha2 from ret_contact_info where substr(entity_start_range,-2) = &last_let and substr(entity_end_range,-2) = &last_let end-select end-procedure get_con_info_last_alpha !****************************************************************************** begin-procedure get_con_info_last_alpha2 if $ret_entity >= &entity_start_range_last_alpha and $ret_entity <= &entity_e nd_range_last_alpha move &contact_number_last_alpha to $tele_ph_no move &admin_short_last_alpha to $admin_short move &administrator_long_last_alpha to $admin_long_nm move &first_line_last_alpha to $first_line move &second_line_last_alpha to $second_line end-if end-procedure get_con_info_last_alpha2 !****************************************************************************** begin-procedure get_paycenter_info begin-select name &paycenter_name from pebs_payroll_centers where vgroup_entity = $ret_entity and id = $paycenter end-select end-procedure get_paycenter_info !****************************************************************************** begin-procedure get_participant_info begin-select name &ndci_name ssn &ndci_ssn addr1 &ndci_addr1 addr2 &ndci_addr2 addr4 &ndci_citystate zip &ndci_zip !home_phone &ndci_home_ph from vpart@rtldevl where ssn = $ssn and entity = $ret_entity and nvl(SUFFIX,'X') = nvl($ret_suffix,'X') end-select end-procedure get_participant_info !****************************************************************************** begin-procedure header_part_loan_application print $bold (1,0) let #start = round(( 100 - length($line1) ) / 2,0) print $line1 (+1, #start) let #start2 = round(( 100 - length($line2) ) / 2,0) print $line2 (+1, #start2) let $line3 = 'PARTICIPANT LOAN APPLICATION' let #start3 = round(( 100 - length($line3) ) / 2,0) print $line3 (+1, #start3) !print 'THE STATE OF ' (+1,40) !print $upper_st ( , 53) !print 'PUBLIC EMPLOYEES DEFERRED COMPENSATION PLAN' (+1,28) !print 'PARTICIPANT LOAN APPLICATION' (+1,36) begin-document (+1,6) $light2 Please review this application carefully before completing it. The entire application must be completed and signed. Your application must be approved under guidelines established under the Plan by the Employer and/or Plan Sponsor (hereinafter collectively referred to as "Plan Sponsor") as administered by $admin_long_nm (hereinafter "Administrator" or "Service Center"). If you do not understand any part of thi s application, please contact the Service Center at $tele_ph_no . $bold1 NAME:____________________________________ SOCIAL SECURITY NUMBER:____________ ADDRESS:__________________________________________________________ CITY:__________________ STATE:____________ ZIP:_____________ DAYTIME PHONE:___________________________ HOME PHONE:________________________ E-MAIL ADDRESS:_____________________________________ .b EMPLOYER/DEPARTMENT:____________________________ PAYCENTER NUMBER: $paycenter PAYCENTER NAME: &paycenter_name $bold2 $elig2 $elig3 .b $amount_desired $loan_amount The minimum loan amount is $min_ln The maximum amount of an approved loan shall not exceed the lesser of: (i) 50% of your total vested account balance in all MSRP Plans you participate in (not including any value attributable to any life insurance policy or deemed IRA account) less any outstanding loans in all MSRP Plans you participate in, or (ii) $50thou less your highest outstandi ng loan balance during the preceding one-year period, based on all MSRP Plans you participate in. $the_bold amount listed above will be con tingent upon your account value at the time the loan is processed. $by_bold signing this Loan Application, you represent that your receipt of the "Loan Amount Desired" from the Plan will no t cause you to exceed these limits. $light2 The loan amount will be withdrawn from your account in accordance with the administrative procedures under the Plan. If the source for a single loan includes both your Deferred Compensation and Eligible Rollover Accounts, you must complete a loan application and loan agreement for each account. You may elect which funds and money sources you wish the amount to be taken from provided your Plan allows for such. If funds and sources are not indicated, money will be taken according to the default structure chosen by the Plan Sponsor. .b Do you currently have an outstanding loan under the Plan? __________ .b Have you had an outstanding loan within the last 12 months under the Plan or any other plan of the Plan Sponsor? __________ .b Have you ever defaulted on any loan under the Plan that you have not repaid in full? _________ $bold2 $loan_period $months $bold2 $security You are giving a security interest i n your vested Plan end-document end-procedure header_part_loan_application !****************************************************************************** begin-procedure header_part_loan_application1 begin-document (+1,6) balance as of the date of the Loan Process Date, together with all additions thereof, to the Plan that shall at all times be equal to 100% of the unpaid principal balance of the loan together with accrued interest. $bold2 $important Under the terms of the Plan a nd applicable law, if you become delinquent on loan repayments, the Administrator must consider the entire loan in default and report the delinquency to the Internal Revenue Service as a taxable event. In such case, a copy of such report will be mailed to you before February 1 after the calendar year in which the default occurs. You will then be responsible for paying income tax and penalties on the taxable amount of the loan default. $bold2 $intRate Under current law, the interest rate on the loan must be determined at the time the loan is made, not at the time you receive or complete this application. The rate should be fixed for the duration of the loan. The interest rate will be 1% above the prime rate as published by the Wall Street Journal two weeks prior to the end of the most recent calendar-yea r quarter. Along with this Loan Application, you should have received the requi red Truth In Lending Disclosure Statement that will describe how the interest is calculated and will state the interest rate for your loan. $bold2 $applFee your Plan account pro rata. The application fee is nonrefundable. $bold2 $annualAdminFee be deducted from your Plan account pro rata and will be assessed each year based on the anniversary of the loan set up until the loan is paid. $bold2 $loanDefaultFeeHeader $loanDefaultFee $bold2 $insuffFundFeeHeader is unab le to process a loan payment on the date due because of lack of sufficient funds, an $insufficientFundFee .b Along with this Loan Application, you should have received the following: (i) a Loan Agreement that sets forth the terms of the loan and (ii) a Truth-In-Lending Disclosure Statement. $by_bold signing t he Loan Application, you certify that all of the information provided by you herein is complete and accurate, that you understand and agree to the terms set forth in the Loan Agreement and acknowledge you have received and read a fully completed Truth-In-Lending Disclosure Statement. .b $light2 __________________________ _____________________________ Participant's Signature Date end-document end-procedure header_part_loan_application1 !****************************************************************************** _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 22 17:44:44 2007 Date: Mon, 22 Oct 2007 17:42:33 -0400 From: maddy Subject: [sqr-users] Issue with date format in SQR prog in hyperion 8.5 Date $gsTo_Date convert(datetime,substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),101),1,3) + '01' + substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),101),6,5)) &FROM_DT The above function works perfectly in Brio 6.2 but doesn't work in Hyperion 8.5. If I replace the $_gsTo_Date with getdate() in the above function as shown below, it works fine even in Hyperion 8.5. convert(datetime,substring(convert(char(10), dateadd(mm, -1, getdate()),101),1,3) + '01' + substring(convert(char(10), dateadd(mm, -1, getdate()),101),6,5)) &FROM_DT Is the general syntax of convert function changed in Hyperion 8.5 ? Can someone please send me the general syntax of convert function ? Thanks! Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Oct 22 18:05:56 2007 Date: Mon, 22 Oct 2007 18:03:49 -0400 From: maddy Subject: [sqr-users] Issue with convert function in Hyperion 8.5 (SQR 5528) ODBC SQL dbdesc: SQLNumResultCols error 102 in cursor 28: [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Incorrect syntax near '?'. Error on line 1629: (SQR 3716) Error in SQL statement. Errors were found in the program file. SQR: Program Aborting. Iam getting the above error while executing a SQR program using Hyperion 8.5. convert(datetime,substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),101 + '01' + substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),101),6,5)) &FROM_DT The same code works fine in Brio 6.2 . What could be the issue ? Why is the above code working when I replace $_gsTo_Date with getdate().I couldn't find the general syntax for convert () function in Hyperion 8.5. Please advice. Thanks! Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 04:41:59 2007 From: =?iso-8859-1?Q?V=E9ronique_Mermaz?= Date: Tue, 23 Oct 2007 08:38:32 +0000 Subject: [sqr-users] SQR process generating unwanted empty PDF file Hello, I'm running an SQR process which is supposed to generate an XLS file= . It works fine but for an unknown reason an additional empty PDF file is c= reated as well.=20 It happens only when the excel file reaches a certain number of lines (more= than 60 lines). Any parameter to increase to fix this issue?Any ideas are welcome.=20 ThanksBest regards, Veronique =20 _________________________________________________________________ News, entertainment and everything you care about at Live.com. Get it now! http://www.live.com/getstarted.aspx _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 04:48:16 2007 From: franck.masson2002@laposte.net Subject: Re:[sqr-users] SQR process generating unwanted empty PDF file Date: Tue, 23 Oct 2007 10:44:40 +0200 (CEST) you should have the option -printer:pd=20 1) supress this option 2) look to your sqr code and locate any print statement with the hypotheses that you generate the xls output with the write stateme= nt Franck, > Message du 23/10/07 10:42 > De : "V=C3=A9ronique Mermaz"=20 > A : sqr-users@sqrug.org > Copie =C3=A0 :=20 > Objet : [sqr-users] SQR process generating unwanted empty PDF file > >=20 >=20 > Hello, I'm running an SQR process which is supposed to generate an XLS fi= le. It works fine but for an unknown reason an additional empty PDF file is= created as well.=20 > It happens only when the excel file reaches a certain number of lines (mo= re than 60 lines). > Any parameter to increase to fix this issue?Any ideas are welcome.=20 > ThanksBest regards, Veronique >=20 > _________________________________________________________________ > News, entertainment and everything you care about at Live.com. Get it now! > http://www.live.com/getstarted.aspx >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 05:14:47 2007 From: =?Windows-1252?Q?V=E9ronique_Mermaz?= Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Tue, 23 Oct 2007 09:11:09 +0000 Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing recor= d=3D{#RecordLength}:fixed Then I'm initiating a string containing tabulatio= ns as delimiter and I'm assigning data into it within a begin-sql loop like= this let $delimiter =3D chr(9) Let $print_Text =3D $Emplid = || $delimiter || $Name = || $delimiter and then I=92m just writing my string with=20 WRITE 1 FROM $print_Text next-listingAnd I'm closing the file at the end Close 1 I am not using -pri= nter:pd Thanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject: Re= :[sqr-users] SQR process generating unwanted empty PDF file> Date: Tue, 23 = Oct 2007 10:44:40 +0200> > you should have the option -printer:pd > 1) supr= ess this option> 2) look to your sqr code and locate any print statement> w= ith the hypotheses that you generate the xls output with the write statemen= t> > Franck,> > > > > > > Message du 23/10/07 10:42> > De : "V=E9ronique Me= rmaz" > > A : sqr-users@sqrug.org> > Copie =E0 : > > Objet : [sqr-users] SQ= R process generating unwanted empty PDF file> >> > > > > > Hello, I'm runni= ng an SQR process which is supposed to generate an XLS file. It works fine = but for an unknown reason an additional empty PDF file is created as well. = > > It happens only when the excel file reaches a certain number of lines (= more than 60 lines).> > Any parameter to increase to fix this issue?Any ide= as are welcome. > > ThanksBest regards, Veronique> > > > __________________= _______________________________________________> > News, entertainment and = everything you care about at Live.com. Get it now!> > http://www.live.com/g= etstarted.aspx> > > > _______________________________________________> > sq= r-users mailing list> > sqr-users@sqrug.org> > http://www.sqrug.org/mailman= /listinfo/sqr-users> > > > > > Cr=E9ez votre adresse =E9lectronique pr=E9no= m.nom@laposte.net> 1 Go d'espace de stockage, anti-spam et anti-virus int= =E9gr=E9s.> > _______________________________________________> sqr-users ma= iling list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-= users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 05:31:51 2007 From: "Peter Burton" Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Tue, 23 Oct 2007 05:26:55 -0400 It is the "Next-Listing" that is causing the issue. Why do you have that i= n your program if you are not using any PRINT statements. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of V=E9ronique Me= rmaz Sent: Tuesday, October 23, 2007 5:11 AM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing recor= d=3D{#RecordLength}:fixed Then I'm initiating a string containing tabulatio= ns as delimiter and I'm assigning data into it within a begin-sql loop like= this let $delimiter =3D chr(9) Let $print_Text =3D $Emplid = || $delimiter || $Name = || $delimiter and then I'm just writing my string with=20 WRITE 1 FROM $print_Text next-listingAnd I'm closing the file at the end Close 1 I am not using -pri= nter:pd Thanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject: Re= :[sqr-users] SQR process generating unwanted empty PDF file> Date: Tue, 23 = Oct 2007 10:44:40 +0200> > you should have the option -printer:pd > 1) supr= ess this option> 2) look to your sqr code and locate any print statement> w= ith the hypotheses that you generate the xls output with the write statemen= t> > Franck,> > > > > > > Message du 23/10/07 10:42> > De : "V=E9ronique Me= rmaz" > > A : sqr-users@sqrug.org> > Copie =E0 : > > Objet : [sqr-users] SQ= R process generating unwanted empty PDF file> >> > > > > > Hello, I'm runni= ng an SQR process which is supposed to generate an XLS file. It works fine = but for an unknown reason an additional empty PDF file is created as well. = > > It happens only when the excel file reaches a certain number of lines (= more than 60 lines).> > Any parameter to increase to fix this issue?Any ide= as are welcome. > > ThanksBest regards, Veronique> > > > __________________= _______________________________________________> > News, entertainment and = everything you care about at Live.com. Get it now!> > http://www.live.com/g= etstarted.aspx> > > > _______________________________________________> > sq= r-users mailing list> > sqr-users@sqrug.org> > http://www.sqrug.org/mailman= /listinfo/sqr-users> > > > > > Cr=E9ez votre adresse =E9lectronique pr=E9no= m.nom@laposte.net> 1 Go d'espace de stockage, anti-spam et anti-virus int= =E9gr=E9s.> > _______________________________________________> sqr-users ma= iling list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-= users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 05:45:18 2007 From: =?iso-8859-1?Q?V=E9ronique_Mermaz?= Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Tue, 23 Oct 2007 09:41:42 +0000 Hi Peter, =20 Well spotted! I tested successfully. Great thanks, Veronique > From: peter.burton@oracle.com> To: sqr-users@sqrug.org> Subject: RE: [sqr= -users] SQR process generating unwanted empty PDF file> Date: Tue, 23 Oct 2= 007 05:26:55 -0400> > It is the "Next-Listing" that is causing the issue. W= hy do you have that in your program if you are not using any PRINT statemen= ts.> > Peter> > -----Original Message-----> From: sqr-users-bounces+peter.b= urton=3Doracle.com@sqrug.org [mailto:sqr-users-bounces+peter.burton=3Doracl= e.com@sqrug.org] On Behalf Of V=E9ronique Mermaz> Sent: Tuesday, October 23= , 2007 5:11 AM> To: This list is for discussion about the SQR database repo= rting language from Hyperion Solutions.> Subject: RE: [sqr-users] SQR proce= ss generating unwanted empty PDF file> > > Hi Franck and thanks for your in= put.> I'm creating an xls file open $Output_Filename_Full as 1 for-writing = record=3D{#RecordLength}:fixed Then I'm initiating a string containing tabu= lations as delimiter and I'm assigning data into it within a begin-sql loop= like this let $delimiter =3D chr(9)> Let $print_Text =3D $Emplid || $delim= iter || $Name || $delimiter> and then I'm just writing my string with > WRI= TE 1 FROM $print_Text> next-listingAnd I'm closing the file at the end Clos= e 1 I am not using -printer:pd Thanks,> Veronique> > From: franck.masson200= 2@laposte.net> To: sqr-users@sqrug.org> Subject: Re:[sqr-users] SQR process= generating unwanted empty PDF file> Date: Tue, 23 Oct 2007 10:44:40 +0200>= > you should have the option -printer:pd > 1) supress this option> 2) look= to your sqr code and locate any print statement> with the hypotheses that = you generate the xls output with the write statement> > Franck,> > > > > > = > Message du 23/10/07 10:42> > De : "V=E9ronique Mermaz" > > A : sqr-users@= sqrug.org> > Copie =E0 : > > Objet : [sqr-users] SQR process generating unw= anted empty PDF file> >> > > > > > Hello, I'm running an SQR process which = is supposed to generate an XLS file. It works fine but for an unknown reaso= n an additional empty PDF file is created as well. > > It happens only when= the excel file reaches a certain number of lines (more than 60 lines).> > = Any parameter to increase to fix this issue?Any ideas are welcome. > > Than= ksBest regards, Veronique> > > > __________________________________________= _______________________> > News, entertainment and everything you care abou= t at Live.com. Get it now!> > http://www.live.com/getstarted.aspx> > > > __= _____________________________________________> > sqr-users mailing list> > = sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users> > >= > > > Cr=E9ez votre adresse =E9lectronique pr=E9nom.nom@laposte.net> 1 Go = d'espace de stockage, anti-spam et anti-virus int=E9gr=E9s.> > ____________= ___________________________________> sqr-users mailing list> sqr-users@sqru= g.org> http://www.sqrug.org/mailman/listinfo/sqr-users> ___________________= ______________________________________________> Explore the seven wonders o= f the world> http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3De= n-US&form=3DQBRE> > _______________________________________________> sqr-us= ers mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinf= o/sqr-users> > > _______________________________________________> sqr-users= mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/s= qr-users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 06:42:52 2007 From: "Peter Burton" Subject: RE: [sqr-users] Issue with convert function in Hyperion 8.5 Date: Tue, 23 Oct 2007 06:38:54 -0400 Maddy, What platform are you running on? Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of maddy Sent: Monday, October 22, 2007 6:04 PM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: [sqr-users] Issue with convert function in Hyperion 8.5 (SQR 5528) ODBC SQL dbdesc: SQLNumResultCols error 102 in cursor 28: [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Incorrect syntax near '?'. Error on line 1629: (SQR 3716) Error in SQL statement. Errors were found in the program file. SQR: Program Aborting. Iam getting the above error while executing a SQR program using Hyperion 8.= 5. convert(datetime,substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),1= 01 + '01' + substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),101),6,5)) &FROM_DT The same code works fine in Brio 6.2 . What could be the issue ? Why is the above code working when I replace $_gsTo_Date with getdate().I couldn't find the general syntax for convert () function in Hyperion 8.5. Please advice. Thanks! Maddy _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 09:32:31 2007 Date: Tue, 23 Oct 2007 09:27:13 -0400 From: maddy Subject: Re: [sqr-users] Issue with convert function in Hyperion 8.5 Hyperion 8.5 installed on Windows XP professional Thanks On 10/23/07, Peter Burton wrote: > Maddy, > > What platform are you running on? > > Peter > > -----Original Message----- > From: sqr-users-bounces+peter.burton=oracle.com@sqrug.org [mailto:sqr-users-bounces+peter.burton=oracle.com@sqrug.org] On Behalf Of maddy > Sent: Monday, October 22, 2007 6:04 PM > To: This list is for discussion about the SQR database reporting language from Hyperion Solutions. > Subject: [sqr-users] Issue with convert function in Hyperion 8.5 > > (SQR 5528) ODBC SQL dbdesc: SQLNumResultCols error 102 in cursor 28: > [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Incorrect > syntax near '?'. > Error on line 1629: > (SQR 3716) Error in SQL statement. > Errors were found in the program file. > SQR: Program Aborting. > > > Iam getting the above error while executing a SQR program using Hyperion 8.5. > > convert(datetime,substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date),101 > + '01' + substring(convert(char(10), dateadd(mm, -1, > $_gsTo_Date),101),6,5)) &FROM_DT > > > The same code works fine in Brio 6.2 . What could be the issue ? Why > is the above code working when I replace $_gsTo_Date with getdate().I > couldn't find the general syntax for convert () function in Hyperion > 8.5. Please advice. > > > Thanks! > Maddy > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 11:54:24 2007 Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Tue, 23 Oct 2007 11:51:48 -0400 From: How do you generate an xls file from sqr? I know how to generate a .csv, b= ut not an .xls. -Steve Jones=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-us= ers-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of V=E9ronique = Mermaz Sent: Tuesday, October 23, 2007 2:11 AM To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing recor= d=3D{#RecordLength}:fixed Then I'm initiating a string containing tabulatio= ns as delimiter and I'm assigning data into it within a begin-sql loop like= this let $delimiter =3D chr(9) Let $print_Text =3D $Emplid = || $delimiter || $Name = || $delimiter and then I'm just writing my string with WRITE 1 FROM $print_Text next-list= ingAnd I'm closing the file at the end Close 1 I am not using -printer:pd T= hanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject:=20 > Re:[sqr-users] SQR process generating unwanted empty PDF file> Date:=20 > Tue, 23 Oct 2007 10:44:40 +0200> > you should have the option=20 > -printer:pd > 1) supress this option> 2) look to your sqr code and=20 > locate any print statement> with the hypotheses that you generate the=20 > xls output with the write statement> > Franck,> > > > > > > Message du=20 > 23/10/07 10:42> > De : "V=E9ronique Mermaz" > > A : sqr-users@sqrug.org>= =20 > > Copie =E0 : > > Objet : [sqr-users] SQR process generating unwanted=20 > empty PDF file> >> > > > > > Hello, I'm running an SQR process which=20 > is supposed to generate an XLS file. It works fine but for an unknown=20 > reason an additional empty PDF file is created as well. > > It happens=20 > only when the excel file reaches a certain number of lines (more than=20 > 60 lines).> > Any parameter to increase to fix this issue?Any ideas=20 > are welcome. > > ThanksBest regards, Veronique> > > >=20 > _________________________________________________________________> >=20 > News, entertainment and everything you care about at Live.com. Get it=20 > now!> > http://www.live.com/getstarted.aspx> > > >=20 > _______________________________________________> > sqr-users mailing=20 > list> > sqr-users@sqrug.org> >=20 > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > > > Cr=E9ez votre= =20 > adresse =E9lectronique pr=E9nom.nom@laposte.net> 1 Go d'espace de=20 > stockage, anti-spam et anti-virus int=E9gr=E9s.> >=20 > _______________________________________________> sqr-users mailing=20 > list> sqr-users@sqrug.org>=20 > http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 12:04:49 2007 Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Tue, 23 Oct 2007 11:01:54 -0500 From: "Bob Stone" check the archives - there is a lot of discussion about this. Jim Womeldor= f sent out an SQC a few times that had procedures for creating an XLS. You can also create a CSV, with a .xls and Excel will open it correctly. I= t doesn't have all the formatting you may want - for that, check the archiv= es. http://www.sqrug.org/sqr-users/=20 -----Original Message----- From: sqr-users-bounces+bstone=3Dfastenal.com@sqrug.org [mailto:sqr-users-b= ounces+bstone=3Dfastenal.com@sqrug.org] On Behalf Of Jones.Steven@ups-scs.c= om Sent: Tuesday, October 23, 2007 10:52 AM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file How do you generate an xls file from sqr? I know how to generate a .csv, b= ut not an .xls. -Steve Jones=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-us= ers-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of V=E9ronique = Mermaz Sent: Tuesday, October 23, 2007 2:11 AM To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing recor= d=3D{#RecordLength}:fixed Then I'm initiating a string containing tabulatio= ns as delimiter and I'm assigning data into it within a begin-sql loop like= this let $delimiter =3D chr(9) Let $print_Text =3D $Emplid = || $delimiter || $Name = || $delimiter and then I'm just writing my string with WRITE 1 FROM $print_Text next-list= ingAnd I'm closing the file at the end Close 1 I am not using -printer:pd T= hanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject:=20 > Re:[sqr-users] SQR process generating unwanted empty PDF file> Date:=20 > Tue, 23 Oct 2007 10:44:40 +0200> > you should have the option=20 > -printer:pd > 1) supress this option> 2) look to your sqr code and=20 > locate any print statement> with the hypotheses that you generate the=20 > xls output with the write statement> > Franck,> > > > > > > Message du=20 > 23/10/07 10:42> > De : "V=E9ronique Mermaz" > > A : sqr-users@sqrug.org>= =20 > > Copie =E0 : > > Objet : [sqr-users] SQR process generating unwanted=20 > empty PDF file> >> > > > > > Hello, I'm running an SQR process which=20 > is supposed to generate an XLS file. It works fine but for an unknown=20 > reason an additional empty PDF file is created as well. > > It happens=20 > only when the excel file reaches a certain number of lines (more than=20 > 60 lines).> > Any parameter to increase to fix this issue?Any ideas=20 > are welcome. > > ThanksBest regards, Veronique> > > >=20 > _________________________________________________________________> >=20 > News, entertainment and everything you care about at Live.com. Get it=20 > now!> > http://www.live.com/getstarted.aspx> > > >=20 > _______________________________________________> > sqr-users mailing=20 > list> > sqr-users@sqrug.org> >=20 > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > > > Cr=E9ez votre= =20 > adresse =E9lectronique pr=E9nom.nom@laposte.net> 1 Go d'espace de=20 > stockage, anti-spam et anti-virus int=E9gr=E9s.> >=20 > _______________________________________________> sqr-users mailing=20 > list> sqr-users@sqrug.org>=20 > http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 12:25:15 2007 From: "Peter Burton" Subject: RE: [sqr-users] Issue with convert function in Hyperion 8.5 Date: Tue, 23 Oct 2007 12:21:07 -0400 Maddy, This is an ODBC driver issue. I tested 8.5.0.3 under Linux and got the fol= lowing error message when trying my test case .. Looks like things have ch= anged from the ODBC driver used with SQR 6.2 ... Hyperion SQR Server - 8.5.0.3.0.581 Copyright (c) 1994-2007 Hyperion Solutions Corporation. All Rights Reserve= d. (SQR 5528) ODBC SQL dbsql: SQLPrepare error 7332 in cursor 1: [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]The untyped va= riable ? is allowed only in in a WHERE clause or the SET clause of an UPDAT= E statement or the VALUES list of an INSERT statement SQL: SELECT convert(datetime, substring(convert(char(10), dateadd(mm, -1, ?),101),1,3) + '01' + substring(convert(char(10), dateadd(mm, -1, ?),101),6,5)) from dual=20 Error on line 14: (SQR 3716) Error in SQL statement Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of maddy Sent: Tuesday, October 23, 2007 9:27 AM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: Re: [sqr-users] Issue with convert function in Hyperion 8.5 Hyperion 8.5 installed on Windows XP professional Thanks On 10/23/07, Peter Burton wrote: > Maddy, > > What platform are you running on? > > Peter > > -----Original Message----- > From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-u= sers-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of maddy > Sent: Monday, October 22, 2007 6:04 PM > To: This list is for discussion about the SQR database reporting language= from Hyperion Solutions. > Subject: [sqr-users] Issue with convert function in Hyperion 8.5 > > (SQR 5528) ODBC SQL dbdesc: SQLNumResultCols error 102 in cursor 28: > [DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]Incorrect > syntax near '?'. > Error on line 1629: > (SQR 3716) Error in SQL statement. > Errors were found in the program file. > SQR: Program Aborting. > > > Iam getting the above error while executing a SQR program using Hyperion = 8.5. > > convert(datetime,substring(convert(char(10), dateadd(mm, -1, $_gsTo_Date)= ,101 > + '01' + substring(convert(char(10), dateadd(mm, -1, > $_gsTo_Date),101),6,5)) &FROM_DT > > > The same code works fine in Brio 6.2 . What could be the issue ? Why > is the above code working when I replace $_gsTo_Date with getdate().I > couldn't find the general syntax for convert () function in Hyperion > 8.5. Please advice. > > > Thanks! > Maddy > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Oct 23 12:45:05 2007 Date: Tue, 23 Oct 2007 12:42:13 -0400 From: "Dee Lind" Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi, I am relatively new with SQR's and have recently written one that created an .XLS file. I did find out how to do this from emails in the SQR UG archives. The SQR we wrote used tab delimiters and defined the output file with an .XLS extension. 1) To get the tab delimiter: encode '<9>' into $tab (See #5 below for example of use in syntax) 2) To get the extension: Let $cobra_report = $FILEPATH || '.XLS' ($FILEPATH was the path and file name we wanted to route it to on our file server.) 3) Define output file and open: Open $cobra_report as 1 for-writing record=700:fixed status=#ostat then 4) To write the file from a variable that was built in the program: write 1 from $cobra_rpt_hdr_line 5) Also, if you need to retain any leading zeroes, use the following code around the data: let $quote = '="' !This combination will retain leading zeroes when the file is opened. When we used this in combination with tab delimiting. When we double-clicked on the output file, it automatically opened as Excel and didn't need to go through the wizard to define delimiters or text fields (to retain leading zeroes.) Here is an example of how it is used to build the output file combined with the tab delimiters: ($quotea is just a plain quote let $quotea = '"') let $cobra_rpt_ee_line = '="00"' || $tab || $quote || $j_emplid || $quotea || $tab As you can see, the code around the 00's is hard-coded, but the code around $J_emplid uses the variables that were assigned. The code around $j_emplid would be interpreted as: <9> || =" || $J_emplid || " || <9> ... and so on. I hope this helps. The SQR UG website has helped me tremendously. There may be a better way to do this, but this is working for us. D. >>> 10/23/2007 11:51 AM >>> How do you generate an xls file from sqr? I know how to generate a .csv, but not an .xls. -Steve Jones -----Original Message----- From: sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org] On Behalf Of Véronique Mermaz Sent: Tuesday, October 23, 2007 2:11 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing record={#RecordLength}:fixed Then I'm initiating a string containing tabulations as delimiter and I'm assigning data into it within a begin-sql loop like this let $delimiter = chr(9) Let $print_Text = $Emplid || $delimiter || $Name || $delimiter and then I'm just writing my string with WRITE 1 FROM $print_Text next-listingAnd I'm closing the file at the end Close 1 I am not using -printer:pd Thanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject: > Re:[sqr-users] SQR process generating unwanted empty PDF file> Date: > Tue, 23 Oct 2007 10:44:40 +0200> > you should have the option > -printer:pd > 1) supress this option> 2) look to your sqr code and > locate any print statement> with the hypotheses that you generate the > xls output with the write statement> > Franck,> > > > > > > Message du > 23/10/07 10:42> > De : "Véronique Mermaz" > > A : sqr-users@sqrug.org> > > Copie à : > > Objet : [sqr-users] SQR process generating unwanted > empty PDF file> >> > > > > > Hello, I'm running an SQR process which > is supposed to generate an XLS file. It works fine but for an unknown > reason an additional empty PDF file is created as well. > > It happens > only when the excel file reaches a certain number of lines (more than > 60 lines).> > Any parameter to increase to fix this issue?Any ideas > are welcome. > > ThanksBest regards, Veronique> > > > > _________________________________________________________________> > > News, entertainment and everything you care about at Live.com. Get it > now!> > http://www.live.com/getstarted.aspx> > > > > _______________________________________________> > sqr-users mailing > list> > sqr-users@sqrug.org> > > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > > > Créez votre > adresse électronique prénom.nom@laposte.net> 1 Go d'espace de > stockage, anti-spam et anti-virus intégrés.> > > _______________________________________________> sqr-users mailing > list> sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 03:44:22 2007 Date: Wed, 24 Oct 2007 13:13:17 +0530 From: "Bhavesh Solanki" Subject: [sqr-users] Regarding changing fonts of SQR report at run time I want to ask can u change font of SQR during runtime? =20 Regards Bhavesh Solanki =20 ***************************************************************************= ************************************************ This e-mail communication and any attachments may be privileged and confide= ntial to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, p= lease do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this e= mail in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com= . ***************************************************************************= ************************************************ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 04:14:33 2007 Date: Wed, 24 Oct 2007 10:10:59 +0200 From: =?iso-8859-1?Q?J=F6nsson_Anders?= Subject: [sqr-users] Convert Sqr to Sql Hi everyone Is there any tool that can convert from Sqr-script to Sql-script? I want to= transform all of our Sqr to Sql so that I can add them to the Microsoft Sq= l Server Agent (2005). We are using Sqr version 6.3.1. Regards Anders _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 09:02:03 2007 Date: Wed, 24 Oct 2007 08:57:36 -0400 From: "Dee Lind" Subject: Re: [sqr-users] Regarding changing fonts of SQR report at run time Hi Bhavesh, =20 I have done this in an SQR I recently wrote, which is working in our applic= ation. ( I am relatively new with SQR's, so there may be a better way to do= this.) Here is the code: =20 print $page_4_line_13 (+1,12) print $page_4_line_14 (+1,12) print $page_4_line_15 (+1,12) !--------------------------------------- !Change to smaller point size=20 !--------------------------------------- =20 alter-printer=20 font =3D 5 point-size =3D 10 =20 print $page_4_line_16 (+2,1) wrap 105 15 =20 !---------------------------------------------- !Change back to regular point size=20 !---------------------------------------------- =20 alter-printer=20 font =3D 5 point-size =3D 11 =20 print $page_4_line_17 (+1,30) print $page_4_line_18 (+1,30) print $page_4_line_19 (+1,30) print $page_4_line_20 (+1,30) =20 =20 Hope this helps. =20 D. >>> "Bhavesh Solanki" 10/24/2007 3:43 AM >>> I want to ask can u change font of SQR during runtime? Regards Bhavesh Solanki ***************************************************************************= ************************************************ This e-mail communication and any attachments may be privileged and confide= ntial to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, p= lease do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this e= mail in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com= . ***************************************************************************= ************************************************ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 09:41:12 2007 From: Manu A Date: Wed, 24 Oct 2007 19:07:36 +0530 Subject: [sqr-users] sqrt problem Dear All , I have build sqrt using 8.5 version and running on Hyperion 9.2 . Getting the following error :- (SQR 6) Corrupt message file: Invalid count (Got 1073, Should be 1132). What is the workaround of this issue . Regards, Manu Agarwal Tata Consultancy Services Mailto: manu.a@tcs.com Website: http://www.tcs.com ____________________________________________ Experience certainty. IT Services Business Solutions Outsourcing ____________________________________________ =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 09:46:36 2007 From: the dragon Subject: RE: [sqr-users] sqrt problem Date: Wed, 24 Oct 2007 08:43:56 -0500 I am not familiar with that error message, but off the top of my head I wou= ld say it needs to be recompiled at the current version. peace, clark 'the dragon' willis PSA: Salary <> Slavery. If you earn a salary, your employer is renting your= services for 40 hours a week, not purchasing your soul. Your time is the o= nly real finite asset that you have, and once used it can never be recovere= d, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you = can determine how it will be spent. Be careful lest you let other people sp= end it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, an= d by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because= I notice it always coincides with their own desires." - Susan B. Anthony > > Dear All , > > I have build sqrt using 8.5 version and running on Hyperion 9.2 . > > Getting the following error :- > > (SQR 6) Corrupt message file: Invalid count (Got 1073, Should be 1132). > > What is the workaround of this issue . > > Regards, > Manu Agarwal _________________________________________________________________ Windows Live Hotmail and Microsoft Office Outlook =96 together at last. =A0= Get it now. http://office.microsoft.com/en-us/outlook/HA102225181033.aspx?pid=3DCL10062= 6971033 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 11:10:18 2007 From: "Peter Burton" Subject: RE: [sqr-users] sqrt problem Date: Wed, 24 Oct 2007 11:06:22 -0400 Manu, SQR executables are revision locked. That is you cannot run "sqrt" for SQR= 8.5 in an 9.2 environment. You must use the "sqrt" executable from the 9.= 2 environment. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of Manu A Sent: Wednesday, October 24, 2007 9:38 AM To: sqr-users@sqrug.org Subject: [sqr-users] sqrt problem Importance: High Dear All , I have build sqrt using 8.5 version and running on Hyperion 9.2 . Getting the following error :- (SQR 6) Corrupt message file: Invalid count (Got 1073, Should be 1132). What is the workaround of this issue . Regards, Manu Agarwal Tata Consultancy Services Mailto: manu.a@tcs.com Website: http://www.tcs.com ____________________________________________ Experience certainty. IT Services Business Solutions Outsourcing ____________________________________________ =3D=3D=3D=3D=3D-----=3D=3D=3D=3D=3D-----=3D=3D=3D=3D=3D Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 12:41:47 2007 Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Wed, 24 Oct 2007 12:38:56 -0400 From: Thanks. Does anyone know where to get a more complete description of the s= ylk syntax?=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-us= ers-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of Bob Stone Sent: Tuesday, October 23, 2007 9:02 AM To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file check the archives - there is a lot of discussion about this. Jim Womeldor= f sent out an SQC a few times that had procedures for creating an XLS. You can also create a CSV, with a .xls and Excel will open it correctly. I= t doesn't have all the formatting you may want - for that, check the archiv= es. http://www.sqrug.org/sqr-users/=20 -----Original Message----- From: sqr-users-bounces+bstone=3Dfastenal.com@sqrug.org [mailto:sqr-users-b= ounces+bstone=3Dfastenal.com@sqrug.org] On Behalf Of Jones.Steven@ups-scs.c= om Sent: Tuesday, October 23, 2007 10:52 AM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file How do you generate an xls file from sqr? I know how to generate a .csv, b= ut not an .xls. -Steve Jones=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-us= ers-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of V=E9ronique = Mermaz Sent: Tuesday, October 23, 2007 2:11 AM To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing recor= d=3D{#RecordLength}:fixed Then I'm initiating a string containing tabulatio= ns as delimiter and I'm assigning data into it within a begin-sql loop like= this let $delimiter =3D chr(9) Let $print_Text =3D $Emplid = || $delimiter || $Name = || $delimiter and then I'm just writing my string with WRITE 1 FROM $print_Text next-list= ingAnd I'm closing the file at the end Close 1 I am not using -printer:pd T= hanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject:=20 > Re:[sqr-users] SQR process generating unwanted empty PDF file> Date:=20 > Tue, 23 Oct 2007 10:44:40 +0200> > you should have the option=20 > -printer:pd > 1) supress this option> 2) look to your sqr code and=20 > locate any print statement> with the hypotheses that you generate the=20 > xls output with the write statement> > Franck,> > > > > > > Message du > 23/10/07 10:42> > De : "V=E9ronique Mermaz" > > A : sqr-users@sqrug.org> > > Copie =E0 : > > Objet : [sqr-users] SQR process generating unwanted > empty PDF file> >> > > > > > Hello, I'm running an SQR process which=20 > is supposed to generate an XLS file. It works fine but for an unknown=20 > reason an additional empty PDF file is created as well. > > It happens=20 > only when the excel file reaches a certain number of lines (more than=20 > 60 lines).> > Any parameter to increase to fix this issue?Any ideas=20 > are welcome. > > ThanksBest regards, Veronique> > > >=20 > _________________________________________________________________> >=20 > News, entertainment and everything you care about at Live.com. Get it=20 > now!> > http://www.live.com/getstarted.aspx> > > >=20 > _______________________________________________> > sqr-users mailing > list> > sqr-users@sqrug.org> > > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > > > Cr=E9ez votre= =20 > adresse =E9lectronique pr=E9nom.nom@laposte.net> 1 Go d'espace de=20 > stockage, anti-spam et anti-virus int=E9gr=E9s.> >=20 > _______________________________________________> sqr-users mailing > list> sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 24 14:18:52 2007 Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Date: Wed, 24 Oct 2007 14:16:02 -0400 From: "Sandler, Aaron" Take a look at the sylk demo and sylk.sqc files at http://www.ontko.com/sqr= /sylk.html. Most of the syntax that you need to know is in this file. The other way see the sylk syntax is to save a spreadsheet as a sylk file t= hen look at the file in a text editor to see how the information is saved. Aaron=20 -----Original Message----- From: sqr-users-bounces+sandlera=3Ddfo-mpo.gc.ca@sqrug.org [mailto:sqr-user= s-bounces+sandlera=3Ddfo-mpo.gc.ca@sqrug.org] On Behalf Of Jones.Steven@ups= -scs.com Sent: October 24, 2007 12:39 PM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Thanks. Does anyone know where to get a more complete description of the s= ylk syntax?=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-us= ers-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of Bob Stone Sent: Tuesday, October 23, 2007 9:02 AM To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file check the archives - there is a lot of discussion about this. Jim Womeldor= f sent out an SQC a few times that had procedures for creating an XLS. You can also create a CSV, with a .xls and Excel will open it correctly. I= t doesn't have all the formatting you may want - for that, check the archiv= es. http://www.sqrug.org/sqr-users/=20 -----Original Message----- From: sqr-users-bounces+bstone=3Dfastenal.com@sqrug.org [mailto:sqr-users-b= ounces+bstone=3Dfastenal.com@sqrug.org] On Behalf Of Jones.Steven@ups-scs.c= om Sent: Tuesday, October 23, 2007 10:52 AM To: sqr-users@sqrug.org Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file How do you generate an xls file from sqr? I know how to generate a .csv, b= ut not an .xls. -Steve Jones=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-us= ers-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of V=E9ronique = Mermaz Sent: Tuesday, October 23, 2007 2:11 AM To: This list is for discussion about the SQR database reporting languagefr= om Hyperion Solutions. Subject: RE: [sqr-users] SQR process generating unwanted empty PDF file Hi Franck and thanks for your input. I'm creating an xls file open $Output_Filename_Full as 1 for-writing recor= d=3D{#RecordLength}:fixed Then I'm initiating a string containing tabulatio= ns as delimiter and I'm assigning data into it within a begin-sql loop like= this let $delimiter =3D chr(9) Let $print_Text =3D $Emplid = || $delimiter || $Name = || $delimiter and then I'm just writing my string with WRITE 1 FROM $print_Text next-list= ingAnd I'm closing the file at the end Close 1 I am not using -printer:pd T= hanks, Veronique > From: franck.masson2002@laposte.net> To: sqr-users@sqrug.org> Subject:=20 > Re:[sqr-users] SQR process generating unwanted empty PDF file> Date:=20 > Tue, 23 Oct 2007 10:44:40 +0200> > you should have the option=20 > -printer:pd > 1) supress this option> 2) look to your sqr code and=20 > locate any print statement> with the hypotheses that you generate the=20 > xls output with the write statement> > Franck,> > > > > > > Message du > 23/10/07 10:42> > De : "V=E9ronique Mermaz" > > A : sqr-users@sqrug.org> > > Copie =E0 : > > Objet : [sqr-users] SQR process generating unwanted > empty PDF file> >> > > > > > Hello, I'm running an SQR process which=20 > is supposed to generate an XLS file. It works fine but for an unknown=20 > reason an additional empty PDF file is created as well. > > It happens=20 > only when the excel file reaches a certain number of lines (more than=20 > 60 lines).> > Any parameter to increase to fix this issue?Any ideas=20 > are welcome. > > ThanksBest regards, Veronique> > > >=20 > _________________________________________________________________> >=20 > News, entertainment and everything you care about at Live.com. Get it=20 > now!> > http://www.live.com/getstarted.aspx> > > >=20 > _______________________________________________> > sqr-users mailing > list> > sqr-users@sqrug.org> > > http://www.sqrug.org/mailman/listinfo/sqr-users> > > > > > Cr=E9ez votre= =20 > adresse =E9lectronique pr=E9nom.nom@laposte.net> 1 Go d'espace de=20 > stockage, anti-spam et anti-virus int=E9gr=E9s.> >=20 > _______________________________________________> sqr-users mailing > list> sqr-users@sqrug.org> > http://www.sqrug.org/mailman/listinfo/sqr-users _________________________________________________________________ Explore the seven wonders of the world http://search.msn.com/results.aspx?q=3D7+wonders+world&mkt=3Den-US&form=3DQ= BRE _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 25 06:44:37 2007 Subject: RE: [sqr-users] Regarding changing fonts of SQR report at runtime Date: Thu, 25 Oct 2007 16:12:53 +0530 From: "Bhavesh Solanki" Thanx Dee I will try out this and get back to u Regards Bhavesh Solanki -----Original Message----- From: Dee Lind [mailto:Dlind@rescare.com]=20 Sent: Wednesday, October 24, 2007 6:28 PM To: sqr-users@sqrug.org Subject: Re: [sqr-users] Regarding changing fonts of SQR report at runtime Hi Bhavesh, =20 I have done this in an SQR I recently wrote, which is working in our application. ( I am relatively new with SQR's, so there may be a better way to do this.) Here is the code: =20 print $page_4_line_13 (+1,12) print $page_4_line_14 (+1,12) print $page_4_line_15 (+1,12) !--------------------------------------- !Change to smaller point size=20 !--------------------------------------- =20 alter-printer=20 font =3D 5 point-size =3D 10 =20 print $page_4_line_16 (+2,1) wrap 105 15 =20 !---------------------------------------------- !Change back to regular point size=20 !---------------------------------------------- =20 alter-printer=20 font =3D 5 point-size =3D 11 =20 print $page_4_line_17 (+1,30) print $page_4_line_18 (+1,30) print $page_4_line_19 (+1,30) print $page_4_line_20 (+1,30) =20 =20 Hope this helps. =20 D. >>> "Bhavesh Solanki" 10/24/2007 3:43 AM >>> I want to ask can u change font of SQR during runtime? Regards Bhavesh Solanki ************************************************************************ *************************************************** This e-mail communication and any attachments may be privileged and confidential to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, please do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this email in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com . ************************************************************************ *************************************************** _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users ***************************************************************************= ************************************************ This e-mail communication and any attachments may be privileged and confide= ntial to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, p= lease do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this e= mail in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com= . ***************************************************************************= ************************************************ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 25 06:56:11 2007 From: "Peter Burton" Subject: RE: [sqr-users] Regarding changing fonts of SQR report at runtime Date: Thu, 25 Oct 2007 06:52:05 -0400 You could also simply do PRINT {variable} {position} Font=3D{font_num} [Other options] PRINT {variable} {position} Point-Size=3D{point_size} [Other options] {position} =3D Position coordinates {variable} =3D Any Literal, Variable or Column {font_num} =3D Numeric Literal, Variable, or Column {point-size} =3D Numeric Literal, Variable, or Column Using this method the font and/or point-size change is limited to the singl= e PRINT statement. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of Bhavesh Solanki Sent: Thursday, October 25, 2007 6:43 AM To: This list is for discussion about the SQR database reportinglanguage fr= om Hyperion Solutions. Subject: RE: [sqr-users] Regarding changing fonts of SQR report at runtime Thanx Dee I will try out this and get back to u Regards Bhavesh Solanki -----Original Message----- From: Dee Lind [mailto:Dlind@rescare.com]=20 Sent: Wednesday, October 24, 2007 6:28 PM To: sqr-users@sqrug.org Subject: Re: [sqr-users] Regarding changing fonts of SQR report at runtime Hi Bhavesh, =20 I have done this in an SQR I recently wrote, which is working in our application. ( I am relatively new with SQR's, so there may be a better way to do this.) Here is the code: =20 print $page_4_line_13 (+1,12) print $page_4_line_14 (+1,12) print $page_4_line_15 (+1,12) !--------------------------------------- !Change to smaller point size=20 !--------------------------------------- =20 alter-printer=20 font =3D 5 point-size =3D 10 =20 print $page_4_line_16 (+2,1) wrap 105 15 =20 !---------------------------------------------- !Change back to regular point size=20 !---------------------------------------------- =20 alter-printer=20 font =3D 5 point-size =3D 11 =20 print $page_4_line_17 (+1,30) print $page_4_line_18 (+1,30) print $page_4_line_19 (+1,30) print $page_4_line_20 (+1,30) =20 =20 Hope this helps. =20 D. >>> "Bhavesh Solanki" 10/24/2007 3:43 AM >>> I want to ask can u change font of SQR during runtime? Regards Bhavesh Solanki ************************************************************************ *************************************************** This e-mail communication and any attachments may be privileged and confidential to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, please do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this email in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com . ************************************************************************ *************************************************** _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users ***************************************************************************= ************************************************ This e-mail communication and any attachments may be privileged and confide= ntial to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, p= lease do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this e= mail in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com= . ***************************************************************************= ************************************************ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Oct 25 08:59:29 2007 Date: Thu, 25 Oct 2007 08:55:45 -0400 From: "Dee Lind" Subject: RE: [sqr-users] Regarding changing fonts of SQR report at runtime Thanks Peter. This may be more efficient than what I was doing >>> "Peter Burton" 10/25/2007 6:52 AM >>> You could also simply do PRINT {variable} {position} Font=3D{font_num} [Other options] PRINT {variable} {position} Point-Size=3D{point_size} [Other options] {position} =3D Position coordinates {variable} =3D Any Literal, Variable or Column {font_num} =3D Numeric Literal, Variable, or Column {point-size} =3D Numeric Literal, Variable, or Column Using this method the font and/or point-size change is limited to the singl= e PRINT statement. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of Bhavesh Solanki Sent: Thursday, October 25, 2007 6:43 AM To: This list is for discussion about the SQR database reportinglanguage fr= om Hyperion Solutions. Subject: RE: [sqr-users] Regarding changing fonts of SQR report at runtime Thanx Dee I will try out this and get back to u Regards Bhavesh Solanki -----Original Message----- From: Dee Lind [mailto:Dlind@rescare.com]=20 Sent: Wednesday, October 24, 2007 6:28 PM To: sqr-users@sqrug.org=20 Subject: Re: [sqr-users] Regarding changing fonts of SQR report at runtime Hi Bhavesh, I have done this in an SQR I recently wrote, which is working in our application. ( I am relatively new with SQR's, so there may be a better way to do this.) Here is the code: print $page_4_line_13 (+1,12) print $page_4_line_14 (+1,12) print $page_4_line_15 (+1,12) !--------------------------------------- !Change to smaller point size=20 !--------------------------------------- alter-printer=20 font =3D 5 point-size =3D 10 print $page_4_line_16 (+2,1) wrap 105 15 !---------------------------------------------- !Change back to regular point size=20 !---------------------------------------------- alter-printer=20 font =3D 5 point-size =3D 11 print $page_4_line_17 (+1,30) print $page_4_line_18 (+1,30) print $page_4_line_19 (+1,30) print $page_4_line_20 (+1,30) Hope this helps. D. >>> "Bhavesh Solanki" 10/24/2007 3:43 AM >>> I want to ask can u change font of SQR during runtime? Regards Bhavesh Solanki ************************************************************************ *************************************************** This e-mail communication and any attachments may be privileged and confidential to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, please do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this email in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com . ************************************************************************ *************************************************** _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users=20 ***************************************************************************= ************************************************ This e-mail communication and any attachments may be privileged and confide= ntial to Hexaware and are intended only for the=20 use of the recipients named above. If you are not the intended recipient, p= lease do not review, disclose, disseminate,=20 distribute or copy this e-mail and attachments. If you have received this e= mail in error, please delete the same alongwith=20 all attachments thereto and notify us immediately at mailadmin@hexaware.com= . ***************************************************************************= ************************************************ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users=20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 12:26:33 2007 Date: Wed, 31 Oct 2007 12:23:49 -0400 From: "Eric Miller" Subject: [sqr-users] Problem with Version 613 running/compiling report Hello All, We are encountering a problem when running one of our SQR files with version 6.1.3. It is throwing an error saying the following: (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. SQR: Program Aborting. I have searched the archive and read the articles related to this, but none seem to solve my problem.=20 I have increased this variable to its max value and the error is still thrown. If I run it with the original value using versions 820 or 832 it will run fine. Is there any difference in configuration or anything for 613? Our problem seems to be specific to that version for some reason. Thanks in advance for the help, Eric =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 12:34:09 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Wed, 31 Oct 2007 11:31:58 -0500 From: "Knapp, Richard" Are you sure it is finding the init file with the new value? Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of Eric Miller Sent: Wednesday, October 31, 2007 11:24 AM To: sqr-users@sqrug.org Subject: [sqr-users] Problem with Version 613 running/compiling report Hello All, We are encountering a problem when running one of our SQR files with version 6.1.3. It is throwing an error saying the following: (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. SQR: Program Aborting. I have searched the archive and read the articles related to this, but none seem to solve my problem.=20 I have increased this variable to its max value and the error is still thrown. If I run it with the original value using versions 820 or 832 it will run fine. Is there any difference in configuration or anything for 613? Our problem seems to be specific to that version for some reason. Thanks in advance for the help, Eric =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 12:44:38 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Wed, 31 Oct 2007 12:41:52 -0400 From: "Eric Miller" I am not sure. There is a SQR.INI file in the C:\Windows\ directory (which points to the 832 install), then there are sqr_en.ini files in the individual directories for 832 and 820 but NOT 613. Will 613 just be trying to see what's in C:\Windows\SQR.INI and since that has data inside it pointing to the 832 install, it doesn't know what to do? Thanks for the Reply. -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Knapp, Richard Sent: Wednesday, October 31, 2007 12:32 PM To: This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions. Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Are you sure it is finding the init file with the new value? Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of Eric Miller Sent: Wednesday, October 31, 2007 11:24 AM To: sqr-users@sqrug.org Subject: [sqr-users] Problem with Version 613 running/compiling report Hello All, We are encountering a problem when running one of our SQR files with version 6.1.3. It is throwing an error saying the following: (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. SQR: Program Aborting. I have searched the archive and read the articles related to this, but none seem to solve my problem.=20 I have increased this variable to its max value and the error is still thrown. If I run it with the original value using versions 820 or 832 it will run fine. Is there any difference in configuration or anything for 613? Our problem seems to be specific to that version for some reason. Thanks in advance for the help, Eric =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 13:35:20 2007 Date: Wed, 31 Oct 2007 13:33:00 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Problem with Version 613 running/compiling report The way these versions handle processing limits ("Processing-Limits" in the ini) is that prior to 8.0, SQR would "cap" things at wherever limits were set. In 8.0 and above, they start at those limits, but will increase themselves "on-the-fly" up to the architectural limit. Did you try to use an -M{filename} flag on the command line, or did you just try to change the .ini file? If you haven't, try making a processing limits override file that sets PROGLINEPARS=65535 and use the -M{filename} flag on the command line for the 613 version. If that works, then you know that it was not finding whatever file you changed (plus you know that your code works in that version and the error was accurate). The order of where SQR looks for the SQR.INI file is... 1. The file name specified by the -ZIF{file} command-line flag. 2. The directory where the executable image resides. 3. The Windows system directory. HTH, Don On 10/31/07, Eric Miller wrote: > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > (which points to the 832 install), then there are sqr_en.ini files in > the individual directories for 832 and 820 but NOT 613. > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and since > that has data inside it pointing to the 832 install, it doesn't know > what to do? > > Thanks for the Reply. > > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > Behalf Of Knapp, Richard > Sent: Wednesday, October 31, 2007 12:32 PM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > report > > > Are you sure it is finding the init file with the new value? > > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu > > > -----Original Message----- > From: sqr-users-bounces+knappr= umsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf Of > Eric Miller > Sent: Wednesday, October 31, 2007 11:24 AM > To: sqr-users@sqrug.org > Subject: [sqr-users] Problem with Version 613 running/compiling report > > Hello All, > We are encountering a problem when running one of our SQR files with > version 6.1.3. It is throwing an error saying the following: > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > SQR: Program Aborting. > > I have searched the archive and read the articles related to this, but > none seem to solve my problem. > > I have increased this variable to its max value and the error is still > thrown. > > If I run it with the original value using versions 820 or 832 it will > run fine. > > Is there any difference in configuration or anything for 613? Our > problem seems to be specific to that version for some reason. > > Thanks in advance for the help, > Eric > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 14:31:46 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Wed, 31 Oct 2007 14:28:58 -0400 From: "Eric Miller" Thanks for the info Don. We are using the -M(filename) and I have put the max value(PROGLINEPARS=3D65535) in there and it still throws the same error. If I increase it to PROGLINEPARS=3D65536 it will complain about the max being 65535 so it seems like it is at least using the -M(file) I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) and it will process successfully. That is what has me so confused with this. Any other ideas? Thanks again. -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Don Mellen Sent: Wednesday, October 31, 2007 1:33 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Problem with Version 613 running/compiling report The way these versions handle processing limits ("Processing-Limits" in the ini) is that prior to 8.0, SQR would "cap" things at wherever limits were set. In 8.0 and above, they start at those limits, but will increase themselves "on-the-fly" up to the architectural limit. Did you try to use an -M{filename} flag on the command line, or did you just try to change the .ini file? If you haven't, try making a processing limits override file that sets PROGLINEPARS=3D65535 and use the -M{filename} flag on the command line for the 613 version. If that works, then you know that it was not finding whatever file you changed (plus you know that your code works in that version and the error was accurate). The order of where SQR looks for the SQR.INI file is... 1. The file name specified by the -ZIF{file} command-line flag. 2. The directory where the executable image resides. 3. The Windows system directory. HTH, Don On 10/31/07, Eric Miller wrote: > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > (which points to the 832 install), then there are sqr_en.ini files in > the individual directories for 832 and 820 but NOT 613. > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and since > that has data inside it pointing to the 832 install, it doesn't know > what to do? > > Thanks for the Reply. > > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Knapp, Richard > Sent: Wednesday, October 31, 2007 12:32 PM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > report > > > Are you sure it is finding the init file with the new value? > > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu > > > -----Original Message----- > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of > Eric Miller > Sent: Wednesday, October 31, 2007 11:24 AM > To: sqr-users@sqrug.org > Subject: [sqr-users] Problem with Version 613 running/compiling report > > Hello All, > We are encountering a problem when running one of our SQR files with > version 6.1.3. It is throwing an error saying the following: > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > SQR: Program Aborting. > > I have searched the archive and read the articles related to this, but > none seem to solve my problem. > > I have increased this variable to its max value and the error is still > thrown. > > If I run it with the original value using versions 820 or 832 it will > run fine. > > Is there any difference in configuration or anything for 613? Our > problem seems to be specific to that version for some reason. > > Thanks in advance for the help, > Eric > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 14:56:47 2007 From: franck.masson2002@laposte.net Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Wed, 31 Oct 2007 19:53:18 +0100 (CET) SQR will look first in the directory of the SQRW.exe for the sqr.ini if there is no file then it looks to c:\windows =20 > Message du 31/10/07 17:44 > De : "Eric Miller"=20 > A : "This list is for discussion about the SQR database reportinglanguage= from Hyperion Solutions."=20 > Copie =C3=A0 :=20 > Objet : RE: [sqr-users] Problem with Version 613 running/compiling report > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > (which points to the 832 install), then there are sqr_en.ini files in > the individual directories for 832 and 820 but NOT 613. >=20 > Will 613 just be trying to see what's in C:\Windows\SQR.INI and since > that has data inside it pointing to the 832 install, it doesn't know > what to do? >=20 > Thanks for the Reply. >=20 >=20 >=20 > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Knapp, Richard > Sent: Wednesday, October 31, 2007 12:32 PM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > report >=20 >=20 > Are you sure it is finding the init file with the new value? >=20 > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu >=20 >=20 > -----Original Message----- > From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of > Eric Miller > Sent: Wednesday, October 31, 2007 11:24 AM > To: sqr-users@sqrug.org > Subject: [sqr-users] Problem with Version 613 running/compiling report >=20 > Hello All, > We are encountering a problem when running one of our SQR files with > version 6.1.3. It is throwing an error saying the following: >=20 > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > SQR: Program Aborting. >=20 > I have searched the archive and read the articles related to this, but > none seem to solve my problem.=20 >=20 > I have increased this variable to its max value and the error is still > thrown. >=20 > If I run it with the original value using versions 820 or 832 it will > run fine. >=20 > Is there any difference in configuration or anything for 613? Our > problem seems to be specific to that version for some reason. >=20 > Thanks in advance for the help, > Eric >=20 >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 15:00:09 2007 Date: Wed, 31 Oct 2007 14:54:40 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Problem with Version 613 running/compiling report Well, I would have expected the error message to switch to PROGLINES instead of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. On 10/31/07, Eric Miller wrote: > > Thanks for the info Don. > > We are using the -M(filename) and I have put the max > value(PROGLINEPARS=65535) in there and it still throws the same error. > If I increase it to PROGLINEPARS=65536 it will complain about the max > being 65535 so it seems like it is at least using the -M(file) > > I can run the -M flag using 832 with PROGLINEPARS=18000(default) and it > will process successfully. That is what has me so confused with this. > > Any other ideas? > > > Thanks again. > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Wednesday, October 31, 2007 1:33 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > The way these versions handle processing limits ("Processing-Limits" in > the > ini) is that prior to 8.0, SQR would "cap" things at wherever limits > were > set. In 8.0 and above, they start at those limits, but will increase > themselves "on-the-fly" up to the architectural limit. > > Did you try to use an -M{filename} flag on the command line, or did you > just > try to change the .ini file? > > If you haven't, try making a processing limits override file that sets > PROGLINEPARS=65535 and use the -M{filename} flag on the command line for > the > 613 version. If that works, then you know that it was not finding > whatever > file you changed (plus you know that your code works in that version and > the > error was accurate). > > The order of where SQR looks for the SQR.INI file is... > 1. The file name specified by the -ZIF{file} command-line flag. > 2. The directory where the executable image resides. > 3. The Windows system directory. > > HTH, > Don > > > On 10/31/07, Eric Miller wrote: > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > > (which points to the 832 install), then there are sqr_en.ini files in > > the individual directories for 832 and 820 but NOT 613. > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and since > > that has data inside it pointing to the 832 install, it doesn't know > > what to do? > > > > Thanks for the Reply. > > > > > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > Behalf Of Knapp, Richard > > Sent: Wednesday, October 31, 2007 12:32 PM > > To: This list is for discussion about the SQR database > reportinglanguage > > fromHyperion Solutions. > > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > > report > > > > > > Are you sure it is finding the init file with the new value? > > > > Richard Knapp > > EAS - Data Warehouse Group > > University of Missouri > > 615 Locust Street #200 > > Columbia, MO 65201 > > 573-882-8856 > > knappr@umsystem.edu > > > > > > -----Original Message----- > > From: sqr-users-bounces+knappr= umsystem.edu@sqrug.org > > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf Of > > Eric Miller > > Sent: Wednesday, October 31, 2007 11:24 AM > > To: sqr-users@sqrug.org > > Subject: [sqr-users] Problem with Version 613 running/compiling report > > > > Hello All, > > We are encountering a problem when running one of our SQR files with > > version 6.1.3. It is throwing an error saying the following: > > > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > > SQR: Program Aborting. > > > > I have searched the archive and read the articles related to this, but > > none seem to solve my problem. > > > > I have increased this variable to its max value and the error is still > > thrown. > > > > If I run it with the original value using versions 820 or 832 it will > > run fine. > > > > Is there any difference in configuration or anything for 613? Our > > problem seems to be specific to that version for some reason. > > > > Thanks in advance for the help, > > Eric > > > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 15:31:22 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Wed, 31 Oct 2007 15:28:30 -0400 From: "Eric Miller" I set PROGLINES=3D32767 and it still gives me: (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. SQR: Program Aborting. -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Don Mellen Sent: Wednesday, October 31, 2007 2:55 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Problem with Version 613 running/compiling report Well, I would have expected the error message to switch to PROGLINES instead of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. On 10/31/07, Eric Miller wrote: > > Thanks for the info Don. > > We are using the -M(filename) and I have put the max > value(PROGLINEPARS=3D65535) in there and it still throws the same error. > If I increase it to PROGLINEPARS=3D65536 it will complain about the max > being 65535 so it seems like it is at least using the -M(file) > > I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) and it > will process successfully. That is what has me so confused with this. > > Any other ideas? > > > Thanks again. > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Wednesday, October 31, 2007 1:33 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > The way these versions handle processing limits ("Processing-Limits" in > the > ini) is that prior to 8.0, SQR would "cap" things at wherever limits > were > set. In 8.0 and above, they start at those limits, but will increase > themselves "on-the-fly" up to the architectural limit. > > Did you try to use an -M{filename} flag on the command line, or did you > just > try to change the .ini file? > > If you haven't, try making a processing limits override file that sets > PROGLINEPARS=3D65535 and use the -M{filename} flag on the command line for > the > 613 version. If that works, then you know that it was not finding > whatever > file you changed (plus you know that your code works in that version and > the > error was accurate). > > The order of where SQR looks for the SQR.INI file is... > 1. The file name specified by the -ZIF{file} command-line flag. > 2. The directory where the executable image resides. > 3. The Windows system directory. > > HTH, > Don > > > On 10/31/07, Eric Miller wrote: > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > > (which points to the 832 install), then there are sqr_en.ini files in > > the individual directories for 832 and 820 but NOT 613. > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and since > > that has data inside it pointing to the 832 install, it doesn't know > > what to do? > > > > Thanks for the Reply. > > > > > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > Behalf Of Knapp, Richard > > Sent: Wednesday, October 31, 2007 12:32 PM > > To: This list is for discussion about the SQR database > reportinglanguage > > fromHyperion Solutions. > > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > > report > > > > > > Are you sure it is finding the init file with the new value? > > > > Richard Knapp > > EAS - Data Warehouse Group > > University of Missouri > > 615 Locust Street #200 > > Columbia, MO 65201 > > 573-882-8856 > > knappr@umsystem.edu > > > > > > -----Original Message----- > > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of > > Eric Miller > > Sent: Wednesday, October 31, 2007 11:24 AM > > To: sqr-users@sqrug.org > > Subject: [sqr-users] Problem with Version 613 running/compiling report > > > > Hello All, > > We are encountering a problem when running one of our SQR files with > > version 6.1.3. It is throwing an error saying the following: > > > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > > SQR: Program Aborting. > > > > I have searched the archive and read the articles related to this, but > > none seem to solve my problem. > > > > I have increased this variable to its max value and the error is still > > thrown. > > > > If I run it with the original value using versions 820 or 832 it will > > run fine. > > > > Is there any difference in configuration or anything for 613? Our > > problem seems to be specific to that version for some reason. > > > > Thanks in advance for the help, > > Eric > > > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 16:23:20 2007 Date: Wed, 31 Oct 2007 16:20:59 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Problem with Version 613 running/compiling report Hmmmm. I'm assuming this is a large program (counting included files) and that it not only runs in ver 8+ but returns appropriate results. Next I'd try an "allmax" -M file (max out everything). If that works with 6.1.3, then remove items one at a time till you find the culprit. If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 stuff, especially for the value of SQRDIR (make one if needed) and that it's in the right place, or use the -ZIF flag. And double check environment variables for any SQR type stuff (also look at "path"). That's pretty much all I got off the top of my head. On 10/31/07, Eric Miller wrote: > > I set PROGLINES=32767 and it still gives me: > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > SQR: Program Aborting. > > > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Wednesday, October 31, 2007 2:55 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > Well, I would have expected the error message to switch to PROGLINES > instead > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > On 10/31/07, Eric Miller wrote: > > > > Thanks for the info Don. > > > > We are using the -M(filename) and I have put the max > > value(PROGLINEPARS=65535) in there and it still throws the same error. > > If I increase it to PROGLINEPARS=65536 it will complain about the max > > being 65535 so it seems like it is at least using the -M(file) > > > > I can run the -M flag using 832 with PROGLINEPARS=18000(default) and > it > > will process successfully. That is what has me so confused with this. > > > > Any other ideas? > > > > > > Thanks again. > > > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 1:33 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > The way these versions handle processing limits ("Processing-Limits" > in > > the > > ini) is that prior to 8.0, SQR would "cap" things at wherever limits > > were > > set. In 8.0 and above, they start at those limits, but will increase > > themselves "on-the-fly" up to the architectural limit. > > > > Did you try to use an -M{filename} flag on the command line, or did > you > > just > > try to change the .ini file? > > > > If you haven't, try making a processing limits override file that sets > > PROGLINEPARS=65535 and use the -M{filename} flag on the command line > for > > the > > 613 version. If that works, then you know that it was not finding > > whatever > > file you changed (plus you know that your code works in that version > and > > the > > error was accurate). > > > > The order of where SQR looks for the SQR.INI file is... > > 1. The file name specified by the -ZIF{file} command-line flag. > > 2. The directory where the executable image resides. > > 3. The Windows system directory. > > > > HTH, > > Don > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > > > (which points to the 832 install), then there are sqr_en.ini files > in > > > the individual directories for 832 and 820 but NOT 613. > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > since > > > that has data inside it pointing to the 832 install, it doesn't know > > > what to do? > > > > > > Thanks for the Reply. > > > > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > > Behalf Of Knapp, Richard > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > To: This list is for discussion about the SQR database > > reportinglanguage > > > fromHyperion Solutions. > > > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > Richard Knapp > > > EAS - Data Warehouse Group > > > University of Missouri > > > 615 Locust Street #200 > > > Columbia, MO 65201 > > > 573-882-8856 > > > knappr@umsystem.edu > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+knappr= umsystem.edu@sqrug.org > > > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf > Of > > > Eric Miller > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > To: sqr-users@sqrug.org > > > Subject: [sqr-users] Problem with Version 613 running/compiling > report > > > > > > Hello All, > > > We are encountering a problem when running one of our SQR files with > > > version 6.1.3. It is throwing an error saying the following: > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > PROGLINEPARS. > > > SQR: Program Aborting. > > > > > > I have searched the archive and read the articles related to this, > but > > > none seem to solve my problem. > > > > > > I have increased this variable to its max value and the error is > still > > > thrown. > > > > > > If I run it with the original value using versions 820 or 832 it > will > > > run fine. > > > > > > Is there any difference in configuration or anything for 613? Our > > > problem seems to be specific to that version for some reason. > > > > > > Thanks in advance for the help, > > > Eric > > > > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Oct 31 18:42:46 2007 From: "Peter Burton" Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Wed, 31 Oct 2007 18:39:33 -0400 Eric, SQR versions 8.3 and above really ignore the -Mfile and/or the SQR.INI [Pro= cessing-Limit] values. They are used as the basis for the initial memory a= llocations only. As the SQR program is compiled more memory is consumed. = When the current structure allocations are exhausted then are then expanded= until the architectual limit is hit or memory is exhausted. Versions of SQR prioer to 8.3 had changes made to how much memory was alloc= ated in different areans and how it is ued so it is possible that a report = works in 8.2 but not in 6.1.3. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of Eric Miller Sent: Wednesday, October 31, 2007 2:29 PM To: This list is for discussion about the SQR database reportinglanguage fr= om Hyperion Solutions. Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Thanks for the info Don. We are using the -M(filename) and I have put the max value(PROGLINEPARS=3D65535) in there and it still throws the same error. If I increase it to PROGLINEPARS=3D65536 it will complain about the max being 65535 so it seems like it is at least using the -M(file) I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) and it will process successfully. That is what has me so confused with this. Any other ideas? Thanks again. -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Don Mellen Sent: Wednesday, October 31, 2007 1:33 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Problem with Version 613 running/compiling report The way these versions handle processing limits ("Processing-Limits" in the ini) is that prior to 8.0, SQR would "cap" things at wherever limits were set. In 8.0 and above, they start at those limits, but will increase themselves "on-the-fly" up to the architectural limit. Did you try to use an -M{filename} flag on the command line, or did you just try to change the .ini file? If you haven't, try making a processing limits override file that sets PROGLINEPARS=3D65535 and use the -M{filename} flag on the command line for the 613 version. If that works, then you know that it was not finding whatever file you changed (plus you know that your code works in that version and the error was accurate). The order of where SQR looks for the SQR.INI file is... 1. The file name specified by the -ZIF{file} command-line flag. 2. The directory where the executable image resides. 3. The Windows system directory. HTH, Don On 10/31/07, Eric Miller wrote: > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > (which points to the 832 install), then there are sqr_en.ini files in > the individual directories for 832 and 820 but NOT 613. > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and since > that has data inside it pointing to the 832 install, it doesn't know > what to do? > > Thanks for the Reply. > > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Knapp, Richard > Sent: Wednesday, October 31, 2007 12:32 PM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > report > > > Are you sure it is finding the init file with the new value? > > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu > > > -----Original Message----- > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of > Eric Miller > Sent: Wednesday, October 31, 2007 11:24 AM > To: sqr-users@sqrug.org > Subject: [sqr-users] Problem with Version 613 running/compiling report > > Hello All, > We are encountering a problem when running one of our SQR files with > version 6.1.3. It is throwing an error saying the following: > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > SQR: Program Aborting. > > I have searched the archive and read the articles related to this, but > none seem to solve my problem. > > I have increased this variable to its max value and the error is still > thrown. > > If I run it with the original value using versions 820 or 832 it will > run fine. > > Is there any difference in configuration or anything for 613? Our > problem seems to be specific to that version for some reason. > > Thanks in advance for the help, > Eric > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 09:24:16 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Thu, 1 Nov 2007 09:19:27 -0400 From: "Eric Miller" Thanks for the reply Don. I tried an "allmax" file and it still throws the same error.=20 I just checked, and there aren't any SQR related environment variables set.=20 Should I try creating a SQR.INI in the same directory as the 613 SQRW.exe ? Or modify the one in my windows directory? Thanks. -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Don Mellen Sent: Wednesday, October 31, 2007 4:21 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Problem with Version 613 running/compiling report Hmmmm. I'm assuming this is a large program (counting included files) and that it not only runs in ver 8+ but returns appropriate results. Next I'd try an "allmax" -M file (max out everything). If that works with 6.1.3, then remove items one at a time till you find the culprit. If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 stuff, especially for the value of SQRDIR (make one if needed) and that it's in the right place, or use the -ZIF flag. And double check environment variables for any SQR type stuff (also look at "path"). That's pretty much all I got off the top of my head. On 10/31/07, Eric Miller wrote: > > I set PROGLINES=3D32767 and it still gives me: > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > SQR: Program Aborting. > > > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Wednesday, October 31, 2007 2:55 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > Well, I would have expected the error message to switch to PROGLINES > instead > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > On 10/31/07, Eric Miller wrote: > > > > Thanks for the info Don. > > > > We are using the -M(filename) and I have put the max > > value(PROGLINEPARS=3D65535) in there and it still throws the same error. > > If I increase it to PROGLINEPARS=3D65536 it will complain about the max > > being 65535 so it seems like it is at least using the -M(file) > > > > I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) and > it > > will process successfully. That is what has me so confused with this. > > > > Any other ideas? > > > > > > Thanks again. > > > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 1:33 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > The way these versions handle processing limits ("Processing-Limits" > in > > the > > ini) is that prior to 8.0, SQR would "cap" things at wherever limits > > were > > set. In 8.0 and above, they start at those limits, but will increase > > themselves "on-the-fly" up to the architectural limit. > > > > Did you try to use an -M{filename} flag on the command line, or did > you > > just > > try to change the .ini file? > > > > If you haven't, try making a processing limits override file that sets > > PROGLINEPARS=3D65535 and use the -M{filename} flag on the command line > for > > the > > 613 version. If that works, then you know that it was not finding > > whatever > > file you changed (plus you know that your code works in that version > and > > the > > error was accurate). > > > > The order of where SQR looks for the SQR.INI file is... > > 1. The file name specified by the -ZIF{file} command-line flag. > > 2. The directory where the executable image resides. > > 3. The Windows system directory. > > > > HTH, > > Don > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ directory > > > (which points to the 832 install), then there are sqr_en.ini files > in > > > the individual directories for 832 and 820 but NOT 613. > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > since > > > that has data inside it pointing to the 832 install, it doesn't know > > > what to do? > > > > > > Thanks for the Reply. > > > > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > > Behalf Of Knapp, Richard > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > To: This list is for discussion about the SQR database > > reportinglanguage > > > fromHyperion Solutions. > > > Subject: RE: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > Richard Knapp > > > EAS - Data Warehouse Group > > > University of Missouri > > > 615 Locust Street #200 > > > Columbia, MO 65201 > > > 573-882-8856 > > > knappr@umsystem.edu > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > > > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf > Of > > > Eric Miller > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > To: sqr-users@sqrug.org > > > Subject: [sqr-users] Problem with Version 613 running/compiling > report > > > > > > Hello All, > > > We are encountering a problem when running one of our SQR files with > > > version 6.1.3. It is throwing an error saying the following: > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > PROGLINEPARS. > > > SQR: Program Aborting. > > > > > > I have searched the archive and read the articles related to this, > but > > > none seem to solve my problem. > > > > > > I have increased this variable to its max value and the error is > still > > > thrown. > > > > > > If I run it with the original value using versions 820 or 832 it > will > > > run fine. > > > > > > Is there any difference in configuration or anything for 613? Our > > > problem seems to be specific to that version for some reason. > > > > > > Thanks in advance for the help, > > > Eric > > > > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 12:50:38 2007 Date: Thu, 1 Nov 2007 12:48:15 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Problem with Version 613 running/compiling report I'd try making a copy of the .ini and put it in the same directory as the 613 SQRW.exe, then edit it to point to 613 directories. On 11/1/07, Eric Miller wrote: > > Thanks for the reply Don. > > I tried an "allmax" file and it still throws the same error. > > I just checked, and there aren't any SQR related environment variables > set. > > Should I try creating a SQR.INI in the same directory as the 613 > SQRW.exe ? Or modify the one in my windows directory? > > Thanks. > > -----Original Message----- > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Wednesday, October 31, 2007 4:21 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > Hmmmm. > > I'm assuming this is a large program (counting included files) and that > it > not only runs in ver 8+ but returns appropriate results. > > Next I'd try an "allmax" -M file (max out everything). If that works > with > 6.1.3, then remove items one at a time till you find the culprit. > > If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 > stuff, > especially for the value of SQRDIR (make one if needed) and that it's in > the > right place, or use the -ZIF flag. And double check environment > variables > for any SQR type stuff (also look at "path"). > > That's pretty much all I got off the top of my head. > > > On 10/31/07, Eric Miller wrote: > > > > I set PROGLINES=32767 and it still gives me: > > > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > > SQR: Program Aborting. > > > > > > > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 2:55 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > Well, I would have expected the error message to switch to PROGLINES > > instead > > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > > > On 10/31/07, Eric Miller wrote: > > > > > > Thanks for the info Don. > > > > > > We are using the -M(filename) and I have put the max > > > value(PROGLINEPARS=65535) in there and it still throws the same > error. > > > If I increase it to PROGLINEPARS=65536 it will complain about the > max > > > being 65535 so it seems like it is at least using the -M(file) > > > > > > I can run the -M flag using 832 with PROGLINEPARS=18000(default) and > > it > > > will process successfully. That is what has me so confused with > this. > > > > > > Any other ideas? > > > > > > > > > Thanks again. > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > > Behalf Of Don Mellen > > > Sent: Wednesday, October 31, 2007 1:33 PM > > > To: This list is for discussion about the SQR database reporting > > > languagefrom Hyperion Solutions. > > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > The way these versions handle processing limits ("Processing-Limits" > > in > > > the > > > ini) is that prior to 8.0, SQR would "cap" things at wherever limits > > > were > > > set. In 8.0 and above, they start at those limits, but will > increase > > > themselves "on-the-fly" up to the architectural limit. > > > > > > Did you try to use an -M{filename} flag on the command line, or did > > you > > > just > > > try to change the .ini file? > > > > > > If you haven't, try making a processing limits override file that > sets > > > PROGLINEPARS=65535 and use the -M{filename} flag on the command line > > for > > > the > > > 613 version. If that works, then you know that it was not finding > > > whatever > > > file you changed (plus you know that your code works in that version > > and > > > the > > > error was accurate). > > > > > > The order of where SQR looks for the SQR.INI file is... > > > 1. The file name specified by the -ZIF{file} command-line flag. > > > 2. The directory where the executable image resides. > > > 3. The Windows system directory. > > > > > > HTH, > > > Don > > > > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ > directory > > > > (which points to the 832 install), then there are sqr_en.ini files > > in > > > > the individual directories for 832 and 820 but NOT 613. > > > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > > since > > > > that has data inside it pointing to the 832 install, it doesn't > know > > > > what to do? > > > > > > > > Thanks for the Reply. > > > > > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] > On > > > > Behalf Of Knapp, Richard > > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > > To: This list is for discussion about the SQR database > > > reportinglanguage > > > > fromHyperion Solutions. > > > > Subject: RE: [sqr-users] Problem with Version 613 > running/compiling > > > > report > > > > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > > > Richard Knapp > > > > EAS - Data Warehouse Group > > > > University of Missouri > > > > 615 Locust Street #200 > > > > Columbia, MO 65201 > > > > 573-882-8856 > > > > knappr@umsystem.edu > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+knappr= umsystem.edu@sqrug.org > > > > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf > > Of > > > > Eric Miller > > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > > To: sqr-users@sqrug.org > > > > Subject: [sqr-users] Problem with Version 613 running/compiling > > report > > > > > > > > Hello All, > > > > We are encountering a problem when running one of our SQR files > with > > > > version 6.1.3. It is throwing an error saying the following: > > > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > > PROGLINEPARS. > > > > SQR: Program Aborting. > > > > > > > > I have searched the archive and read the articles related to this, > > but > > > > none seem to solve my problem. > > > > > > > > I have increased this variable to its max value and the error is > > still > > > > thrown. > > > > > > > > If I run it with the original value using versions 820 or 832 it > > will > > > > run fine. > > > > > > > > Is there any difference in configuration or anything for 613? Our > > > > problem seems to be specific to that version for some reason. > > > > > > > > Thanks in advance for the help, > > > > Eric > > > > > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > -- > > > > > > ----------------------------------------------------------------------- > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > http://www.ontko.com/ > > > donm@ontko.com | "In the beginning, there was nothing, which > > exploded" > > > (Terry Pratchett) > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 13:37:28 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Thu, 1 Nov 2007 13:34:20 -0400 From: "Eric Miller" Still no luck. I dropped a sqr.ini file in the sqrw.exe directory and made sure the max value were set.=20 I then used the -ZIF flag to point specifically to that file in that directory. Any other ideas? Thanks, Eric -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Don Mellen Sent: Thursday, November 01, 2007 12:48 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Problem with Version 613 running/compiling report I'd try making a copy of the .ini and put it in the same directory as the 613 SQRW.exe, then edit it to point to 613 directories. On 11/1/07, Eric Miller wrote: > > Thanks for the reply Don. > > I tried an "allmax" file and it still throws the same error. > > I just checked, and there aren't any SQR related environment variables > set. > > Should I try creating a SQR.INI in the same directory as the 613 > SQRW.exe ? Or modify the one in my windows directory? > > Thanks. > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Wednesday, October 31, 2007 4:21 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > Hmmmm. > > I'm assuming this is a large program (counting included files) and that > it > not only runs in ver 8+ but returns appropriate results. > > Next I'd try an "allmax" -M file (max out everything). If that works > with > 6.1.3, then remove items one at a time till you find the culprit. > > If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 > stuff, > especially for the value of SQRDIR (make one if needed) and that it's in > the > right place, or use the -ZIF flag. And double check environment > variables > for any SQR type stuff (also look at "path"). > > That's pretty much all I got off the top of my head. > > > On 10/31/07, Eric Miller wrote: > > > > I set PROGLINES=3D32767 and it still gives me: > > > > (SQR 4401) Out of param storage; use -Mfile to increase PROGLINEPARS. > > SQR: Program Aborting. > > > > > > > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 2:55 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > Well, I would have expected the error message to switch to PROGLINES > > instead > > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > > > On 10/31/07, Eric Miller wrote: > > > > > > Thanks for the info Don. > > > > > > We are using the -M(filename) and I have put the max > > > value(PROGLINEPARS=3D65535) in there and it still throws the same > error. > > > If I increase it to PROGLINEPARS=3D65536 it will complain about the > max > > > being 65535 so it seems like it is at least using the -M(file) > > > > > > I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) and > > it > > > will process successfully. That is what has me so confused with > this. > > > > > > Any other ideas? > > > > > > > > > Thanks again. > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > > Behalf Of Don Mellen > > > Sent: Wednesday, October 31, 2007 1:33 PM > > > To: This list is for discussion about the SQR database reporting > > > languagefrom Hyperion Solutions. > > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > The way these versions handle processing limits ("Processing-Limits" > > in > > > the > > > ini) is that prior to 8.0, SQR would "cap" things at wherever limits > > > were > > > set. In 8.0 and above, they start at those limits, but will > increase > > > themselves "on-the-fly" up to the architectural limit. > > > > > > Did you try to use an -M{filename} flag on the command line, or did > > you > > > just > > > try to change the .ini file? > > > > > > If you haven't, try making a processing limits override file that > sets > > > PROGLINEPARS=3D65535 and use the -M{filename} flag on the command line > > for > > > the > > > 613 version. If that works, then you know that it was not finding > > > whatever > > > file you changed (plus you know that your code works in that version > > and > > > the > > > error was accurate). > > > > > > The order of where SQR looks for the SQR.INI file is... > > > 1. The file name specified by the -ZIF{file} command-line flag. > > > 2. The directory where the executable image resides. > > > 3. The Windows system directory. > > > > > > HTH, > > > Don > > > > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ > directory > > > > (which points to the 832 install), then there are sqr_en.ini files > > in > > > > the individual directories for 832 and 820 but NOT 613. > > > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > > since > > > > that has data inside it pointing to the 832 install, it doesn't > know > > > > what to do? > > > > > > > > Thanks for the Reply. > > > > > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > On > > > > Behalf Of Knapp, Richard > > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > > To: This list is for discussion about the SQR database > > > reportinglanguage > > > > fromHyperion Solutions. > > > > Subject: RE: [sqr-users] Problem with Version 613 > running/compiling > > > > report > > > > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > > > Richard Knapp > > > > EAS - Data Warehouse Group > > > > University of Missouri > > > > 615 Locust Street #200 > > > > Columbia, MO 65201 > > > > 573-882-8856 > > > > knappr@umsystem.edu > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > > > > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf > > Of > > > > Eric Miller > > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > > To: sqr-users@sqrug.org > > > > Subject: [sqr-users] Problem with Version 613 running/compiling > > report > > > > > > > > Hello All, > > > > We are encountering a problem when running one of our SQR files > with > > > > version 6.1.3. It is throwing an error saying the following: > > > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > > PROGLINEPARS. > > > > SQR: Program Aborting. > > > > > > > > I have searched the archive and read the articles related to this, > > but > > > > none seem to solve my problem. > > > > > > > > I have increased this variable to its max value and the error is > > still > > > > thrown. > > > > > > > > If I run it with the original value using versions 820 or 832 it > > will > > > > run fine. > > > > > > > > Is there any difference in configuration or anything for 613? Our > > > > problem seems to be specific to that version for some reason. > > > > > > > > Thanks in advance for the help, > > > > Eric > > > > > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > -- > > > > > > ----------------------------------------------------------------------- > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > http://www.ontko.com/ > > > donm@ontko.com | "In the beginning, there was nothing, which > > exploded" > > > (Terry Pratchett) > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 13:51:08 2007 Date: Thu, 1 Nov 2007 13:47:54 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Problem with Version 613 running/compiling report Are you running from the DOS prompt or through an app? (I was originally thinking from the DOS prompt) If from DOS prompt, are you fully pathing the sqrw exe? Can you run a simple program from 613, i.e. Begin-Program show 'Hello' End-Program On 11/1/07, Eric Miller wrote: > > Still no luck. > > I dropped a sqr.ini file in the sqrw.exe directory and made sure the max > value were set. > > I then used the -ZIF flag to point specifically to that file in that > directory. > > Any other ideas? > > > Thanks, > Eric > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Thursday, November 01, 2007 12:48 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > I'd try making a copy of the .ini and put it in the same directory as > the > 613 SQRW.exe, then edit it to point to 613 directories. > > On 11/1/07, Eric Miller wrote: > > > > Thanks for the reply Don. > > > > I tried an "allmax" file and it still throws the same error. > > > > I just checked, and there aren't any SQR related environment variables > > set. > > > > Should I try creating a SQR.INI in the same directory as the 613 > > SQRW.exe ? Or modify the one in my windows directory? > > > > Thanks. > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > [mailto:sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 4:21 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > Hmmmm. > > > > I'm assuming this is a large program (counting included files) and > that > > it > > not only runs in ver 8+ but returns appropriate results. > > > > Next I'd try an "allmax" -M file (max out everything). If that works > > with > > 6.1.3, then remove items one at a time till you find the culprit. > > > > If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 > > stuff, > > especially for the value of SQRDIR (make one if needed) and that it's > in > > the > > right place, or use the -ZIF flag. And double check environment > > variables > > for any SQR type stuff (also look at "path"). > > > > That's pretty much all I got off the top of my head. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > I set PROGLINES=32767 and it still gives me: > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > PROGLINEPARS. > > > SQR: Program Aborting. > > > > > > > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] On > > > Behalf Of Don Mellen > > > Sent: Wednesday, October 31, 2007 2:55 PM > > > To: This list is for discussion about the SQR database reporting > > > languagefrom Hyperion Solutions. > > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > Well, I would have expected the error message to switch to PROGLINES > > > instead > > > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > Thanks for the info Don. > > > > > > > > We are using the -M(filename) and I have put the max > > > > value(PROGLINEPARS=65535) in there and it still throws the same > > error. > > > > If I increase it to PROGLINEPARS=65536 it will complain about the > > max > > > > being 65535 so it seems like it is at least using the -M(file) > > > > > > > > I can run the -M flag using 832 with PROGLINEPARS=18000(default) > and > > > it > > > > will process successfully. That is what has me so confused with > > this. > > > > > > > > Any other ideas? > > > > > > > > > > > > Thanks again. > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] > On > > > > Behalf Of Don Mellen > > > > Sent: Wednesday, October 31, 2007 1:33 PM > > > > To: This list is for discussion about the SQR database reporting > > > > languagefrom Hyperion Solutions. > > > > Subject: Re: [sqr-users] Problem with Version 613 > running/compiling > > > > report > > > > > > > > The way these versions handle processing limits > ("Processing-Limits" > > > in > > > > the > > > > ini) is that prior to 8.0, SQR would "cap" things at wherever > limits > > > > were > > > > set. In 8.0 and above, they start at those limits, but will > > increase > > > > themselves "on-the-fly" up to the architectural limit. > > > > > > > > Did you try to use an -M{filename} flag on the command line, or > did > > > you > > > > just > > > > try to change the .ini file? > > > > > > > > If you haven't, try making a processing limits override file that > > sets > > > > PROGLINEPARS=65535 and use the -M{filename} flag on the command > line > > > for > > > > the > > > > 613 version. If that works, then you know that it was not finding > > > > whatever > > > > file you changed (plus you know that your code works in that > version > > > and > > > > the > > > > error was accurate). > > > > > > > > The order of where SQR looks for the SQR.INI file is... > > > > 1. The file name specified by the -ZIF{file} command-line flag. > > > > 2. The directory where the executable image resides. > > > > 3. The Windows system directory. > > > > > > > > HTH, > > > > Don > > > > > > > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ > > directory > > > > > (which points to the 832 install), then there are sqr_en.ini > files > > > in > > > > > the individual directories for 832 and 820 but NOT 613. > > > > > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > > > since > > > > > that has data inside it pointing to the 832 install, it doesn't > > know > > > > > what to do? > > > > > > > > > > Thanks for the Reply. > > > > > > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org > > > > > [mailto: sqr-users-bounces+eric.miller=cgifederal.com@sqrug.org] > > On > > > > > Behalf Of Knapp, Richard > > > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > > > To: This list is for discussion about the SQR database > > > > reportinglanguage > > > > > fromHyperion Solutions. > > > > > Subject: RE: [sqr-users] Problem with Version 613 > > running/compiling > > > > > report > > > > > > > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > > > > > Richard Knapp > > > > > EAS - Data Warehouse Group > > > > > University of Missouri > > > > > 615 Locust Street #200 > > > > > Columbia, MO 65201 > > > > > 573-882-8856 > > > > > knappr@umsystem.edu > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+knappr= umsystem.edu@sqrug.org > > > > > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On > Behalf > > > Of > > > > > Eric Miller > > > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > > > To: sqr-users@sqrug.org > > > > > Subject: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > > > > > Hello All, > > > > > We are encountering a problem when running one of our SQR files > > with > > > > > version 6.1.3. It is throwing an error saying the following: > > > > > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > > > PROGLINEPARS. > > > > > SQR: Program Aborting. > > > > > > > > > > I have searched the archive and read the articles related to > this, > > > but > > > > > none seem to solve my problem. > > > > > > > > > > I have increased this variable to its max value and the error is > > > still > > > > > thrown. > > > > > > > > > > If I run it with the original value using versions 820 or 832 it > > > will > > > > > run fine. > > > > > > > > > > Is there any difference in configuration or anything for 613? > Our > > > > > problem seems to be specific to that version for some reason. > > > > > > > > > > Thanks in advance for the help, > > > > > Eric > > > > > > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > ----------------------------------------------------------------------- > > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > > http://www.ontko.com/ > > > > donm@ontko.com | "In the beginning, there was nothing, which > > > exploded" > > > > (Terry Pratchett) > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > -- > > > > > > ----------------------------------------------------------------------- > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > http://www.ontko.com/ > > > donm@ontko.com | "In the beginning, there was nothing, which > > exploded" > > > (Terry Pratchett) > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 14:01:44 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Thu, 1 Nov 2007 13:58:33 -0400 From: "Eric Miller" I am running from DOS. I can run other files.=20 But I don't think there is anyway that the max value is being exceeded by the report causing the problems. =20 -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of Don Mellen Sent: Thursday, November 01, 2007 1:48 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] Problem with Version 613 running/compiling report Are you running from the DOS prompt or through an app? (I was originally thinking from the DOS prompt) If from DOS prompt, are you fully pathing the sqrw exe? Can you run a simple program from 613, i.e. Begin-Program show 'Hello' End-Program On 11/1/07, Eric Miller wrote: > > Still no luck. > > I dropped a sqr.ini file in the sqrw.exe directory and made sure the max > value were set. > > I then used the -ZIF flag to point specifically to that file in that > directory. > > Any other ideas? > > > Thanks, > Eric > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Thursday, November 01, 2007 12:48 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > I'd try making a copy of the .ini and put it in the same directory as > the > 613 SQRW.exe, then edit it to point to 613 directories. > > On 11/1/07, Eric Miller wrote: > > > > Thanks for the reply Don. > > > > I tried an "allmax" file and it still throws the same error. > > > > I just checked, and there aren't any SQR related environment variables > > set. > > > > Should I try creating a SQR.INI in the same directory as the 613 > > SQRW.exe ? Or modify the one in my windows directory? > > > > Thanks. > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 4:21 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > Hmmmm. > > > > I'm assuming this is a large program (counting included files) and > that > > it > > not only runs in ver 8+ but returns appropriate results. > > > > Next I'd try an "allmax" -M file (max out everything). If that works > > with > > 6.1.3, then remove items one at a time till you find the culprit. > > > > If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 > > stuff, > > especially for the value of SQRDIR (make one if needed) and that it's > in > > the > > right place, or use the -ZIF flag. And double check environment > > variables > > for any SQR type stuff (also look at "path"). > > > > That's pretty much all I got off the top of my head. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > I set PROGLINES=3D32767 and it still gives me: > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > PROGLINEPARS. > > > SQR: Program Aborting. > > > > > > > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > > Behalf Of Don Mellen > > > Sent: Wednesday, October 31, 2007 2:55 PM > > > To: This list is for discussion about the SQR database reporting > > > languagefrom Hyperion Solutions. > > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > Well, I would have expected the error message to switch to PROGLINES > > > instead > > > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > Thanks for the info Don. > > > > > > > > We are using the -M(filename) and I have put the max > > > > value(PROGLINEPARS=3D65535) in there and it still throws the same > > error. > > > > If I increase it to PROGLINEPARS=3D65536 it will complain about the > > max > > > > being 65535 so it seems like it is at least using the -M(file) > > > > > > > > I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) > and > > > it > > > > will process successfully. That is what has me so confused with > > this. > > > > > > > > Any other ideas? > > > > > > > > > > > > Thanks again. > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > On > > > > Behalf Of Don Mellen > > > > Sent: Wednesday, October 31, 2007 1:33 PM > > > > To: This list is for discussion about the SQR database reporting > > > > languagefrom Hyperion Solutions. > > > > Subject: Re: [sqr-users] Problem with Version 613 > running/compiling > > > > report > > > > > > > > The way these versions handle processing limits > ("Processing-Limits" > > > in > > > > the > > > > ini) is that prior to 8.0, SQR would "cap" things at wherever > limits > > > > were > > > > set. In 8.0 and above, they start at those limits, but will > > increase > > > > themselves "on-the-fly" up to the architectural limit. > > > > > > > > Did you try to use an -M{filename} flag on the command line, or > did > > > you > > > > just > > > > try to change the .ini file? > > > > > > > > If you haven't, try making a processing limits override file that > > sets > > > > PROGLINEPARS=3D65535 and use the -M{filename} flag on the command > line > > > for > > > > the > > > > 613 version. If that works, then you know that it was not finding > > > > whatever > > > > file you changed (plus you know that your code works in that > version > > > and > > > > the > > > > error was accurate). > > > > > > > > The order of where SQR looks for the SQR.INI file is... > > > > 1. The file name specified by the -ZIF{file} command-line flag. > > > > 2. The directory where the executable image resides. > > > > 3. The Windows system directory. > > > > > > > > HTH, > > > > Don > > > > > > > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ > > directory > > > > > (which points to the 832 install), then there are sqr_en.ini > files > > > in > > > > > the individual directories for 832 and 820 but NOT 613. > > > > > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > > > since > > > > > that has data inside it pointing to the 832 install, it doesn't > > know > > > > > what to do? > > > > > > > > > > Thanks for the Reply. > > > > > > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > > On > > > > > Behalf Of Knapp, Richard > > > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > > > To: This list is for discussion about the SQR database > > > > reportinglanguage > > > > > fromHyperion Solutions. > > > > > Subject: RE: [sqr-users] Problem with Version 613 > > running/compiling > > > > > report > > > > > > > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > > > > > Richard Knapp > > > > > EAS - Data Warehouse Group > > > > > University of Missouri > > > > > 615 Locust Street #200 > > > > > Columbia, MO 65201 > > > > > 573-882-8856 > > > > > knappr@umsystem.edu > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > > > > > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On > Behalf > > > Of > > > > > Eric Miller > > > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > > > To: sqr-users@sqrug.org > > > > > Subject: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > > > > > Hello All, > > > > > We are encountering a problem when running one of our SQR files > > with > > > > > version 6.1.3. It is throwing an error saying the following: > > > > > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > > > PROGLINEPARS. > > > > > SQR: Program Aborting. > > > > > > > > > > I have searched the archive and read the articles related to > this, > > > but > > > > > none seem to solve my problem. > > > > > > > > > > I have increased this variable to its max value and the error is > > > still > > > > > thrown. > > > > > > > > > > If I run it with the original value using versions 820 or 832 it > > > will > > > > > run fine. > > > > > > > > > > Is there any difference in configuration or anything for 613? > Our > > > > > problem seems to be specific to that version for some reason. > > > > > > > > > > Thanks in advance for the help, > > > > > Eric > > > > > > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > ----------------------------------------------------------------------- > > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > > http://www.ontko.com/ > > > > donm@ontko.com | "In the beginning, there was nothing, which > > > exploded" > > > > (Terry Pratchett) > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > -- > > > > > > ----------------------------------------------------------------------- > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > http://www.ontko.com/ > > > donm@ontko.com | "In the beginning, there was nothing, which > > exploded" > > > (Terry Pratchett) > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 14:05:34 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Thu, 1 Nov 2007 19:02:21 +0100 From: "RITTER, Philippe" Hello, We got the same problem. We are running SQR on Unix, but we edit the progra= m from Windows. What we did to correct this program was to : Run an unix2dos utilies and then back with dos2unix. After that, the progra= m run correctly Regards Philippe RITTER -----Message d'origine----- De=A0: sqr-users-bounces+philippe.ritter=3Dcaisse-des-medecins.ch@sqrug.org= [mailto:sqr-users-bounces+philippe.ritter=3Dcaisse-des-medecins.ch@sqrug.o= rg] De la part de Don Mellen Envoy=E9=A0: jeudi 1 novembre 2007 18:48 =C0=A0: This list is for discussion about the SQR database reporting langua= gefrom Hyperion Solutions. Objet=A0: Re: [sqr-users] Problem with Version 613 running/compiling report Are you running from the DOS prompt or through an app? (I was originally thinking from the DOS prompt) If from DOS prompt, are you fully pathing the sqrw exe? Can you run a simple program from 613, i.e. Begin-Program show 'Hello' End-Program On 11/1/07, Eric Miller wrote: > > Still no luck. > > I dropped a sqr.ini file in the sqrw.exe directory and made sure the max > value were set. > > I then used the -ZIF flag to point specifically to that file in that > directory. > > Any other ideas? > > > Thanks, > Eric > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Thursday, November 01, 2007 12:48 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > I'd try making a copy of the .ini and put it in the same directory as > the > 613 SQRW.exe, then edit it to point to 613 directories. > > On 11/1/07, Eric Miller wrote: > > > > Thanks for the reply Don. > > > > I tried an "allmax" file and it still throws the same error. > > > > I just checked, and there aren't any SQR related environment variables > > set. > > > > Should I try creating a SQR.INI in the same directory as the 613 > > SQRW.exe ? Or modify the one in my windows directory? > > > > Thanks. > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 4:21 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > Hmmmm. > > > > I'm assuming this is a large program (counting included files) and > that > > it > > not only runs in ver 8+ but returns appropriate results. > > > > Next I'd try an "allmax" -M file (max out everything). If that works > > with > > 6.1.3, then remove items one at a time till you find the culprit. > > > > If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 > > stuff, > > especially for the value of SQRDIR (make one if needed) and that it's > in > > the > > right place, or use the -ZIF flag. And double check environment > > variables > > for any SQR type stuff (also look at "path"). > > > > That's pretty much all I got off the top of my head. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > I set PROGLINES=3D32767 and it still gives me: > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > PROGLINEPARS. > > > SQR: Program Aborting. > > > > > > > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > > Behalf Of Don Mellen > > > Sent: Wednesday, October 31, 2007 2:55 PM > > > To: This list is for discussion about the SQR database reporting > > > languagefrom Hyperion Solutions. > > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > Well, I would have expected the error message to switch to PROGLINES > > > instead > > > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > Thanks for the info Don. > > > > > > > > We are using the -M(filename) and I have put the max > > > > value(PROGLINEPARS=3D65535) in there and it still throws the same > > error. > > > > If I increase it to PROGLINEPARS=3D65536 it will complain about the > > max > > > > being 65535 so it seems like it is at least using the -M(file) > > > > > > > > I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) > and > > > it > > > > will process successfully. That is what has me so confused with > > this. > > > > > > > > Any other ideas? > > > > > > > > > > > > Thanks again. > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > On > > > > Behalf Of Don Mellen > > > > Sent: Wednesday, October 31, 2007 1:33 PM > > > > To: This list is for discussion about the SQR database reporting > > > > languagefrom Hyperion Solutions. > > > > Subject: Re: [sqr-users] Problem with Version 613 > running/compiling > > > > report > > > > > > > > The way these versions handle processing limits > ("Processing-Limits" > > > in > > > > the > > > > ini) is that prior to 8.0, SQR would "cap" things at wherever > limits > > > > were > > > > set. In 8.0 and above, they start at those limits, but will > > increase > > > > themselves "on-the-fly" up to the architectural limit. > > > > > > > > Did you try to use an -M{filename} flag on the command line, or > did > > > you > > > > just > > > > try to change the .ini file? > > > > > > > > If you haven't, try making a processing limits override file that > > sets > > > > PROGLINEPARS=3D65535 and use the -M{filename} flag on the command > line > > > for > > > > the > > > > 613 version. If that works, then you know that it was not finding > > > > whatever > > > > file you changed (plus you know that your code works in that > version > > > and > > > > the > > > > error was accurate). > > > > > > > > The order of where SQR looks for the SQR.INI file is... > > > > 1. The file name specified by the -ZIF{file} command-line flag. > > > > 2. The directory where the executable image resides. > > > > 3. The Windows system directory. > > > > > > > > HTH, > > > > Don > > > > > > > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ > > directory > > > > > (which points to the 832 install), then there are sqr_en.ini > files > > > in > > > > > the individual directories for 832 and 820 but NOT 613. > > > > > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > > > since > > > > > that has data inside it pointing to the 832 install, it doesn't > > know > > > > > what to do? > > > > > > > > > > Thanks for the Reply. > > > > > > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > > On > > > > > Behalf Of Knapp, Richard > > > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > > > To: This list is for discussion about the SQR database > > > > reportinglanguage > > > > > fromHyperion Solutions. > > > > > Subject: RE: [sqr-users] Problem with Version 613 > > running/compiling > > > > > report > > > > > > > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > > > > > Richard Knapp > > > > > EAS - Data Warehouse Group > > > > > University of Missouri > > > > > 615 Locust Street #200 > > > > > Columbia, MO 65201 > > > > > 573-882-8856 > > > > > knappr@umsystem.edu > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > > > > > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On > Behalf > > > Of > > > > > Eric Miller > > > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > > > To: sqr-users@sqrug.org > > > > > Subject: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > > > > > Hello All, > > > > > We are encountering a problem when running one of our SQR files > > with > > > > > version 6.1.3. It is throwing an error saying the following: > > > > > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > > > PROGLINEPARS. > > > > > SQR: Program Aborting. > > > > > > > > > > I have searched the archive and read the articles related to > this, > > > but > > > > > none seem to solve my problem. > > > > > > > > > > I have increased this variable to its max value and the error is > > > still > > > > > thrown. > > > > > > > > > > If I run it with the original value using versions 820 or 832 it > > > will > > > > > run fine. > > > > > > > > > > Is there any difference in configuration or anything for 613? > Our > > > > > problem seems to be specific to that version for some reason. > > > > > > > > > > Thanks in advance for the help, > > > > > Eric > > > > > > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > ----------------------------------------------------------------------- > > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > > http://www.ontko.com/ > > > > donm@ontko.com | "In the beginning, there was nothing, which > > > exploded" > > > > (Terry Pratchett) > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > -- > > > > > > ----------------------------------------------------------------------- > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > http://www.ontko.com/ > > > donm@ontko.com | "In the beginning, there was nothing, which > > exploded" > > > (Terry Pratchett) > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 16:54:22 2007 Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Date: Thu, 1 Nov 2007 16:51:04 -0400 From: "Eric Miller" Does anyone know if there is a maximum filesize for the compiled SQT file? = And if so what that is? Thanks, Eric -----Original Message----- From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto:sqr-= users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of RITTER, = Philippe Sent: Thursday, November 01, 2007 2:02 PM To: This list is for discussion about the SQR database reporting languagefr= omHyperion Solutions. Subject: RE: [sqr-users] Problem with Version 613 running/compiling report Hello, We got the same problem. We are running SQR on Unix, but we edit the progra= m from Windows. What we did to correct this program was to : Run an unix2dos utilies and then back with dos2unix. After that, the progra= m run correctly Regards Philippe RITTER -----Message d'origine----- De=A0: sqr-users-bounces+philippe.ritter=3Dcaisse-des-medecins.ch@sqrug.org= [mailto:sqr-users-bounces+philippe.ritter=3Dcaisse-des-medecins.ch@sqrug.o= rg] De la part de Don Mellen Envoy=E9=A0: jeudi 1 novembre 2007 18:48 =C0=A0: This list is for discussion about the SQR database reporting langua= gefrom Hyperion Solutions. Objet=A0: Re: [sqr-users] Problem with Version 613 running/compiling report Are you running from the DOS prompt or through an app? (I was originally thinking from the DOS prompt) If from DOS prompt, are you fully pathing the sqrw exe? Can you run a simple program from 613, i.e. Begin-Program show 'Hello' End-Program On 11/1/07, Eric Miller wrote: > > Still no luck. > > I dropped a sqr.ini file in the sqrw.exe directory and made sure the max > value were set. > > I then used the -ZIF flag to point specifically to that file in that > directory. > > Any other ideas? > > > Thanks, > Eric > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > Behalf Of Don Mellen > Sent: Thursday, November 01, 2007 12:48 PM > To: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > report > > I'd try making a copy of the .ini and put it in the same directory as > the > 613 SQRW.exe, then edit it to point to 613 directories. > > On 11/1/07, Eric Miller wrote: > > > > Thanks for the reply Don. > > > > I tried an "allmax" file and it still throws the same error. > > > > I just checked, and there aren't any SQR related environment variables > > set. > > > > Should I try creating a SQR.INI in the same directory as the 613 > > SQRW.exe ? Or modify the one in my windows directory? > > > > Thanks. > > > > -----Original Message----- > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > [mailto:sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > Behalf Of Don Mellen > > Sent: Wednesday, October 31, 2007 4:21 PM > > To: This list is for discussion about the SQR database reporting > > languagefrom Hyperion Solutions. > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > report > > > > Hmmmm. > > > > I'm assuming this is a large program (counting included files) and > that > > it > > not only runs in ver 8+ but returns appropriate results. > > > > Next I'd try an "allmax" -M file (max out everything). If that works > > with > > 6.1.3, then remove items one at a time till you find the culprit. > > > > If it doesn't, make sure you do have an sqr.ini that points to 6.1.3 > > stuff, > > especially for the value of SQRDIR (make one if needed) and that it's > in > > the > > right place, or use the -ZIF flag. And double check environment > > variables > > for any SQR type stuff (also look at "path"). > > > > That's pretty much all I got off the top of my head. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > I set PROGLINES=3D32767 and it still gives me: > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > PROGLINEPARS. > > > SQR: Program Aborting. > > > > > > > > > > > > > > > -----Original Message----- > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On > > > Behalf Of Don Mellen > > > Sent: Wednesday, October 31, 2007 2:55 PM > > > To: This list is for discussion about the SQR database reporting > > > languagefrom Hyperion Solutions. > > > Subject: Re: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > Well, I would have expected the error message to switch to PROGLINES > > > instead > > > of PROGLINEPARS, but for S.A.G. try upping the PROGLINES next. > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > Thanks for the info Don. > > > > > > > > We are using the -M(filename) and I have put the max > > > > value(PROGLINEPARS=3D65535) in there and it still throws the same > > error. > > > > If I increase it to PROGLINEPARS=3D65536 it will complain about the > > max > > > > being 65535 so it seems like it is at least using the -M(file) > > > > > > > > I can run the -M flag using 832 with PROGLINEPARS=3D18000(default) > and > > > it > > > > will process successfully. That is what has me so confused with > > this. > > > > > > > > Any other ideas? > > > > > > > > > > > > Thanks again. > > > > > > > > > > > > -----Original Message----- > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > On > > > > Behalf Of Don Mellen > > > > Sent: Wednesday, October 31, 2007 1:33 PM > > > > To: This list is for discussion about the SQR database reporting > > > > languagefrom Hyperion Solutions. > > > > Subject: Re: [sqr-users] Problem with Version 613 > running/compiling > > > > report > > > > > > > > The way these versions handle processing limits > ("Processing-Limits" > > > in > > > > the > > > > ini) is that prior to 8.0, SQR would "cap" things at wherever > limits > > > > were > > > > set. In 8.0 and above, they start at those limits, but will > > increase > > > > themselves "on-the-fly" up to the architectural limit. > > > > > > > > Did you try to use an -M{filename} flag on the command line, or > did > > > you > > > > just > > > > try to change the .ini file? > > > > > > > > If you haven't, try making a processing limits override file that > > sets > > > > PROGLINEPARS=3D65535 and use the -M{filename} flag on the command > line > > > for > > > > the > > > > 613 version. If that works, then you know that it was not finding > > > > whatever > > > > file you changed (plus you know that your code works in that > version > > > and > > > > the > > > > error was accurate). > > > > > > > > The order of where SQR looks for the SQR.INI file is... > > > > 1. The file name specified by the -ZIF{file} command-line flag. > > > > 2. The directory where the executable image resides. > > > > 3. The Windows system directory. > > > > > > > > HTH, > > > > Don > > > > > > > > > > > > On 10/31/07, Eric Miller wrote: > > > > > > > > > > I am not sure. There is a SQR.INI file in the C:\Windows\ > > directory > > > > > (which points to the 832 install), then there are sqr_en.ini > files > > > in > > > > > the individual directories for 832 and 820 but NOT 613. > > > > > > > > > > Will 613 just be trying to see what's in C:\Windows\SQR.INI and > > > since > > > > > that has data inside it pointing to the 832 install, it doesn't > > know > > > > > what to do? > > > > > > > > > > Thanks for the Reply. > > > > > > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org > > > > > [mailto: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] > > On > > > > > Behalf Of Knapp, Richard > > > > > Sent: Wednesday, October 31, 2007 12:32 PM > > > > > To: This list is for discussion about the SQR database > > > > reportinglanguage > > > > > fromHyperion Solutions. > > > > > Subject: RE: [sqr-users] Problem with Version 613 > > running/compiling > > > > > report > > > > > > > > > > > > > > > Are you sure it is finding the init file with the new value? > > > > > > > > > > Richard Knapp > > > > > EAS - Data Warehouse Group > > > > > University of Missouri > > > > > 615 Locust Street #200 > > > > > Columbia, MO 65201 > > > > > 573-882-8856 > > > > > knappr@umsystem.edu > > > > > > > > > > > > > > > -----Original Message----- > > > > > From: sqr-users-bounces+knappr=3D umsystem.edu@sqrug.org > > > > > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On > Behalf > > > Of > > > > > Eric Miller > > > > > Sent: Wednesday, October 31, 2007 11:24 AM > > > > > To: sqr-users@sqrug.org > > > > > Subject: [sqr-users] Problem with Version 613 running/compiling > > > report > > > > > > > > > > Hello All, > > > > > We are encountering a problem when running one of our SQR files > > with > > > > > version 6.1.3. It is throwing an error saying the following: > > > > > > > > > > (SQR 4401) Out of param storage; use -Mfile to increase > > > PROGLINEPARS. > > > > > SQR: Program Aborting. > > > > > > > > > > I have searched the archive and read the articles related to > this, > > > but > > > > > none seem to solve my problem. > > > > > > > > > > I have increased this variable to its max value and the error is > > > still > > > > > thrown. > > > > > > > > > > If I run it with the original value using versions 820 or 832 it > > > will > > > > > run fine. > > > > > > > > > > Is there any difference in configuration or anything for 613? > Our > > > > > problem seems to be specific to that version for some reason. > > > > > > > > > > Thanks in advance for the help, > > > > > Eric > > > > > > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > _______________________________________________ > > > > > sqr-users mailing list > > > > > sqr-users@sqrug.org > > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > ----------------------------------------------------------------------- > > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > > http://www.ontko.com/ > > > > donm@ontko.com | "In the beginning, there was nothing, which > > > exploded" > > > > (Terry Pratchett) > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > _______________________________________________ > > > > sqr-users mailing list > > > > sqr-users@sqrug.org > > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > > > > > > -- > > > > > > ----------------------------------------------------------------------- > > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > > http://www.ontko.com/ > > > donm@ontko.com | "In the beginning, there was nothing, which > > exploded" > > > (Terry Pratchett) > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > _______________________________________________ > > > sqr-users mailing list > > > sqr-users@sqrug.org > > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > > > > > > -- > > > ----------------------------------------------------------------------- > > Donald Mellen | Ray Ontko & Co. - Richmond, IN - > http://www.ontko.com/ > > donm@ontko.com | "In the beginning, there was nothing, which > exploded" > > (Terry Pratchett) > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > --=20 ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 17:22:17 2007 From: "McElroy, Stan" Date: Thu, 1 Nov 2007 14:19:08 -0700 Subject: [sqr-users] Trying to get NewGraphics features working I am currently working on an SQR report that produces two bar graphs in which we would like to change what colors are used for the bars on the graphs, would like to use a different color for the graph background, and would like to change the size of the font that is used for the x-axis labels appearing below the graph. It looks like these are features that are available in the NewGraphics features of SQR. So I modified our PSSQR.INI files on both the Unix and NT side to include the NewGraphics=3DTRUE line in the [Default Settings] section. But my color changes still had no impact. =20 The bottom line is this: I can't figure out how to get these NewGraphics features working. Is there something else I need to do in addition to making that one line change in the PSSQR.INI files? Any help or suggestions would be most appreciated! =20 =20 Stan McElroy McKesson Corporate IT Alpharetta, GA Office Phone: (404) 338-4246 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 01 18:57:46 2007 Date: Thu, 1 Nov 2007 18:55:25 -0400 From: "Don Mellen" Subject: Re: [sqr-users] Problem with Version 613 running/compiling report If there is, other than available disk space, I don't know what it is, but that should not be your problem. I've made some pretty massive programs before and never had that problem. Plus, you said earlier "But I don't think there is anyway that the max value is being exceeded by the report causing the problems." I'd try Philippe's suggestion. If it's a unix file, it'll be missing carriage returns that might not be obvious in your program editor. There might be also be a non-printable character(s) in the file that causes this problem on 613, but that 8+ handles gracefully. I have experienced that before, and after commenting out massive sections, narrowed it to a single line that was fine after I retyped all the visible chars in a new line. On 11/1/07, Eric Miller wrote: > > Does anyone know if there is a maximum filesize for the compiled SQT file? > And if so what that is? > > Thanks, > Eric > > > > -----Original Message----- > From: sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org [mailto: > sqr-users-bounces+eric.miller=3Dcgifederal.com@sqrug.org] On Behalf Of > RITTER, Philippe > Sent: Thursday, November 01, 2007 2:02 PM > To: This list is for discussion about the SQR database reporting > languagefromHyperion Solutions. > Subject: RE: [sqr-users] Problem with Version 613 running/compiling report > > Hello, > > We got the same problem. We are running SQR on Unix, but we edit the > program from Windows. What we did to correct this program was to : > > Run an unix2dos utilies and then back with dos2unix. After that, the > program run correctly > > Regards > Philippe RITTER > > -----Message d'origine----- > De: sqr-users-bounces+philippe.ritter=3Dcaisse-des-medecins.ch@sqrug.org[= mailto: > sqr-users-bounces+philippe.ritter=3Dcaisse-des-medecins.ch@sqrug.org] De = la > part de Don Mellen > Envoy=E9: jeudi 1 novembre 2007 18:48 > =C0: This list is for discussion about the SQR database reporting > languagefrom Hyperion Solutions. > Objet: Re: [sqr-users] Problem with Version 613 running/compiling report > > Are you running from the DOS prompt or through an app? (I was originally > thinking from the DOS prompt) > > If from DOS prompt, are you fully pathing the sqrw exe? > > Can you run a simple program from 613, i.e. > > Begin-Program > show 'Hello' > End-Program > > > > -- > ----------------------------------------------------------------------- > Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ > donm@ontko.com | "In the beginning, there was nothing, which exploded" > (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 07 11:01:16 2007 Date: Wed, 7 Nov 2007 10:58:29 -0500 From: "Susan Lomovasky" Subject: [sqr-users] PCL code Hi all! I am incorporating PCL code into my check-printing application program to print a digitized signature and check micr code.=20=20 Everything works fine if I print the signature and micr on every page. However, when I want to print the sig and micr on the first page and then not print on the following page by not coding the printer escape sequence, the signature or micr 'overflows' onto the following page. Has anyone else had this problem or knows how to 'turn off' the encode command? Thanks. Susan =20 Susan Lomovasky Systems Analyst M.I.S. Department Maimonides Medical Center p 718.283.1819 | f 718.283.1880 slomovasky@maimonidesmed.org =20 =20 =20 ______________________________________________________________________ This e-mail has been scanned by MCI Managed Email Content Service. To repo= rt any issues regarding e-mail SPAM ONLY, please notify Vitaly Petrovsky at= phone#: 718-283-1853. ______________________________________________________________________ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 07 11:14:58 2007 Subject: RE: [sqr-users] PCL code Date: Wed, 7 Nov 2007 10:12:44 -0600 From: "Knapp, Richard" Susan, You don't want to turn off the encodes. Instead, you want to be sure the correct encoded sequences are sent at the correct place in the stream of data being sent to the printer. If you have all the text and codes for the check in a procedure, you could place a carriage return at the end of that procedure's data stream. There are several things that could be influencing the page length including printer defaults. Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of Susan Lomovasky Sent: Wednesday, November 07, 2007 9:58 AM To: sqr-users@sqrug.org Cc: Jay Gurevich Subject: [sqr-users] PCL code Hi all! I am incorporating PCL code into my check-printing application program to print a digitized signature and check micr code.=20=20 Everything works fine if I print the signature and micr on every page. However, when I want to print the sig and micr on the first page and then not print on the following page by not coding the printer escape sequence, the signature or micr 'overflows' onto the following page. Has anyone else had this problem or knows how to 'turn off' the encode command? Thanks. Susan =20 Susan Lomovasky Systems Analyst M.I.S. Department Maimonides Medical Center p 718.283.1819 | f 718.283.1880 slomovasky@maimonidesmed.org =20 =20 =20 ______________________________________________________________________ This e-mail has been scanned by MCI Managed Email Content Service. To report any issues regarding e-mail SPAM ONLY, please notify Vitaly Petrovsky at phone#: 718-283-1853. ______________________________________________________________________ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 09 12:46:16 2007 From: "Joe" Date: Fri, 9 Nov 2007 10:43:23 -0700 Subject: [sqr-users] on-break statement in select does not print first line of a data field I have a select statement that goes as follows: begin-SELECT=20 E.NATIONAL_ID () on-break print =3D never level =3D 1 before =3D SSN-Change-Bef E.NAME J.EMPLID J.EMPL_RCD E.SEX E.HIRE_DT E.BIRTHDATE E.ADDRESS1 E.ADDRESS2 E.CITY E.STATE E.POSTAL HB.EFFDT HB.BENEFIT_PLAN HB.COVRG_CD HB.COVERAGE_BEGIN_DT HB.COVERAGE_END_DT ........ etc ......... The Procedure SSN-Change-Bef simply flips a flag so $SSN_Change =3D 'Y' In the procedure that prints the lis report, there is the logic: if $SSN_Change =3D 'Y' let $SSN_Change =3D 'N' print &E.NATIONAL_ID (+2, {Col1} ) edit xxx-xx-xxxx print &J.EMPLID ( , {Col2} ) else print ' ' (+1, )=20 end-if print $Report_Name ( , {Col3} ) print &HB.BENEFIT_PLAN ( , {Col4} ) print $Coverage ( , {Col5} )=20 print $Eligibility_Effdt_MDY ( , {Col6} )=20 print $Start_Action_Dt_MDY ( , {Col7} )=20 print $Termination_Dt_MDY ( , {Col8} )=20 print $Dependent_Benef ( , {Col9} ) print $RelationShip ( , {Col10})=20 The purpose of the above printing logic is so the report prints the Employe= e on the first line, then each dependent on the following lines, then skips= a line before the next Employee. In addition to the lis report, the SQR creates a flat file. Here is my issue: The $Eligibility_Effdt_MDY is inconsistently skipped on the lis report, but= it is there on the flat file. All of the other data is printed correctly. In my output, the first three Employees and family are printed correctly, o= n the fourth the $Eligibility_Effdt_MDY is blank on the lis (but there on t= he data file), on the fifth Employee, it is blank but the Dependent lines h= ave it (again, it is there for all the Employee's lines on the data file). What is causing this inconsistent blank data for $Eligibility_Effdt_MDY? TIA, jej1216 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 09 13:30:32 2007 Subject: RE: [sqr-users] on-break statement in select does not print first lineof a data field Date: Fri, 9 Nov 2007 12:28:00 -0600 From: "Knapp, Richard" You don't show where $Eligibility_Effdt_MDY gets its values. That's where I'd look first. Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of Joe Sent: Friday, November 09, 2007 11:43 AM To: This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions. Subject: [sqr-users] on-break statement in select does not print first lineof a data field I have a select statement that goes as follows: begin-SELECT=20 E.NATIONAL_ID () on-break print =3D never level =3D 1 before =3D SSN-Change-Bef E.NAME J.EMPLID J.EMPL_RCD E.SEX E.HIRE_DT E.BIRTHDATE E.ADDRESS1 E.ADDRESS2 E.CITY E.STATE E.POSTAL HB.EFFDT HB.BENEFIT_PLAN HB.COVRG_CD HB.COVERAGE_BEGIN_DT HB.COVERAGE_END_DT ........ etc ......... The Procedure SSN-Change-Bef simply flips a flag so $SSN_Change =3D 'Y' In the procedure that prints the lis report, there is the logic: if $SSN_Change =3D 'Y' let $SSN_Change =3D 'N' print &E.NATIONAL_ID (+2, {Col1} ) edit xxx-xx-xxxx print &J.EMPLID ( , {Col2} ) else print ' ' (+1, )=20 end-if print $Report_Name ( , {Col3} ) print &HB.BENEFIT_PLAN ( , {Col4} ) print $Coverage ( , {Col5} )=20 print $Eligibility_Effdt_MDY ( , {Col6} )=20 print $Start_Action_Dt_MDY ( , {Col7} )=20 print $Termination_Dt_MDY ( , {Col8} )=20 print $Dependent_Benef ( , {Col9} ) print $RelationShip ( , {Col10})=20 The purpose of the above printing logic is so the report prints the Employee on the first line, then each dependent on the following lines, then skips a line before the next Employee. In addition to the lis report, the SQR creates a flat file. Here is my issue: The $Eligibility_Effdt_MDY is inconsistently skipped on the lis report, but it is there on the flat file. All of the other data is printed correctly. In my output, the first three Employees and family are printed correctly, on the fourth the $Eligibility_Effdt_MDY is blank on the lis (but there on the data file), on the fifth Employee, it is blank but the Dependent lines have it (again, it is there for all the Employee's lines on the data file). What is causing this inconsistent blank data for $Eligibility_Effdt_MDY? TIA, jej1216 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 09 14:04:54 2007 From: franck.masson2002@laposte.net Subject: RE: [sqr-users] on-break statement in select does not print first lineof a data field Date: Fri, 9 Nov 2007 20:02:05 +0100 (CET) What is your OutPut Format ? pdf ? try to generate an HTML or csv output to see if the data is realy in the Ou= tput=20=20 > Message du 09/11/07 19:56 > De : "Knapp, Richard"=20 > A : "This list is for discussion about the SQR database reportinglanguage= from Hyperion Solutions."=20 > Copie =C3=A0 :=20 > Objet : RE: [sqr-users] on-break statement in select does not print first= lineof a data field > >=20 > You don't show where $Eligibility_Effdt_MDY gets its values. That's > where I'd look first. >=20 > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu >=20 >=20 > -----Original Message----- > From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of > Joe > Sent: Friday, November 09, 2007 11:43 AM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: [sqr-users] on-break statement in select does not print first > lineof a data field >=20 > I have a select statement that goes as follows: >=20 > begin-SELECT=20 > E.NATIONAL_ID () on-break print =3D never > level =3D 1 > before =3D SSN-Change-Bef > E.NAME > J.EMPLID > J.EMPL_RCD > E.SEX > E.HIRE_DT > E.BIRTHDATE > E.ADDRESS1 > E.ADDRESS2 > E.CITY > E.STATE > E.POSTAL > HB.EFFDT > HB.BENEFIT_PLAN > HB.COVRG_CD > HB.COVERAGE_BEGIN_DT > HB.COVERAGE_END_DT > ........ etc ......... >=20 > The Procedure SSN-Change-Bef simply flips a flag so $SSN_Change =3D 'Y' >=20 > In the procedure that prints the lis report, there is the logic: > if $SSN_Change =3D 'Y' > let $SSN_Change =3D 'N' > print &E.NATIONAL_ID (+2, {Col1} ) edit xxx-xx-xxxx > print &J.EMPLID ( , {Col2} ) > else > print ' ' (+1, )=20 > end-if >=20 > print $Report_Name ( , {Col3} ) > print &HB.BENEFIT_PLAN ( , {Col4} ) > print $Coverage ( , {Col5} )=20 > print $Eligibility_Effdt_MDY ( , {Col6} )=20 > print $Start_Action_Dt_MDY ( , {Col7} )=20 > print $Termination_Dt_MDY ( , {Col8} )=20 > print $Dependent_Benef ( , {Col9} ) > print $RelationShip ( , {Col10})=20 >=20 > The purpose of the above printing logic is so the report prints the > Employee on the first line, then each dependent on the following lines, > then skips a line before the next Employee. >=20 > In addition to the lis report, the SQR creates a flat file. >=20 > Here is my issue: >=20 > The $Eligibility_Effdt_MDY is inconsistently skipped on the lis report, > but it is there on the flat file. All of the other data is printed > correctly. > In my output, the first three Employees and family are printed > correctly, on the fourth the $Eligibility_Effdt_MDY is blank on the lis > (but there on the data file), on the fifth Employee, it is blank but the > Dependent lines have it (again, it is there for all the Employee's lines > on the data file). >=20 > What is causing this inconsistent blank data for $Eligibility_Effdt_MDY? >=20 > TIA, >=20 > jej1216 >=20 >=20 >=20 >=20 >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 09 14:43:58 2007 From: "Joe" Subject: Re: [sqr-users] on-break statement in select does not print firstlineof a data field Date: Fri, 9 Nov 2007 12:41:03 -0700 Franck, The output is a txt file, fixed position. The data is showing up there, just not in the lis report. - jej1216 ----- Original Message ----- From: To: "This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions." Sent: Friday, November 09, 2007 12:02 PM Subject: RE: [sqr-users] on-break statement in select does not print firstlineof a data field What is your OutPut Format ? pdf ? try to generate an HTML or csv output to see if the data is realy in the Output > Message du 09/11/07 19:56 > De : "Knapp, Richard" > A : "This list is for discussion about the SQR database reportinglanguage > from Hyperion Solutions." > Copie à : > Objet : RE: [sqr-users] on-break statement in select does not print first > lineof a data field > > > You don't show where $Eligibility_Effdt_MDY gets its values. That's > where I'd look first. > > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu > > > -----Original Message----- > From: sqr-users-bounces+knappr=umsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf Of > Joe > Sent: Friday, November 09, 2007 11:43 AM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: [sqr-users] on-break statement in select does not print first > lineof a data field > > I have a select statement that goes as follows: > > begin-SELECT > E.NATIONAL_ID () on-break print = never > level = 1 > before = SSN-Change-Bef > E.NAME > J.EMPLID > J.EMPL_RCD > E.SEX > E.HIRE_DT > E.BIRTHDATE > E.ADDRESS1 > E.ADDRESS2 > E.CITY > E.STATE > E.POSTAL > HB.EFFDT > HB.BENEFIT_PLAN > HB.COVRG_CD > HB.COVERAGE_BEGIN_DT > HB.COVERAGE_END_DT > ........ etc ......... > > The Procedure SSN-Change-Bef simply flips a flag so $SSN_Change = 'Y' > > In the procedure that prints the lis report, there is the logic: > if $SSN_Change = 'Y' > let $SSN_Change = 'N' > print &E.NATIONAL_ID (+2, {Col1} ) edit xxx-xx-xxxx > print &J.EMPLID ( , {Col2} ) > else > print ' ' (+1, ) > end-if > > print $Report_Name ( , {Col3} ) > print &HB.BENEFIT_PLAN ( , {Col4} ) > print $Coverage ( , {Col5} ) > print $Eligibility_Effdt_MDY ( , {Col6} ) > print $Start_Action_Dt_MDY ( , {Col7} ) > print $Termination_Dt_MDY ( , {Col8} ) > print $Dependent_Benef ( , {Col9} ) > print $RelationShip ( , {Col10}) > > The purpose of the above printing logic is so the report prints the > Employee on the first line, then each dependent on the following lines, > then skips a line before the next Employee. > > In addition to the lis report, the SQR creates a flat file. > > Here is my issue: > > The $Eligibility_Effdt_MDY is inconsistently skipped on the lis report, > but it is there on the flat file. All of the other data is printed > correctly. > In my output, the first three Employees and family are printed > correctly, on the fourth the $Eligibility_Effdt_MDY is blank on the lis > (but there on the data file), on the fifth Employee, it is blank but the > Dependent lines have it (again, it is there for all the Employee's lines > on the data file). > > What is causing this inconsistent blank data for $Eligibility_Effdt_MDY? > > TIA, > > jej1216 > > > > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > Créez votre adresse électronique prénom.nom@laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus intégrés. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 09 15:13:56 2007 From: "Joe" Subject: Re: [sqr-users] on-break statement in select does not print firstlineof a data field Date: Fri, 9 Nov 2007 13:11:02 -0700 Richard, (from the select for Covered Employees) let $Eligibility_Effdt = &HB.COVERAGE_BEGIN_DT (from the select for Covered Dependents) let $Eligibility_Effdt = &HBD.COVERAGE_BEGIN_DT (from the print procedure) let $DDelimiter = '' do Format-Datetime ($Eligibility_Effdt, $Eligibility_Effdt_MDY,{DEFMDY},'','') It is only on the Covered Employees where some have blank for $Eligibility_Effdt_MDY. TIA, jej1216 ----- Original Message ----- From: "Knapp, Richard" To: "This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions." Sent: Friday, November 09, 2007 11:28 AM Subject: RE: [sqr-users] on-break statement in select does not print firstlineof a data field You don't show where $Eligibility_Effdt_MDY gets its values. That's where I'd look first. Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=umsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf Of Joe Sent: Friday, November 09, 2007 11:43 AM To: This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions. Subject: [sqr-users] on-break statement in select does not print first lineof a data field I have a select statement that goes as follows: begin-SELECT E.NATIONAL_ID () on-break print = never level = 1 before = SSN-Change-Bef E.NAME J.EMPLID J.EMPL_RCD E.SEX E.HIRE_DT E.BIRTHDATE E.ADDRESS1 E.ADDRESS2 E.CITY E.STATE E.POSTAL HB.EFFDT HB.BENEFIT_PLAN HB.COVRG_CD HB.COVERAGE_BEGIN_DT HB.COVERAGE_END_DT ........ etc ......... The Procedure SSN-Change-Bef simply flips a flag so $SSN_Change = 'Y' In the procedure that prints the lis report, there is the logic: if $SSN_Change = 'Y' let $SSN_Change = 'N' print &E.NATIONAL_ID (+2, {Col1} ) edit xxx-xx-xxxx print &J.EMPLID ( , {Col2} ) else print ' ' (+1, ) end-if print $Report_Name ( , {Col3} ) print &HB.BENEFIT_PLAN ( , {Col4} ) print $Coverage ( , {Col5} ) print $Eligibility_Effdt_MDY ( , {Col6} ) print $Start_Action_Dt_MDY ( , {Col7} ) print $Termination_Dt_MDY ( , {Col8} ) print $Dependent_Benef ( , {Col9} ) print $RelationShip ( , {Col10}) The purpose of the above printing logic is so the report prints the Employee on the first line, then each dependent on the following lines, then skips a line before the next Employee. In addition to the lis report, the SQR creates a flat file. Here is my issue: The $Eligibility_Effdt_MDY is inconsistently skipped on the lis report, but it is there on the flat file. All of the other data is printed correctly. In my output, the first three Employees and family are printed correctly, on the fourth the $Eligibility_Effdt_MDY is blank on the lis (but there on the data file), on the fifth Employee, it is blank but the Dependent lines have it (again, it is there for all the Employee's lines on the data file). What is causing this inconsistent blank data for $Eligibility_Effdt_MDY? TIA, jej1216 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 09 16:01:57 2007 From: "Joe" Subject: Re: [sqr-users] on-break statement in select does not printfirstlineof a data field Date: Fri, 9 Nov 2007 13:59:06 -0700 I found the problem - coding error. The value was being populated only when a Dependent was found. The reason it showed up in the txt file was that I had formatted it differently and THAT value was going over in all cases. You know, I've been needing for it to be Friday since this Monday (lol) Sorry for the wild goose chase, and thanks for the help. jej1216 ----- Original Message ----- From: "Joe" To: "This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions." Sent: Friday, November 09, 2007 1:11 PM Subject: Re: [sqr-users] on-break statement in select does not printfirstlineof a data field > Richard, > > (from the select for Covered Employees) > let $Eligibility_Effdt = &HB.COVERAGE_BEGIN_DT > > (from the select for Covered Dependents) > let $Eligibility_Effdt = &HBD.COVERAGE_BEGIN_DT > > (from the print procedure) > let $DDelimiter = '' > do Format-Datetime ($Eligibility_Effdt, > $Eligibility_Effdt_MDY,{DEFMDY},'','') > > It is only on the Covered Employees where some have blank for > $Eligibility_Effdt_MDY. > > TIA, > > jej1216 > > ----- Original Message ----- > From: "Knapp, Richard" > To: "This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions." > Sent: Friday, November 09, 2007 11:28 AM > Subject: RE: [sqr-users] on-break statement in select does not print > firstlineof a data field > > > You don't show where $Eligibility_Effdt_MDY gets its values. That's > where I'd look first. > > Richard Knapp > EAS - Data Warehouse Group > University of Missouri > 615 Locust Street #200 > Columbia, MO 65201 > 573-882-8856 > knappr@umsystem.edu > > > -----Original Message----- > From: sqr-users-bounces+knappr=umsystem.edu@sqrug.org > [mailto:sqr-users-bounces+knappr=umsystem.edu@sqrug.org] On Behalf Of > Joe > Sent: Friday, November 09, 2007 11:43 AM > To: This list is for discussion about the SQR database reportinglanguage > fromHyperion Solutions. > Subject: [sqr-users] on-break statement in select does not print first > lineof a data field > > I have a select statement that goes as follows: > > begin-SELECT > E.NATIONAL_ID () on-break print = never > level = 1 > before = SSN-Change-Bef > E.NAME > J.EMPLID > J.EMPL_RCD > E.SEX > E.HIRE_DT > E.BIRTHDATE > E.ADDRESS1 > E.ADDRESS2 > E.CITY > E.STATE > E.POSTAL > HB.EFFDT > HB.BENEFIT_PLAN > HB.COVRG_CD > HB.COVERAGE_BEGIN_DT > HB.COVERAGE_END_DT > ........ etc ......... > > The Procedure SSN-Change-Bef simply flips a flag so $SSN_Change = 'Y' > > In the procedure that prints the lis report, there is the logic: > if $SSN_Change = 'Y' > let $SSN_Change = 'N' > print &E.NATIONAL_ID (+2, {Col1} ) edit xxx-xx-xxxx > print &J.EMPLID ( , {Col2} ) > else > print ' ' (+1, ) > end-if > > print $Report_Name ( , {Col3} ) > print &HB.BENEFIT_PLAN ( , {Col4} ) > print $Coverage ( , {Col5} ) > print $Eligibility_Effdt_MDY ( , {Col6} ) > print $Start_Action_Dt_MDY ( , {Col7} ) > print $Termination_Dt_MDY ( , {Col8} ) > print $Dependent_Benef ( , {Col9} ) > print $RelationShip ( , {Col10}) > > The purpose of the above printing logic is so the report prints the > Employee on the first line, then each dependent on the following lines, > then skips a line before the next Employee. > > In addition to the lis report, the SQR creates a flat file. > > Here is my issue: > > The $Eligibility_Effdt_MDY is inconsistently skipped on the lis report, > but it is there on the flat file. All of the other data is printed > correctly. > In my output, the first three Employees and family are printed > correctly, on the fourth the $Eligibility_Effdt_MDY is blank on the lis > (but there on the data file), on the fifth Employee, it is blank but the > Dependent lines have it (again, it is there for all the Employee's lines > on the data file). > > What is causing this inconsistent blank data for $Eligibility_Effdt_MDY? > > TIA, > > jej1216 > > > > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 00:24:32 2007 Date: 14 Nov 2007 05:19:46 -0000 From: "zanoop razack" Subject: [sqr-users] Difference between sqr versions. Hi,We are planning to upgrae from Hyperion Sqr version 3.0 to hyperion version 9.3.I would like to know is there any documents or site which shows the ifferneces between these two vwrsions.Also it would be great If any one let me know the basic diferneces between these two versions.We are also upgrading the database from Sybase to SQL server.RegardsZanoop ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 08:44:35 2007 Subject: RE: [sqr-users] Difference between sqr versions. Date: Wed, 14 Nov 2007 08:40:36 -0500 From: Unless you have a very simple application which can tolerate extensive downtime, I recommend you hire a consultant. That is a HUGE upgrade. -Steve Jones=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of zanoop razack Sent: Tuesday, November 13, 2007 9:20 PM To: sqr-users@sqrug.org Subject: [sqr-users] Difference between sqr versions. Hi,We are planning to upgrae from Hyperion Sqr version 3.0 to hyperion version 9.3.I would like to know is there any documents or site which shows the ifferneces between these two vwrsions.Also it would be great If any one let me know the basic diferneces between these two versions.We are also upgrading the database from Sybase to SQL server.RegardsZanoop =20=20=20=20=20 ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 09:46:38 2007 Date: 14 Nov 2007 14:41:53 -0000 Subject: Re :RE: [sqr-users] Difference between sqr versions. From: "zanoop razack" This is a very simple application and very less critical.We have around 100 sqrs to be converted.I checked the hyperion site and not able to find any docs or articles related to this.It would be a great help if some one can help or direct me on this.RegardsZanoopOn Wed, 14 Nov 2007 08:40:36 -0500 "This list is for discussion about the SQR database reporting language from Hyperion Solutions." wroteUnless you have a very simple application which can tolerate extensivedowntime, I recommend you hire a consultant. That is a HUGE upgrade.-Steve Jones -----Original Message-----From: sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org[mailto:sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org] On BehalfOf zanoop razackSent: Tuesday, November 13, 2007 9:20 PMTo: sqr-users@sqrug.orgSubject: [sqr-users] Difference between sqr versions.Hi,We are planning to upgrae from Hyperion Sqr version 3.0 to hyperionversion 9.3.I would like to know is there any documents or site whichshows the ifferneces between these two vwrsions.Also it would be greatIf any one let me know the basic diferneces between these twoversions.We are also upgrading the database from Sybase to SQLserver.RegardsZanoop------------CheersZanoop Razack A A_______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users_______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 11:24:54 2007 From: "Peter Burton" Subject: RE: Re :RE: [sqr-users] Difference between sqr versions. Date: Wed, 14 Nov 2007 11:21:11 -0500 The conversion shouldn't be that hard as the SQR language is very upward co= mpatbile. You will of course have to recompile any SQT files. You will have to look all of your BEGIN-SELECT and BEGIN-SQL statements bec= ause there are differences between MS SQL Server and Sybase. =20 If you are using any stored procedcures the EXECUTE command is slightly dif= ference between the SQR/Sybase and SQR/ODBC versions. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of zanoop razack Sent: Wednesday, November 14, 2007 9:42 AM To: sqr-users@sqrug.org Subject: Re :RE: [sqr-users] Difference between sqr versions. This is a very simple application and very less critical.We have around 100= sqrs to be converted.I checked the hyperion site and not able to find any = docs or articles related to this.It would be a great help if some one = can help or direct me on this.RegardsZanoopOn Wed, 14 Nov 2007 08:40:36 -05= 00 "This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions." wroteUnless you have a very simple application whi= ch can tolerate extensivedowntime, I recommend you hire a consultant. That = is a HUGE upgrade.-Steve Jones -----Original Message-----From: sqr-users-bo= unces+jones.steven=3Dups-scs.com@sqrug.org[mailto:sqr-users-bounces+jones.s= teven=3Dups-scs.com@sqrug.org] On BehalfOf zanoop razackSent: Tuesday, Nove= mber 13, 2007 9:20 PMTo: sqr-users@sqrug.orgSubject: [sqr-users] Difference= between sqr versions.Hi,We are planning to upgrae from Hyperion Sqr versio= n 3.0 to hyperionversion 9.3.I would like to know is there any documents or= site whichshows t! he ifferneces between these two vwrsions.Also it would be greatIf any one = let me know the basic diferneces between these twoversions.We are also upgr= ading the database from Sybase to SQLserver.RegardsZanoop------------Cheers= Zanoop Razack A A_______________________________________________sqr-users m= ailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-use= rs_______________________________________________sqr-users mailing listsqr-= users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users =20 ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 13:27:05 2007 Date: Wed, 14 Nov 2007 13:30:28 -0500 From: Leighton Barker Subject: [sqr-users] Union error I have a problem...I am running Hyperion SQR version 8.3 and using union..see e.g. below. I don't want the column with the zero in it from the 2nd select in the union...that should be ok to put a zero in it, I think...it works in SQL...anyway, it is not working running SQR. I am getting an error...SQR 6806 String2 EM:string to Decimal object conversion error...please advise. Thanks much. begin select llada bbada rrada from ppp where wwwww union select llada, bbada, 0 from ppp where wwwww end-select _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 13:44:38 2007 Subject: RE: [sqr-users] Union error Date: Wed, 14 Nov 2007 12:41:29 -0600 From: "Knapp, Richard" No commas!!!!! Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of Leighton Barker Sent: Wednesday, November 14, 2007 12:30 PM To: sqr-users@sqrug.org Subject: [sqr-users] Union error I have a problem...I am running Hyperion SQR version 8.3 and using=20 union..see e.g. below. I don't want the column with the zero in it from the=20 2nd select in the union...that should be ok to put a zero in it, I=20 think...it works in SQL...anyway, it is not working running SQR. I am=20 getting an error...SQR 6806 String2 EM:string to Decimal object conversion=20 error...please advise. Thanks much. begin select llada bbada rrada from ppp where wwwww union select llada, bbada, 0 from ppp where wwwww end-select _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 13:48:44 2007 Subject: RE: [sqr-users] Union error Date: Wed, 14 Nov 2007 12:42:51 -0600 From: "Harris, Roger" When using union the data types for each select must match column for colum= n. If the column in the first select, that matches 0 column in the second s= elect, is char you get an error. Roger=20 -----Original Message----- From: sqr-users-bounces+roger.harris=3Dfnis.com@sqrug.org [mailto:sqr-users= -bounces+roger.harris=3Dfnis.com@sqrug.org] On Behalf Of Leighton Barker Sent: Wednesday, November 14, 2007 01:30 PM To: sqr-users@sqrug.org Subject: [sqr-users] Union error I have a problem...I am running Hyperion SQR version 8.3 and using=20 union..see e.g. below. I don't want the column with the zero in it from the= =20 2nd select in the union...that should be ok to put a zero in it, I=20 think...it works in SQL...anyway, it is not working running SQR. I am=20 getting an error...SQR 6806 String2 EM:string to Decimal object conversion= =20 error...please advise. Thanks much. begin select llada bbada rrada from ppp where wwwww union select llada, bbada, 0 from ppp where wwwww end-select _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ______________ The information contained in this message is proprietary and/or confidentia= l. If you are not the intended recipient, please: (i) delete the message an= d all copies; (ii) do not disclose, distribute or use the message in any ma= nner; and (iii) notify the sender immediately. In addition, please be aware= that any message addressed to our domain is subject to archiving and revie= w by persons other than the intended recipient. Thank you. _____________ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 13:52:39 2007 Date: Wed, 14 Nov 2007 13:48:00 -0500 From: "Don Mellen" Subject: Re: [sqr-users] Union error >From the Archives... Happens "when selecting a number column that isn't scaled (defined as number, as opposed to number(10)), for example)" Pre 10g: alter system set event='10499 trace name context forever,level 1' COMMENT='return 0 for the scale if NUMBER created without specifying the scale' SCOPE=SPFILE or select as character (to_char(rrada) and '0') On or Post 10g: select as character (to_char(rrada) and '0') HTH, Don On 11/14/07, Leighton Barker wrote: > > I have a problem...I am running Hyperion SQR version 8.3 and using > union..see e.g. below. I don't want the column with the zero in it from > the > 2nd select in the union...that should be ok to put a zero in it, I > think...it works in SQL...anyway, it is not working running SQR. I am > getting an error...SQR 6806 String2 EM:string to Decimal object conversion > error...please advise. > > Thanks much. > > begin select > llada > bbada > rrada > > from ppp > > where wwwww > union select > llada, > bbada, > 0 > > from ppp > > where wwwww > end-select > > > > > > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > -- ----------------------------------------------------------------------- Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ donm@ontko.com | "In the beginning, there was nothing, which exploded" (Terry Pratchett) _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 13:56:44 2007 Subject: RE: [sqr-users] Union error Date: Wed, 14 Nov 2007 12:50:04 -0600 From: "Harris, Roger" When using union the data types for each select must match column for colum= n. If the column in the first select is char and the matching column in the= second select is number (0) you get an error. Roger L. Harris Programmer Analyst Sr Product Development Certegy Check Services Fidelity National Information Services, Inc 11601 N. Roosevelt Blvd St Petersburg, FL 33716 =20 (727) 227-5850 direct (800) 215-6280 x75850 toll free (727) 570-4917 Fax=20=20 -----Original Message----- From: sqr-users-bounces+roger.harris=3Dfnis.com@sqrug.org [mailto:sqr-users= -bounces+roger.harris=3Dfnis.com@sqrug.org] On Behalf Of Leighton Barker Sent: Wednesday, November 14, 2007 01:30 PM To: sqr-users@sqrug.org Subject: [sqr-users] Union error I have a problem...I am running Hyperion SQR version 8.3 and using=20 union..see e.g. below. I don't want the column with the zero in it from the= =20 2nd select in the union...that should be ok to put a zero in it, I=20 think...it works in SQL...anyway, it is not working running SQR. I am=20 getting an error...SQR 6806 String2 EM:string to Decimal object conversion= =20 error...please advise. Thanks much. begin select llada bbada rrada from ppp where wwwww union select llada, bbada, 0 from ppp where wwwww end-select _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ______________ The information contained in this message is proprietary and/or confidentia= l. If you are not the intended recipient, please: (i) delete the message an= d all copies; (ii) do not disclose, distribute or use the message in any ma= nner; and (iii) notify the sender immediately. In addition, please be aware= that any message addressed to our domain is subject to archiving and revie= w by persons other than the intended recipient. Thank you. _____________ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 14:16:55 2007 Date: Wed, 14 Nov 2007 14:19:01 -0500 From: Leighton Barker Subject: RE: [sqr-users] Union error Roger, Thanks...yes, I am aware...rrada column is a number column...however the 2nd query of the union I don't want to show the contents of that column just the 1st query of the union..so that is why I put a zero in it since the corresponding column is a numbered column...it works when I do a straight SQL.... At 12:50 PM 11/14/2007 -0600, you wrote: >When using union the data types for each select must match column for >column. If the column in the first select is char and the matching column >in the second select is number (0) you get an error. > > >Roger L. Harris >Programmer Analyst Sr >Product Development >Certegy Check Services >Fidelity National Information Services, Inc >11601 N. Roosevelt Blvd >St Petersburg, FL 33716 > >(727) 227-5850 direct >(800) 215-6280 x75850 toll free >(727) 570-4917 Fax > > >-----Original Message----- >From: sqr-users-bounces+roger.harris=fnis.com@sqrug.org >[mailto:sqr-users-bounces+roger.harris=fnis.com@sqrug.org] On Behalf Of >Leighton Barker >Sent: Wednesday, November 14, 2007 01:30 PM >To: sqr-users@sqrug.org >Subject: [sqr-users] Union error > >I have a problem...I am running Hyperion SQR version 8.3 and using >union..see e.g. below. I don't want the column with the zero in it from the >2nd select in the union...that should be ok to put a zero in it, I >think...it works in SQL...anyway, it is not working running SQR. I am >getting an error...SQR 6806 String2 EM:string to Decimal object conversion >error...please advise. > >Thanks much. > >begin select >llada >bbada >rrada > >from ppp > >where wwwww >union select >llada, >bbada, >0 > >from ppp > >where wwwww >end-select > > > > > > > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users > >______________ > >The information contained in this message is proprietary and/or >confidential. If you are not the intended recipient, please: (i) delete >the message and all copies; (ii) do not disclose, distribute or use the >message in any manner; and (iii) notify the sender immediately. In >addition, please be aware that any message addressed to our domain is >subject to archiving and review by persons other than the intended >recipient. Thank you. > >_____________ > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users Leighton Barker New York University ECOMS 10 Astor Pl - Rm 424B tel # 212-998-1118 fax # 212-995-3870 leighton.barker@nyu.edu _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 15:49:50 2007 From: "McElroy, Stan" Date: Wed, 14 Nov 2007 12:43:56 -0800 Subject: [sqr-users] Cannot display Bar Graph from SQRW I have an SQR program that produces a PDF report with two bar graphs which runs fine in Unix. However, when running the program in SQRW, I cannot get the graphs to display on the report. The report only displays the non-graphical data. Does anyone have any idea how to get a graph to display in a PDF report when running on SQRW? Thanks... =20 Stan McElroy McKesson Corporate IT Alpharetta, GA Office Phone: (404) 338-4246 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 15:53:33 2007 Date: Wed, 14 Nov 2007 15:54:06 -0500 From: Leighton Barker Subject: Re: [sqr-users] Union error Don, I used your method of converting it "to_char" and it worked. In the first query of the union I put: begin select llada bbada to_char(rrada) &payment ! rrada is a number field and so I changed it to a character field for it to work from ppp where wwwww union select llada, bbada, '0' from ppp where wwwww end-select Thanks much Leighton At 01:48 PM 11/14/2007 -0500, you wrote: > >From the Archives... > >Happens "when selecting a number column that isn't scaled (defined as >number, as opposed to number(10)), for example)" > >Pre 10g: >alter system set event='10499 trace name context forever,level 1' >COMMENT='return 0 for the scale if NUMBER created without specifying the >scale' SCOPE=SPFILE >or >select as character (to_char(rrada) and '0') > >On or Post 10g: >select as character (to_char(rrada) and '0') > >HTH, >Don > > >On 11/14/07, Leighton Barker wrote: > > > > I have a problem...I am running Hyperion SQR version 8.3 and using > > union..see e.g. below. I don't want the column with the zero in it from > > the > > 2nd select in the union...that should be ok to put a zero in it, I > > think...it works in SQL...anyway, it is not working running SQR. I am > > getting an error...SQR 6806 String2 EM:string to Decimal object conversion > > error...please advise. > > > > Thanks much. > > > > begin select > > llada > > bbada > > rrada > > > > from ppp > > > > where wwwww > > union select > > llada, > > bbada, > > 0 > > > > from ppp > > > > where wwwww > > end-select > > > > > > > > > > > > > > > > _______________________________________________ > > sqr-users mailing list > > sqr-users@sqrug.org > > http://www.sqrug.org/mailman/listinfo/sqr-users > > > > > >-- >----------------------------------------------------------------------- >Donald Mellen | Ray Ontko & Co. - Richmond, IN - http://www.ontko.com/ >donm@ontko.com | "In the beginning, there was nothing, which exploded" >(Terry Pratchett) > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users Leighton Barker New York University ECOMS 10 Astor Pl - Rm 424B tel # 212-998-1118 fax # 212-995-3870 leighton.barker@nyu.edu _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Nov 14 18:12:12 2007 From: "Steve Cavill" Subject: RE: [sqr-users] Union error Date: Thu, 15 Nov 2007 10:08:06 +1100 Make sure the columns are the same type (i.e. rrada must be a number) Or use NULL instead of zero. Steve. -----Original Message----- From: sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org [mailto:sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org] On Behalf Of Leighton Barker Sent: Thursday, 15 November 2007 5:30 AM To: sqr-users@sqrug.org Subject: [sqr-users] Union error I have a problem...I am running Hyperion SQR version 8.3 and using union..see e.g. below. I don't want the column with the zero in it from the 2nd select in the union...that should be ok to put a zero in it, I think...it works in SQL...anyway, it is not working running SQR. I am getting an error...SQR 6806 String2 EM:string to Decimal object conversion error...please advise. Thanks much. begin select llada bbada rrada from ppp where wwwww union select llada, bbada, 0 from ppp where wwwww end-select _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 15 05:13:26 2007 From: "Steve Cavill" Subject: RE: [sqr-users] Difference between sqr versions. Date: Thu, 15 Nov 2007 21:09:11 +1100 This is a multi-part message in MIME format... ------=_NextPart_000_0042_01C827CB.C555FB90 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I've attached an old doc I had on the changes from 3 to 4. You will also need the changes from 4 to 6 to 7 to 8. Actually there may not have been a V7. Tech support might be able to help you with "what's new" docs for the older versions. The 9.3 changes are available from the software download area at Oracle. Steve. -----Original Message----- From: sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org [mailto:sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org] On Behalf Of Jones.Steven@ups-scs.com Sent: Thursday, 15 November 2007 12:41 AM To: sqr-users@sqrug.org Subject: RE: [sqr-users] Difference between sqr versions. Unless you have a very simple application which can tolerate extensive downtime, I recommend you hire a consultant. That is a HUGE upgrade. -Steve Jones -----Original Message----- From: sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=ups-scs.com@sqrug.org] On Behalf Of zanoop razack Sent: Tuesday, November 13, 2007 9:20 PM To: sqr-users@sqrug.org Subject: [sqr-users] Difference between sqr versions. Hi,We are planning to upgrae from Hyperion Sqr version 3.0 to hyperion version 9.3.I would like to know is there any documents or site which shows the ifferneces between these two vwrsions.Also it would be great If any one let me know the basic diferneces between these two versions.We are also upgrading the database from Sybase to SQL server.RegardsZanoop ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------=_NextPart_000_0042_01C827CB.C555FB90 Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Description: AUTOMATIC WARNING Here was a non admissible message part of 'application/msword' MIME type. It has been automatically discarded before sending the message to the list. ------=_NextPart_000_0042_01C827CB.C555FB90 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users ------=_NextPart_000_0042_01C827CB.C555FB90-- From sqr-users-bounces@sqrug.org Thu Nov 15 10:44:42 2007 Date: Thu, 15 Nov 2007 10:41:37 -0500 From: Nathan Stratton Treadway Subject: [sqr-users] Re: Difference between sqr versions. On Thu, Nov 15, 2007 at 09:09:11PM +1100, Steve Cavill wrote: > I've attached an old doc I had on the changes from 3 to 4. You will The sqr-users list does not allow the posting of non-text attachments, so this document did not come through. However, I'm guessing that Steve might have been trying to post the document that he posted back in Feb 2004, and which I put onto the SQRUG website at that time; see http://www.sqrug.org/sqr-users/sqrusers_04q1/msg00255.html . Nathan ---------------------------------------------------------------------------- Nathan Stratton Treadway - nathanst@ontko.com - Mid-Atlantic region Ray Ontko & Co. - Software consulting services - http://www.ontko.com/ GPG Key: http://www.ontko.com/~nathanst/gpg_key.txt ID: 1023D/ECFB6239 Key fingerprint = 6AD8 485E 20B9 5C71 231C 0C32 15F3 ADCD ECFB 6239 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 15 17:43:13 2007 From: "Steve Cavill" Subject: RE: [sqr-users] Re: Difference between sqr versions. Date: Fri, 16 Nov 2007 09:39:49 +1100 Thanks Nathan, I don't even have a copy of that myself anymore! Here's another doc that outlines enhancements (rather than upward compatibility issues) Steve. SQR Version 4.0 This document outlines the new features of the upcoming SQR 4.0. HTML Output Version 4 allows you to easily format information from databases on Internet and Intranet Web sites and to view report output using an HTML browser. When viewing, the user can easily navigate through the pages of the report using hyperlinks. A new "printer type" generates the output file as a properly formatted HTML document. This provides instant HTML capability for existing SQR reports. In addition, SQR provides markup procedures that let you easily produce impressive graphical output using the latest HTML capabilities. Improved User Documentation The new SQR User's Guide is a valuable resource for understanding the SQR language and using it to write reporting applications. It is complemented with a newly restructured SQR Language Reference. Database-Independent Date Support Version 4 allows you to write programs that manipulate dates and time fields and that can be used with different database systems without modifications. Date support includes a date datatype, date arithmetic and conversions, and date editing. SQR Version 4 will fetch dates from the database with a 4-digit year and time of day. The date datatype will always store a 4-digit year and the time of day. This will allow you to avoid problems with dates around the year 2000. Decimal and Integer Datatypes Version 4 provides high precision decimal arithmetic. By using the decimal datatype, you can handle floating-point numbers with up to 38 digits of precision. SQR will maintain this precision when performing arithmetic calculations. You can choose between Version 3's floating point numbers and the new decimal datatype. In addition, Version 4 also provides support for integer numbers. International Support International Support is provided through the concept of locales. A locale is a set of local preferences for language, currency, dates, and numbers. For example, one locale may use English, Australian dollar currency, dates in "dd/mm/yy" format, numbers with periods separating the thousands, and a comma for the decimal place. You can write SQR programs that automatically adapt to local preferences and that handle a wide variety of number, currency, and date formats in different languages. Improved Parameter Passing Version 4 allows you to pass a variable number of parameters to an SQR program. The program can detect when no more parameters are available. This is useful for implementing parameter lists and optional parameters for programs running in batch. The SQR.INI File SQR.INI holds the default settings and locale definitions. It allows another degree of flexibility in addition to program declarations and command line options. It eliminates the dependency on OS-specific environment variables. You can also specify processing limits in the SQR.INI file instead of using the -M command line flag. SQR.INI is a portable file and is part of the product distribution on all platforms. Metric Units and Standard Paper in DECLARE-LAYOUT The DECLARE-LAYOUT command supports various units of measure including centimeters and millimeters. You can also specify the paper-size qualifier as one of the following standard paper and envelope sizes: Letter, Legal, A4, Executive, B5, Com-10, Monarch, DL, and C5. Bug Fixes We have recently formalized SQR releases into maintenance releases and major releases. Version 4 is a major release. As such it provides bug resolution for most outstanding bugs reported before May 1996. SQR Workbench for Windows (formerly SQR ReportMate 3.5) Support for Windows 95 SQR Workbench for Windows 4.0 is a 16-bit release. You can run it under Windows 3.1, Windows 95, and Windows NT. An SQR Professional Workbench that is specifically designed for 32-bit systems is planned for later this year with significant new functionality such as a debugger, the ability to move between the code editor and the layout, a new and improved query builder, wizards, ActiveX, and more. Metric Units and Standard Paper SQR Workbench for Windows now displays the Layout rulers and measurements in various dialogs in either metric units or English units. The Report Properties dialog box includes predefined settings for standard paper and envelope sizes. Date, Number, and Currency Formats As part of the improved National Language Support in Version 4, Workbench for Windows provides a rich set of date, number, and currency formats. You can also choose the default SQR format to create programs that automatically adapt to local preferences. Hyperlinks from Error Messages If there is an error in your SQR program, SQR Workbench for Windows will generate an error file that allows you to link to the error in your program. To see where the error appears in your SQR program, double-click on the error message. SQR Workbench for Windows will display your SQR program with the location of the error highlighted. Generate Simpler SQR Code In version 3.5 of ReportMate, the "generated" SQR program used a WRAP procedure for word wrapping. In SQR 4.0 Workbench for Windows the WRAP procedure is no longer used. Word wrap is now handled directly by the SQR PRINT WRAP command. This simplifies the generated code and improves its readability. -----Original Message----- From: sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org [mailto:sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org] On Behalf Of Nathan Stratton Treadway Sent: Friday, 16 November 2007 2:42 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: [sqr-users] Re: Difference between sqr versions. On Thu, Nov 15, 2007 at 09:09:11PM +1100, Steve Cavill wrote: > I've attached an old doc I had on the changes from 3 to 4. You will The sqr-users list does not allow the posting of non-text attachments, so this document did not come through. However, I'm guessing that Steve might have been trying to post the document that he posted back in Feb 2004, and which I put onto the SQRUG website at that time; see http://www.sqrug.org/sqr-users/sqrusers_04q1/msg00255.html . Nathan ---------------------------------------------------------------------------- Nathan Stratton Treadway - nathanst@ontko.com - Mid-Atlantic region Ray Ontko & Co. - Software consulting services - http://www.ontko.com/ GPG Key: http://www.ontko.com/~nathanst/gpg_key.txt ID: 1023D/ECFB6239 Key fingerprint = 6AD8 485E 20B9 5C71 231C 0C32 15F3 ADCD ECFB 6239 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 16 10:03:42 2007 Subject: RE: [sqr-users] Re: Difference between sqr versions. Date: Fri, 16 Nov 2007 09:59:45 -0500 From: "Rowell, Charles" Hyperion SQR is up to Version 9.5 at this point. What is SQR Version 4.0?=20 -----Original Message----- From: sqr-users-bounces+charles.rowell=3Dfmr.com@sqrug.org [mailto:sqr-users-bounces+charles.rowell=3Dfmr.com@sqrug.org] On Behalf Of Steve Cavill Sent: Thursday, November 15, 2007 5:40 PM To: 'This list is for discussion about the SQR database reportinglanguagefrom Hyperion Solutions.' Subject: RE: [sqr-users] Re: Difference between sqr versions. Thanks Nathan,=20 I don't even have a copy of that myself anymore! Here's another doc that outlines enhancements (rather than upward compatibility issues) Steve. SQR Version 4.0 This document outlines the new features of the upcoming SQR 4.0. HTML Output Version 4 allows you to easily format information from databases on Internet and Intranet Web sites and to view report output using an HTML browser. When viewing, the user can easily navigate through the pages of the report using hyperlinks. A new "printer type" generates the output file as a properly formatted HTML document. This provides instant HTML capability for existing SQR reports. In addition, SQR provides markup procedures that let you easily produce impressive graphical output using the latest HTML capabilities. Improved User Documentation The new SQR User's Guide is a valuable resource for understanding the SQR language and using it to write reporting applications. It is complemented with a newly restructured SQR Language Reference. Database-Independent Date Support Version 4 allows you to write programs that manipulate dates and time fields and that can be used with different database systems without modifications. Date support includes a date datatype, date arithmetic and conversions, and date editing. SQR Version 4 will fetch dates from the database with a 4-digit year and time of day. The date datatype will always store a 4-digit year and the time of day. This will allow you to avoid problems with dates around the year 2000. Decimal and Integer Datatypes Version 4 provides high precision decimal arithmetic. By using the decimal datatype, you can handle floating-point numbers with up to 38 digits of precision. SQR will maintain this precision when performing arithmetic calculations.=20 You can choose between Version 3's floating point numbers and the new decimal datatype. In addition, Version 4 also provides support for integer numbers. International Support International Support is provided through the concept of locales. A locale is a set of local preferences for language, currency, dates, and numbers. For example, one locale may use English, Australian dollar currency, dates in "dd/mm/yy" format, numbers with periods separating the thousands, and a comma for the decimal place.=20 You can write SQR programs that automatically adapt to local preferences and that handle a wide variety of number, currency, and date formats in different languages. Improved Parameter Passing Version 4 allows you to pass a variable number of parameters to an SQR program. The program can detect when no more parameters are available. This is useful for implementing parameter lists and optional parameters for programs running in batch. The SQR.INI File SQR.INI holds the default settings and locale definitions. It allows another degree of flexibility in addition to program declarations and command line options. It eliminates the dependency on OS-specific environment variables. You can also specify processing limits in the SQR.INI file instead of using the -M command line flag. SQR.INI is a portable file and is part of the product distribution on all platforms. Metric Units and Standard Paper in DECLARE-LAYOUT The DECLARE-LAYOUT command supports various units of measure including centimeters and millimeters. You can also specify the paper-size qualifier as one of the following standard paper and envelope sizes: Letter, Legal, A4, Executive, B5, Com-10, Monarch, DL, and C5. Bug Fixes We have recently formalized SQR releases into maintenance releases and major releases. Version 4 is a major release. As such it provides bug resolution for most outstanding bugs reported before May 1996. SQR Workbench for Windows (formerly SQR ReportMate 3.5) Support for Windows 95 SQR Workbench for Windows 4.0 is a 16-bit release. You can run it under Windows 3.1, Windows 95, and Windows NT. An SQR Professional Workbench that is specifically designed for 32-bit systems is planned for later this year with significant new functionality such as a debugger, the ability to move between the code editor and the layout, a new and improved query builder, wizards, ActiveX, and more. Metric Units and Standard Paper SQR Workbench for Windows now displays the Layout rulers and measurements in various dialogs in either metric units or English units. The Report Properties dialog box includes predefined settings for standard paper and envelope sizes. Date, Number, and Currency Formats As part of the improved National Language Support in Version 4, Workbench for Windows provides a rich set of date, number, and currency formats. You can also choose the default SQR format to create programs that automatically adapt to local preferences. Hyperlinks from Error Messages If there is an error in your SQR program, SQR Workbench for Windows will generate an error file that allows you to link to the error in your program.=20=20 To see where the error appears in your SQR program, double-click on the error message. SQR Workbench for Windows will display your SQR program with the location of the error highlighted. Generate Simpler SQR Code In version 3.5 of ReportMate, the "generated" SQR program used a WRAP procedure for word wrapping. In SQR 4.0 Workbench for Windows the WRAP procedure is no longer used. Word wrap is now handled directly by the SQR PRINT WRAP command. This simplifies the generated code and improves its readability. =20 -----Original Message----- From: sqr-users-bounces+steve.cavill=3Dinfoclarity.com.au@sqrug.org [mailto:sqr-users-bounces+steve.cavill=3Dinfoclarity.com.au@sqrug.org] On Behalf Of Nathan Stratton Treadway Sent: Friday, 16 November 2007 2:42 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: [sqr-users] Re: Difference between sqr versions. On Thu, Nov 15, 2007 at 09:09:11PM +1100, Steve Cavill wrote: > I've attached an old doc I had on the changes from 3 to 4. You will The sqr-users list does not allow the posting of non-text attachments, so this document did not come through. However, I'm guessing that Steve might have been trying to post the document that he posted back in Feb 2004, and which I put onto the SQRUG website at that time; see=20 http://www.sqrug.org/sqr-users/sqrusers_04q1/msg00255.html =2E Nathan ------------------------------------------------------------------------ ---- Nathan Stratton Treadway - nathanst@ontko.com - Mid-Atlantic region Ray Ontko & Co. - Software consulting services - http://www.ontko.com/ GPG Key: http://www.ontko.com/~nathanst/gpg_key.txt ID: 1023D/ECFB6239 Key fingerprint =3D 6AD8 485E 20B9 5C71 231C 0C32 15F3 ADCD ECFB 6239 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 16 10:47:22 2007 From: the dragon Subject: RE: [sqr-users] Re: Difference between sqr versions. Date: Fri, 16 Nov 2007 09:44:24 -0600 it was the next version after three... There were some major differences in= troduced that needed to be adjusted when you went up from version 3 to vers= ion 4 which might need to be considered when traversing from v3 to a higher= version. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > Hyperion SQR is up to Version 9.5= at this point.> What is SQR Version 4.0? > > -----Original Message-----> >= Thanks Nathan, > I don't even have a copy of that myself anymore!> Here's = another doc that outlines enhancements (rather than upward> compatibility i= ssues)> Steve.> > > SQR Version 4.0> > This document outlines the new featu= res of the upcoming SQR 4.0.> > HTML Output> Version 4 allows you to easily= format information from databases on> Internet and Intranet Web sites and = to view report output using> an HTML browser. When viewing, the user can ea= sily navigate through the> pages of the report using hyperlinks.> A new "pr= inter type" generates the output file as a properly formatted> HTML documen= t. This provides instant HTML capability for> existing SQR reports. In addi= tion, SQR provides markup procedures that> let you easily produce impressiv= e graphical output using the> latest HTML capabilities.> > Improved User Do= cumentation> The new SQR User's Guide is a valuable resource for understand= ing the> SQR language and using it to write reporting applications. It> is = complemented with a newly restructured SQR Language Reference.> > Database-= Independent Date Support> Version 4 allows you to write programs that manip= ulate dates and time> fields and that can be used with different database s= ystems> without modifications. Date support includes a date datatype, date>= arithmetic and conversions, and date editing.> SQR Version 4 will fetch da= tes from the database with a 4-digit year and> time of day. The date dataty= pe will always store a 4-digit> year and the time of day. This will allow y= ou to avoid problems with> dates around the year 2000.> > Decimal and Integ= er Datatypes> Version 4 provides high precision decimal arithmetic. By usin= g the> decimal datatype, you can handle floating-point numbers with up> to = 38 digits of precision. SQR will maintain this precision when> performing a= rithmetic calculations. > You can choose between Version 3's floating point= numbers and the new> decimal datatype. In addition, Version 4 also provide= s support> for integer numbers.> > International Support> International Sup= port is provided through the concept of locales. A> locale is a set of loca= l preferences for language, currency,> dates, and numbers. For example, one= locale may use English, Australian> dollar currency, dates in "dd/mm/yy" f= ormat, numbers with> periods separating the thousands, and a comma for the = decimal place. > You can write SQR programs that automatically adapt to loc= al preferences> and that handle a wide variety of number, currency, and> da= te formats in different languages.> > Improved Parameter Passing> Version 4= allows you to pass a variable number of parameters to an SQR> program. The= program can detect when no more parameters are> available. This is useful = for implementing parameter lists and optional> parameters for programs runn= ing in batch.> > The SQR.INI File> SQR.INI holds the default settings and l= ocale definitions. It allows> another degree of flexibility in addition to = program> declarations and command line options. It eliminates the dependenc= y on> OS-specific environment variables. You can also specify> processing l= imits in the SQR.INI file instead of using the -M command> line flag. SQR.I= NI is a portable file and is part of the> product distribution on all platf= orms.> > Metric Units and Standard Paper in DECLARE-LAYOUT> The DECLARE-LAY= OUT command supports various units of measure including> centimeters and mi= llimeters. You can also specify the> paper-size qualifier as one of the fol= lowing standard paper and envelope> sizes: Letter, Legal, A4, Executive, B5= , Com-10, Monarch,> DL, and C5.> > Bug Fixes> We have recently formalized S= QR releases into maintenance releases and> major releases. Version 4 is a m= ajor release. As such it> provides bug resolution for most outstanding bugs= reported before May> 1996.> > > SQR Workbench for Windows (formerly SQR Re= portMate 3.5)> Support for Windows 95> SQR Workbench for Windows 4.0 is a 1= 6-bit release. You can run it under> Windows 3.1, Windows 95, and Windows N= T. An SQR> Professional Workbench that is specifically designed for 32-bit = systems> is planned for later this year with significant new> functionality= such as a debugger, the ability to move between the code> editor and the l= ayout, a new and improved query builder,> wizards, ActiveX, and more.> > Me= tric Units and Standard Paper> SQR Workbench for Windows now displays the L= ayout rulers and> measurements in various dialogs in either metric units or= English> units. The Report Properties dialog box includes predefined setti= ngs for> standard paper and envelope sizes.> > Date, Number, and Currency F= ormats> As part of the improved National Language Support in Version 4,> Wo= rkbench for Windows provides a rich set of date, number, and> currency form= ats. You can also choose the default SQR format to create> programs that au= tomatically adapt to local preferences.> > Hyperlinks from Error Messages> = If there is an error in your SQR program, SQR Workbench for Windows will> g= enerate an error file that allows you to link to the error> in your program= . > To see where the error appears in your SQR program, double-click on the= > error message. SQR Workbench for Windows will display your> SQR program w= ith the location of the error highlighted.> > Generate Simpler SQR Code> In= version 3.5 of ReportMate, the "generated" SQR program used a WRAP> proced= ure for word wrapping. In SQR 4.0 Workbench for Windows> the WRAP procedure= is no longer used. Word wrap is now handled directly> by the SQR PRINT WRA= P command. This simplifies the generated> code and improves its readability= .> > > > > -----Original Message-----> > On Thu, Nov 15, 2007 at 09:09:11PM= +1100, Steve Cavill wrote:> > I've attached an old doc I had on the change= s from 3 to 4. You will> > The sqr-users list does not allow the posting of= non-text attachments,> so this document did not come through. However, I'm= guessing> that Steve might have been trying to post the document that he p= osted> back in Feb 2004, and which I put onto the SQRUG website at> that ti= me; see > http://www.sqrug.org/sqr-users/sqrusers_04q1/msg00255.html> .> > = > Nathan>=20 _________________________________________________________________ Windows Live Hotmail and Microsoft Office Outlook =96 together at last. =A0= Get it now. http://office.microsoft.com/en-us/outlook/HA102225181033.aspx?pid=3DCL10062= 6971033 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 29 11:57:42 2007 Date: 29 Nov 2007 16:52:44 -0000 From: "zanoop razack" Subject: [sqr-users] Query regarding box in graphics Hi,I have a query regarding the box function in graphics.Is it possible to increment the size of the box using graphics dynamically based on the number of people fetched from the database.RegradsZap ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 29 12:11:41 2007 From: "McElroy, Stan" Subject: RE: [sqr-users] Query regarding box in graphics Date: Thu, 29 Nov 2007 09:07:34 -0800 Sure, when using your Box and other Graphics commands, any field that is a numeric field designating a length, height, width, etc. of a graphic on your report can be a numeric variable, which you can set dynamically. Good luck! Stan McElroy Alpharetta, GA -----Original Message----- From: sqr-users-bounces+stan.mcelroy=3Dmckesson.com@sqrug.org [mailto:sqr-users-bounces+stan.mcelroy=3Dmckesson.com@sqrug.org] On Behalf Of zanoop razack Sent: Thursday, November 29, 2007 11:53 AM To: sqr-users Subject: [sqr-users] Query regarding box in graphics Hi,I have a query regarding the box function in graphics.Is it possible to increment the size of the box using graphics dynamically based on the number of people fetched from the database.RegradsZap =20=20=20=20=20 ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 29 15:18:52 2007 Date: 29 Nov 2007 20:13:31 -0000 Subject: Re :RE: [sqr-users] Query regarding box in graphics From: "zanoop razack" Hi Stan,Does this means that I can give a numeric variable in the arguments for the graphics box command.I tried this and it is giving me error.On Thu, 29 Nov 2007 09:07:34 -0800 "This list is for discussion about the SQR database reporting language from Hyperion Solutions." wroteSure, when using your Box and other Graphics commands, any field that isa numeric field designating a length, height, width, etc. of a graphicon your report can be a numeric variable, which you can set dynamically.Good luck!Stan McElroyAlpharetta, GA-----Original Message-----From: sqr-users-bounces+stan.mcelroy=mckesson.com@sqrug.org[mailto:sqr-users-bounces+stan.mcelroy=mckesson.com@sqrug.org] On BehalfOf zanoop razackSent: Thursday, November 29, 2007 11:53 AMTo: sqr-usersSubject: [sqr-users] Query regarding box in graphicsHi,I have a query regarding the box function in graphics.Is it possibleto increment the size of the box using graphics dynamically based on thenumber of people fetched from the database.RegradsZap------------CheersZanoop Razack A A_______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users_______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 29 15:31:10 2007 Subject: Re :RE: [sqr-users] Query regarding box in graphics From: don.barclay@srs.gov Date: Thu, 29 Nov 2007 15:28:48 -0500 Yes. This works: let #i = 2 graphic (+1,10,80) box #i 0 100 Paste your statement and your error message. Don sqr-users-bounces+don.barclay=srs.gov@sqrug.org wrote on 11/29/2007 03:13:31 PM: > Hi Stan,Does this means that I can give a numeric variable in the > arguments for the graphics box command.I tried this and it is giving > me error. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Nov 29 22:03:01 2007 Date: 30 Nov 2007 02:58:09 -0000 From: "zanoop razack" Subject: [sqr-users] single continous report for multiple employees. Hi,I have two page pdf report which needs to be generated for multiple employees using single sqr.For example If there are two employees the first employees details should come in the first two pages and the second employees details shopuld come in the third and fouth pages and so on...The alternate pages are similar except for the data.I am able to generate the report for a single employee but I am unable to proceed on how to put a break and produce the details of the second employee from page 3 onwards.Any help is duly appreciatedCheersZap ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 30 09:00:24 2007 Subject: RE: [sqr-users] single continous report for multiple employees. Date: Fri, 30 Nov 2007 05:50:07 -0800 From: "Lynds,Rick" Assuming that you need separate output files, you should look into using the "new-report" feature and controlling the output file name.=20 -----Original Message----- From: sqr-users-bounces+rlynds=3Dmwdh2o.com@sqrug.org [mailto:sqr-users-bounces+rlynds=3Dmwdh2o.com@sqrug.org] On Behalf Of zanoop razack Sent: Thursday, November 29, 2007 6:58 PM To: sqr-users Subject: [sqr-users] single continous report for multiple employees. Hi,I have two page pdf report which needs to be generated for multiple employees using single sqr.For example If there are two employees the first employees details should come in the first two pages and the second employees details shopuld come in the third and fouth pages and so on...The alternate pages are similar except for the data.I am able to generate the report for a single employee but I am unable to proceed on how to put a break and produce the details of the second employee from page 3 onwards.Any help is duly appreciatedCheersZap =20=20=20=20=20 ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 30 10:49:25 2007 Date: 30 Nov 2007 15:44:46 -0000 Subject: Re :RE: [sqr-users] single continous report for multiple employees. From: "zanoop razack" Hi,I am trying to print a single continous report with the same format every two pages but with differnet data for different employees.On Fri, 30 Nov 2007 05:50:07 -0800 "This list is for discussion about the SQR database reporting language from Hyperion Solutions." wroteAssuming that you need separate output files, you should look into usingthe "new-report" feature and controlling the output file name. -----Original Message-----From: sqr-users-bounces+rlynds=mwdh2o.com@sqrug.org[mailto:sqr-users-bounces+rlynds=mwdh2o.com@sqrug.org] On Behalf Ofzanoop razackSent: Thursday, November 29, 2007 6:58 PMTo: sqr-usersSubject: [sqr-users] single continous report for multiple employees.Hi,I have two page pdf report which needs to be generated for multipleemployees using single sqr.For example If there are two employees thefirst employees details should come in the first two pages and thesecond employees details shopuld come in the third and fouth pages andso on...The alternate pages are similar except for the data.I am able togenerate the report for a single employee but I am unable to proceed onhow to put a break and produce the details of the second employee frompage 3 onwards.Any help is duly appreciatedCheersZap------------CheersZanoop Razack A A_______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users_______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Nov 30 10:56:33 2007 Subject: RE: Re :RE: [sqr-users] single continous report for multiple employees. Date: Fri, 30 Nov 2007 07:53:06 -0800 From: "Lynds,Rick" Ok - I've done that. All you need to do is to use the "new-page" statement and keep track of which page you are printing. I've done that with our benefits confirmation statements and it works pretty well. Start printing first employee =2E =2E New-page =2E =2E New-page Start printing second employee =2E =2E New-page Etc. HTH Rick -----Original Message----- From: sqr-users-bounces+rlynds=3Dmwdh2o.com@sqrug.org [mailto:sqr-users-bounces+rlynds=3Dmwdh2o.com@sqrug.org] On Behalf Of zanoop razack Sent: Friday, November 30, 2007 7:45 AM To: sqr-users@sqrug.org Subject: Re :RE: [sqr-users] single continous report for multiple employees. Hi,I am trying to print a single continous report with the same format every two pages but with differnet data for different employees. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sat Dec 01 13:03:44 2007 Date: Sat, 1 Dec 2007 12:57:58 -0500 From: Nathan Stratton Treadway Subject: [sqr-users] Monthly sqr-users Hints Posting sqr-users Mailing List Hints and Guidelines Nathan Stratton Treadway, Ray Ontko & Co. (nathanst@ontko.com) $Revision: 1.23 $ $Date: 2006/07/27 16:28:24 $ This document gathers in one location information about the sqr-users mail list. It includes instructions for changing your subscription settings (including unsubscribing), as well are guidelines for using the list. ______________________________________________________________________ Table of Contents 1. Changes Since Previous Version 2. Introduction 2.1 sqr-users Mailing List 2.2 sqr-users Hints and Guidelines Document 2.3 Related Mailing Lists 3. Interacting with the list server 3.1 Subscribing to the list 3.2 Unsubscribing from the list 3.3 When your email address changes 3.4 Digests 3.5 Obtaining your password 3.6 Problems 4. Posting to the sqr-users List 4.1 General Guidelines 4.2 Posting a Message 4.3 Replying to a Message 5. Job Announcements ______________________________________________________________________ 1. Changes Since Previous Version Changes since the version dated 2005/08/19: o Added note about spam filtering and sender verification systems blocking subscription confirmation messages. 2. Introduction 2.1. sqr-users Mailing List The sqr-users mailing list was created to enable discussion related to the SQR database language from Hyperion (and to other products in the SQR product suite). Note: SQR used to be published by SQRIBE Technologies, which was merged into Brio Technology on August 3, 1999. Brio Technology changed its name to Brio Software in October 2001. On October 16, 2003, Hyperion acquired Brio Software. SQR and related applications have also been called "Brio.Report" and "Brio Reports". The mailing list is provided as a service of Ray Ontko & Co. A searchable archive of past postings to the mailing list is available from the SQR Users Group web site . 2.2. sqr-users Hints and Guidelines Document This document gives various hints and guidelines about the sqr-users mailing list. It will be posted approximately monthly to the mailing list so that new users can see it (and existing users can find it easily). An HTML version of the document is always available at http://www.sqrug.org/sqr-users/sqr-users-hints.html. If you have comments or suggestions about this document, please contact me directly at the address listed in the title section. This document is Copyright (C) 1999-2004 by Ray Ontko & Co. It may be freely copied and distributed provided it is not modified in any way and it retains the original copyright notice. 2.3. Related Mailing Lists Here are some mailing lists that cover topics relating to SQR in some way. sqr-jobs : SQR Jobs This list may be used for posting SQR-related resumes, recruitments, job announcements, project announcments, help- wanted, work-wanted ads, etc. To join, follow the link above, or send any message to "sqr-jobs-subscribe@yahoogroups.com". peoplesoft-fans : PeopleSoft Fans Moderated list covering technical and functional aspects of PeopleSoft. To join, follow the link above, or send any message to "peoplesoft-fans-subscribe@yahoogroups.com". psusers : PeopleSoft Users For questions related to any aspect of PeopleSoft (including PeopleSoft-specific SQR issues). This list has merged with the Peoplesoft Fans mailing list and is no longer active, but the message achive can still be found at the link above. HyperionSQR : Hyperion- SQR List for discussion of SQR, SQR Developer (formerly called Brio.Report and Report Builder), and SQR iServer. To join, follow the link above, or send any message to "HyperionSQR- subscribe@yahoogroups.com". rm-users : Report- Mart Users List for discussion of Brio Portal (previously called ReportMart). To join, follow the link above, or send a message containing the word "subscribe" in the body to "rm-users- request@sqrug.org". brioportalusersgroup : Brio Portal Users Group list List for discussion of Brio Portal. To join, follow the link above, or send any message to "brioportalusersgroup- subscribe@yahoogroups.com". brio-l : OpenITx Brio List List for technical and functional discussion of all Brio products (but most messages are currently about Brio Intelligence). To join, follow the link above. briousers : Brio.Enter- prise Users List for discussion of the Brio.Enterprise (now called Intelligence) product. To join, follow the link above, or send any message to "briousers-subscribe@yahoogroups.com". briolist : Brio List List for discussion of Brio Intelligence. To join, follow the link above, or send any message to "briolist- subscribe@yahoogroups.com". 3. Interacting with the list server The sqr-users mailing list is hosted using the Mailman list server package. All of the Mailman functions described below are accessed from the sqr-users List Info page, "http://www.sqrug.org/mailman/listinfo/sqr-users". 3.1. Subscribing to the list To subscribe to the mailing list, enter your e-mail address in the box at the top of the "Subscribing to sqr-users" section on the sqr-users List Info page, then choose a password to assign to your subscription and enter it in both "Password" boxes. This password is used to allow you to securely make changes to your subscription over the web. This password will be e-mailed back to you at varous times, so you should not use the same password as you are using elsewhere. Once you have filled in the password, click the "Subscribe" button. You should soon receive an e-mail message from the list server requesting confirmation of your subscription request. Once you have replied to this message and your subscription has been processed, you will receive a "welcome" message giving you more information on the list server, and as well as a reminder of the subscription password you chose. Many sites are now implementing spam filtering and/or sender verification systems, which can prevent your confirmation message from getting delivered to you. You may need check for a message from "sqr- users-request[-AT-]sqrug.org" caught in the filter, or add that address to your list of authorized senders, in order to complete the confirmation process. 3.2. Unsubscribing from the list To unsubscribe from the list, go to the sqr-users List Info page, enter your e-mail address in the "sqr-users Subscribers" section near the bottom of the page, and click the "Unsubscribe or edit options" button. You will then see the "member options" page; fill in your password at the top of the page and click "Log in". (If you have forgotton your password, see the ``Obtaining your Password'' section, below). This will take you to the "membership configuration" page. In the middle of that page, there will be an "Unsubscribing from sqr- users" section; simply turn on the "Yes, I really want to unsubscribe" checkbox and click the "Unsubscribe" button. You should get a page back saying that the removal was successful (as well as a confirmation email message). The removal will take effect immediately; there is no need to send in a confirmation e-mail message. If you don't know your password, you can choose to unsubscribe using e-mail confirmation. Instead of entering the password on the "member options" page, just click the "Unsubscribe" button found just below the "Log In" button. You will then see a page noting that a confirmation e-mail has been sent; once you follow the confirmation instructions in that e-mail your removal will be complete. 3.3. When your email address changes If your e-mail address changes -- for example, if your company changes names, or if your mail administrator changes the way your name is spelled out or abbreviated -- you will need to update your subscription to match your new address before you can post to the list (see the ``Posting'' section, below). To do this, simply log in to your "membership configuration" page (see the directions for logging in to this page in the ``Unsubscribing'' section, above). At the top of that page you'll see a "Changing your membership information" section. Fill out the text boxes and click the "Change My Address and Name" button. You will be sent a confirmation e-mail, and once you have responded to that e-mail your subscription will be updated and you can begin posting from your new address. 3.4. Digests You can request to get your messages in digest form (one large message containing all of the posts made each day). To do this, log in to your "membership configuration" page (see the directions on doing this in the ``Unsubscribing'' section, above). At the bottom of the page, you will see a section titled "Your sqr-users Subscription Options". Change the "Set Digest Mode" option (the second option in the list) to "On" and click the "Submit My Changes" button at the bottom of the page. You actually have a choice of two different digest formats, "MIME" or "Plain Text". The MIME format sends each individual list message as a separate MIME attachment to the digest; the plain text format consists of one large text message, with all of the individual messages run together. Which format you will want to use depends on your mail- reading software (and personal preference). If you are not sure which format will work best, you can just leave the default setting of "MIME" and see if the next morning's digest is easy to read in your mail reader -- you can change to the other format at any time using that same web page. If you use digests, you should not just "reply" to the digest mailing. Instead, be sure your message's subject header matches the subject in the original posting to which you are replying, and that you don't include a quoted copy of the entire digest in your post. To restore normal distribution, simply follow the above instructions choosing the "Off" setting for the Digest option. 3.5. Obtaining your password You will not be able to change your subscription options without your password. If you have forgotten your password, simply click the "Email My Password to Me" button on the "member options" page and your password will be emailed to you. You will also be e-mailed a copy of your password at the beginning of each month, as part of a "mailing list memberships reminder" message from the Mailman software. 3.6. Problems If the above instructions do not work, please contact the list manager at "sqr-users-manager@sqrug.org". (Do not send a message to the list itself -- no one there can help you with your problem!) Please include a description of what you were trying to do and what exactly happened when you made the attempt. 4. Posting to the sqr-users List In order to post to the mailing list, you must be subscribed to it (see directions above). More specifically, in order for Mailman to recognize that this message was sent by a subscriber, the return address on your message much exactly match the addresss you used to subscribe -- if you have more than one address you will need to be sure that you are sending from the correct one. (See the ``When you email address changes'' section, above, if your e-mail address has changed since you subscribed.) 4.1. General Guidelines For any message you send to the list, please: o make sure your mail software is not requesting a "Return Receipt". (If a "Return Receipt Requested" message is sent to the list, several dozen receipt messages will be sent out to the mailing list as other subscribers' mail systems repond....) o do not send messages in HTML or other special formats. (These are not usable by many subscribers, especially those who receive their messages in digest format.) The list server will delete these special attachments from your message and send you a warning notice. Also, if you are trying to send (for example) SQR source code files, make sure your mail-reader software is assigning proper MIME types to your attachments or they may not be distributed. o keep in mind that over 500 people will receive your message, and that it will appear in the list archives. Try to keep your messages on-topic and relatively short. Consider sending your message directly to particular people if it won't interest many of the list's subscribers. o ignore abusive and inappropriate messages that get sent to the list, rather than getting drawn into a debate. The very nature of these messages will cause most subscribers to automatically discredit them -- no "response" is necessary. To the contrary, any response will only "add fuel to the fire," prolonging the controversy and further interupting the normal conversation on the list. 4.2. Posting a Message Once you are subscribed, you can post to the list by sending a message to "sqr-users@sqrug.org". Be sure your subject heading describes your specific problem or question (i.e. don't just use "SQR Question"). In the body of your message, please include the following information: o SQR product name and version number (see notes below) o Operating system name and version number o Database name and version number o Application name (i.e. PeopleSoft) and a version number, if any Also, include a short code sample whenever possible. It's much easier for other people to understand what you are trying to do when they can see the actual code. (At the same time, be careful not to post confidential or proprietary code, since the posting will be placed in a public web archive.) Note that your question should relate to SQR or other Brio Report product in some way. Don't ask questions about PeopleSoft, for example, unless you are having SQR-related issues. (For PeopleSoft- specific questions, see other lists mentioned in the ``Related Mailing Lists'' section.) In 2001, PeopleSoft purchased from Brio the rights to the source code for SQR and began releasing its own line of SQR. PeopleSoft's SQR version numbering is different from Brio/Hyperion's, so it's very important to mention whether you are using Hyperion's "SQR" or "SQR for PeopleSoft". (This info is included automatically if you include the full SQR version-id string as described below.) To get the version-id string for your copy of SQR, you can run the following program: begin-program show $sqr-ver end-program This will produce a line that looks something like this: SQR/3.0.15/Intel/SCO Unix R3.2 V5.0/Oracle 7.2.2.3/Sep 25 1996 Include the full line of output in your message. Note that the oper- ating system and database version numbers listed here are the ones under which this copy of SQR was compiled, so you'll still need to include this information for your own environment. In a command-line environment (Unix, etc.), you can also get this version-id string by saying sqr -id 4.3. Replying to a Message Messages sent out on the list have a Reply-To header pointing to the list. This means that you should be able to simply use your mail reader's "reply" function to send a reply to the list. Generally, all answers to questions sent out on the list should be public replies, so that other subscribers can benefit. In those cases where a private reply is appropriate, be sure to over-ride the default Reply-To address. If your message is not actually a reply to the earlier message, please do not use the "reply" function. Instead, address a new e-mail message to the list as described in the previous section. (This is because the list archives will incorrectly show the new message in the original thread if you use "reply".) You should quote enough lines from the original message that later readers can understand your answer even if they missed the original question. At the same time, you should remove any unnecessary lines from the quote in order to make your message shorter and easier to understand. (Remember that some people read the mailing list in digest form, and the digests become much larger if unnecessary lines are quoted.) 5. Job Announcements Please do not post job announcements on the sqr-users list, but use the sqr-jobs list instead. (See ``Related Mailing Lists'' for more information on this list.) A large number of sqr-users subscribers do not want to receive job announcements (for various reasons) and such posts tend to cause a lot of disruption of the discussion on the list. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 06 05:17:15 2007 Date: Thu, 6 Dec 2007 15:30:04 +0530 From: "Sanjay Sambhe" Subject: [sqr-users] Job process run status as Blocked Hi ALL, I am running a JOB process in process schedular.But soon it becomes as Blocked and I can not rerun it again as it gives same problem. Is there any solution for this? how to unblock? Thanks Sanjay _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 06 06:09:06 2007 Date: Thu, 6 Dec 2007 11:04:40 +0000 (GMT) From: "edwin.hommes@bluewin.ch" Subject: [sqr-users] Job process run status as Blocked (Sanjay Sambhe) >From the Peoplebooks: The running of this process has been blocked. This indicates that this process is waiting for the number of active occurrences of this process to drop below Max Concurrent value, a process recognized as mutually exclusive to complete or a dependent file to be located. >Von: sqr-users-request@sqrug.org >Datum: 06.12.2007 12:01 >An: >Betreff: sqr-users Digest, Vol 46, Issue 3 > >Send sqr-users mailing list submissions to > sqr-users@sqrug.org > >To subscribe or unsubscribe via the World Wide Web, visit > http://www.sqrug.org/mailman/listinfo/sqr-users >or, via email, send a message with subject or body 'help' to > sqr-users-request@sqrug.org > >You can reach the person managing the list at > sqr-users-owner@sqrug.org > >When replying, please edit your Subject line so it is more specific >than "Re: Contents of sqr-users digest..." >Today's Topics: > > 1. Job process run status as Blocked (Sanjay Sambhe) >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Dec 07 09:03:43 2007 Date: Fri, 07 Dec 2007 08:59:50 -0500 From: "Jamie Harris" Subject: Re: (SPAM) [sqr-users] Job process run status as Blocked Sanjay, =20 Check the process definition - there are two things this could be. If "max= instances" is set then only that many can run at one time - you may have a= prior run stuck in some state that's not really true. In that case, go fi= nd the other one and cancel it. =20 There is also a place where you can list other process which will cause you= r process to stay 'blocked' until they are done (this is used so that two p= rocesses that use the same tables won't conflict with each other). Look f= or one of those that's running. =20 =20 ----------------------------------------------------- James Harris Enterprise Application Analyst/Programmer Information Technology Division Frederick Community College=20 ----------------------------------------------------- >>> "Sanjay Sambhe" 12/6/2007 5:00 AM >>> Hi ALL, I am running a JOB process in process schedular.But soon it becomes as Blocked and I can not rerun it again as it gives same problem. Is there any solution for this? how to unblock? Thanks Sanjay _______________________________________________ sqr-users mailing list sqr-users@sqrug.org=20 http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Dec 10 12:38:37 2007 Date: 10 Dec 2007 17:33:24 -0000 From: "zanoop razack" Subject: [sqr-users] Report generation queries. Hi,I have two queries.1)How can I change the name of the report generated within the Sqr.Right now it is generating the report with the sqr name.Also is there  any limitation on the characters we can give as the name of the report.This program creates a single report.2) I have a program which generates a pdf file and a text file.I am planning to modify the pgm to generate both of them as pdf files.How can I go about this.Also I would like to know is it possible to right parallely into these two pdf files.RegardsZap ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Dec 10 16:42:50 2007 Date: Mon, 10 Dec 2007 16:36:43 -0500 From: "Bencke, Gina" Subject: [sqr-users] Print-image using .HPG =20 am having trouble printing a new logo from UNIX. I have written a test program that first prints an existing logo using .HPG format and then a new file, also in HPG format. The existing logo prints correctly but the new logo appears as a gray box. =20 The new file was provided to me in both .JPG and .HPG format. Since the .HPG file I was given did not print correctly, I opened the .JPG file in paint, and saved it as a .BMP file and then ran the BMP_TO_HPG.sqr to create a second .HPG file. I have tried several image-sizes, all to no avail. The JPG file behaves identically to the HPG file. =20 btw - if I use the .BMP file in the Windows environment the new .BMP logo both views and prints correctly using several image-sizes. =20 I am using the following declare printer command: =20 declare printer ! Declare printer characteristics type=3DHPLASERJET left-margin=3D.25 top-margin=3D.25 font=3D3 ! Font number font-style=3Dfixed lines-inch=3D8 ! Lines per inch point-size=3D8 orientation=3Dportrait ! portrait or landscape =20 and for HPG graphic () font 4 8=20=20=20=20=20=20=20=20 print-image (3, 50) type =3D HPGL-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8) =20 for JPG =20 graphic () font 4 8=20=20=20=20=20=20=20 print-image (3, 50) type =3D JPEG-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8)=20 =20 for BMP =20 graphic () font 4 8=20=20=20=20=20=20=20=20 print-image (3, 50) type =3D BMP-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8) =20 The version of SQR is : SQR for PeopleSoft/8.19/Sun/SunOS 5.6/Oracle 8.0.6/Jan 02 2003. =20 I have looked at the headers in both the old (working) .HPG file and the new (failing) .HPG file and nothing seems to indicate that the new file is corrupt. Can anyone give me some idea of things to try? =20 Regards, =20 Gina Bencke | Consultant, Applications Development Kichler Lighting | 7711 E. Pleasant Valley Rd. | Cleveland, OH 44131 Work 216-573-1005 X6805 | Mobile 440-479-9961 | Fax 216-573-1070 Home Office 440-519-0060=20=20 =09 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Dec 10 17:20:57 2007 Date: Mon, 10 Dec 2007 17:24:46 -0500 From: Leighton Barker Subject: Re: [sqr-users] Print-image using .HPG Gina, Try the below for UNIX...hope it works: declare-image mike-sig type = hpgl-file source = 'mike.hpg' !this is the image image-size = (20, 3) end-declare In printing: PRINT-IMAGE mike-sig (+1,38) make sure the image ...mike.hpg is in the same lib as the SQR source in UNIX when running the program Leighton At 04:36 PM 12/10/2007 -0500, Bencke, Gina wrote: > > am having trouble printing a new logo from UNIX. I have written a test >program that first prints an existing logo using .HPG format and then a >new file, also in HPG format. The existing logo prints correctly but >the new logo appears as a gray box. > >The new file was provided to me in both .JPG and .HPG format. Since the >.HPG file I was given did not print correctly, I opened the .JPG file in >paint, and saved it as a .BMP file and then ran the BMP_TO_HPG.sqr to >create a second .HPG file. I have tried several image-sizes, all to no >avail. The JPG file behaves identically to the HPG file. > >btw - if I use the .BMP file in the Windows environment the new .BMP >logo both views and prints correctly using several image-sizes. > >I am using the following declare printer command: > >declare printer ! Declare printer characteristics > type=HPLASERJET > left-margin=.25 top-margin=.25 > font=3 ! Font number > font-style=fixed > lines-inch=8 ! Lines per inch > point-size=8 > orientation=portrait ! portrait or landscape > >and for HPG > > graphic () font 4 8 > print-image (3, 50) > type = HPGL-FILE > source = $logofile !$image_path > image-size = (24, 8) > >for JPG > > graphic () font 4 8 > print-image (3, 50) > type = JPEG-FILE > source = $logofile !$image_path > image-size = (24, 8) > >for BMP > > graphic () font 4 8 > print-image (3, 50) > type = BMP-FILE > source = $logofile !$image_path > image-size = (24, 8) > >The version of SQR is : SQR for PeopleSoft/8.19/Sun/SunOS 5.6/Oracle >8.0.6/Jan 02 2003. > >I have looked at the headers in both the old (working) .HPG file and the >new (failing) .HPG file and nothing seems to indicate that the new file >is corrupt. Can anyone give me some idea of things to try? > >Regards, > > Gina Bencke | Consultant, Applications Development > Kichler Lighting | 7711 E. Pleasant Valley Rd. | Cleveland, OH >44131 > Work 216-573-1005 X6805 | Mobile 440-479-9961 | Fax 216-573-1070 > Home Office 440-519-0060 > > > > > > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users Leighton Barker New York University ECOMS 10 Astor Pl - Rm 424B tel # 212-998-1118 fax # 212-995-3870 leighton.barker@nyu.edu _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 11 13:03:08 2007 Date: Tue, 11 Dec 2007 12:58:46 -0500 From: "Beller, Jay" Subject: [sqr-users] EPS files in PDF I've taken an image from CorelDraw and exported in JPG and EPS formats. The JPG prints fine from SQR, but the EPS just displays as a box with an X in it. Has anyone successfully exported EPS format from Corel and have it show up properly in PDF? What kind of EPS settings did you specify when exporting?=20 Thanks, Jay _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 11 15:47:20 2007 From: "Peter Burton" Subject: RE: [sqr-users] EPS files in PDF Date: Tue, 11 Dec 2007 15:43:11 -0500 Jay, =46rom the Oracle SQR manual ... Table 24 Valid Images Types BMP EPS GIF HPGL JPEG PNG HPLaserJet X HTML X X X X X X=20 PDF X X X X Postscript X Windows X=20 Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of Beller, Jay Sent: Tuesday, December 11, 2007 12:59 PM To: This list is for discussion about the SQR database reportinglanguage fr= om Hyperion Solutions. Subject: [sqr-users] EPS files in PDF I've taken an image from CorelDraw and exported in JPG and EPS formats. The JPG prints fine from SQR, but the EPS just displays as a box with an X in it. Has anyone successfully exported EPS format from Corel and have it show up properly in PDF? What kind of EPS settings did you specify when exporting?=20 Thanks, Jay _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 11 17:12:00 2007 From: franck.masson2002@laposte.net Date: Tue, 11 Dec 2007 23:09:02 +0100 (CET) Subject: [sqr-users] RoadMap Of SQR Hi, Anyone have information about the RoadMap of SQR server. The Last Information we got date from last year with version 9.3. Is there a new release plane ? or is it the last version ? Regards Franck, Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 11 17:58:28 2007 From: "Peter Burton" Subject: RE: [sqr-users] RoadMap Of SQR Date: Tue, 11 Dec 2007 17:54:25 -0500 Franck, The next version of SQR will be 9.5 scheduled for a 2008 release. Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of franck.masson2= 002@laposte.net Sent: Tuesday, December 11, 2007 5:09 PM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: [sqr-users] RoadMap Of SQR Hi, Anyone have information about the RoadMap of SQR server. The Last Information we got date from last year with version 9.3. Is there a new release plane ? or is it the last version ? Regards Franck, Cr=E9ez votre adresse =E9lectronique pr=E9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=E9gr=E9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 11 18:04:05 2007 From: franck.masson2002@laposte.net Subject: RE: [sqr-users] RoadMap Of SQR Date: Wed, 12 Dec 2007 00:01:13 +0100 (CET) Thanks where can we get info(s) of its contents ? > Message du 11/12/07 23:58 > De : "Peter Burton"=20 > A : "This list is for discussion about the SQR database reporting languag= e from Hyperion Solutions."=20 > Copie =C3=A0 :=20 > Objet : RE: [sqr-users] RoadMap Of SQR > > Franck, >=20 > The next version of SQR will be 9.5 scheduled for a 2008 release. >=20 > Peter >=20 > -----Original Message----- > From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-u= sers-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of franck.masso= n2002@laposte.net > Sent: Tuesday, December 11, 2007 5:09 PM > To: This list is for discussion about the SQR database reporting language= from Hyperion Solutions. > Subject: [sqr-users] RoadMap Of SQR >=20 > Hi, >=20 > Anyone have information about the RoadMap of SQR server. > The Last Information we got date from last year with version 9.3. >=20 > Is there a new release plane ? or is it the last version ? >=20 > Regards >=20 > Franck, >=20 > Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 > 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 11 18:23:58 2007 From: "Peter Burton" Subject: RE: [sqr-users] RoadMap Of SQR Date: Tue, 11 Dec 2007 18:20:29 -0500 Franck, You can download the presentation from OpenWorld 1- http://www.oracle.com/openworld/2007/index.html 2- Click on Content Catalog 3- Under Title/Abstract enter SQR 4- Click Start Search=20 5- Scroll down and click on the Paper Clip ... username and password are on= the page 6- Download is about 2MB Peter -----Original Message----- From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-use= rs-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of franck.masson2= 002@laposte.net Sent: Tuesday, December 11, 2007 6:01 PM To: This list is for discussion about the SQR database reporting language f= rom Hyperion Solutions. Subject: RE: [sqr-users] RoadMap Of SQR Thanks where can we get info(s) of its contents ? > Message du 11/12/07 23:58 > De : "Peter Burton"=20 > A : "This list is for discussion about the SQR database reporting languag= e from Hyperion Solutions."=20 > Copie =E0 :=20 > Objet : RE: [sqr-users] RoadMap Of SQR > > Franck, >=20 > The next version of SQR will be 9.5 scheduled for a 2008 release. >=20 > Peter >=20 > -----Original Message----- > From: sqr-users-bounces+peter.burton=3Doracle.com@sqrug.org [mailto:sqr-u= sers-bounces+peter.burton=3Doracle.com@sqrug.org] On Behalf Of franck.masso= n2002@laposte.net > Sent: Tuesday, December 11, 2007 5:09 PM > To: This list is for discussion about the SQR database reporting language= from Hyperion Solutions. > Subject: [sqr-users] RoadMap Of SQR >=20 > Hi, >=20 > Anyone have information about the RoadMap of SQR server. > The Last Information we got date from last year with version 9.3. >=20 > Is there a new release plane ? or is it the last version ? >=20 > Regards >=20 > Franck, >=20 > Cr=E9ez votre adresse =E9lectronique pr=E9nom.nom@laposte.net=20 > 1 Go d'espace de stockage, anti-spam et anti-virus int=E9gr=E9s. >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=E9ez votre adresse =E9lectronique pr=E9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=E9gr=E9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 06:21:10 2007 From: PUSPENDU Date: Wed, 12 Dec 2007 16:46:57 +0530 Subject: [sqr-users] Need Study material- Migrating from SQRIBE 4.3 to Hyperion SQR 8.3. Kindly share some study materials that will help me to migrate an applicati= on from SQRIBE 4.3 to Hyperion SQR 8.3. **************** CAUTION - Disclaimer ***************** This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solel= y for the use of the addressee(s). If you are not the intended recipient, p= lease notify the sender by e-mail and delete the original message. Further,= you are not to copy, disclose, or distribute this e-mail or its contents t= o any other person and any such actions are unlawful. This e-mail may conta= in viruses. Infosys has taken every reasonable precaution to minimize this = risk, but is not liable for any damage you may sustain as a result of any v= irus in this e-mail. You should carry out your own virus checks before open= ing the e-mail or attachment. Infosys reserves the right to monitor and rev= iew the content of all messages sent to or from this e-mail address. Messag= es sent to or from this e-mail address may be stored on the Infosys e-mail = system. ***INFOSYS******** End of Disclaimer ********INFOSYS*** _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 06:42:51 2007 From: "Steve Cavill" Subject: RE: [sqr-users] Report generation queries. Date: Wed, 12 Dec 2007 22:39:14 +1100 Check the -f command line option to rename the output file Use the -printer:xx flag to define what type of output you want Steve. -----Original Message----- From: sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org [mailto:sqr-users-bounces+steve.cavill=infoclarity.com.au@sqrug.org] On Behalf Of zanoop razack Sent: Tuesday, 11 December 2007 4:33 AM To: sqr-users Subject: [sqr-users] Report generation queries. Hi,I have two queries.1)How can I change the name of the report generated within the Sqr.Right now it is generating the report with the sqr name.Also is there  any limitation on the characters we can give as the name of the report.This program creates a single report.2) I have a program which generates a pdf file and a text file.I am planning to modify the pgm to generate both of them as pdf files.How can I go about this.Also I would like to know is it possible to right parallely into these two pdf files.RegardsZap ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 09:48:51 2007 Subject: RE: [sqr-users] Print-image using .HPG Date: Wed, 12 Dec 2007 07:45:50 -0700 From: "Tracie Roberts" Gina, I have seen this problem before also....make sure that you have the proper rights granted on your image file. I usually just do a chmod to 777. Good luck!=20 -----Original Message----- From: Bencke, Gina [mailto:gbencke@kichler.com]=20 Sent: Monday, December 10, 2007 2:37 PM To: sqr-users@sqrug.org Subject: [sqr-users] Print-image using .HPG =20 am having trouble printing a new logo from UNIX. I have written a test program that first prints an existing logo using .HPG format and then a new file, also in HPG format. The existing logo prints correctly but the new logo appears as a gray box. =20 The new file was provided to me in both .JPG and .HPG format. Since the .HPG file I was given did not print correctly, I opened the .JPG file in paint, and saved it as a .BMP file and then ran the BMP_TO_HPG.sqr to create a second .HPG file. I have tried several image-sizes, all to no avail. The JPG file behaves identically to the HPG file. =20 btw - if I use the .BMP file in the Windows environment the new .BMP logo both views and prints correctly using several image-sizes. =20 I am using the following declare printer command: =20 declare printer ! Declare printer characteristics type=3DHPLASERJET left-margin=3D.25 top-margin=3D.25 font=3D3 ! Font number font-style=3Dfixed lines-inch=3D8 ! Lines per inch point-size=3D8 orientation=3Dportrait ! portrait or landscape =20 and for HPG graphic () font 4 8=20=20=20=20=20=20=20=20 print-image (3, 50) type =3D HPGL-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8) =20 for JPG =20 graphic () font 4 8=20=20=20=20=20=20=20 print-image (3, 50) type =3D JPEG-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8)=20 =20 for BMP =20 graphic () font 4 8=20=20=20=20=20=20=20=20 print-image (3, 50) type =3D BMP-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8) =20 The version of SQR is : SQR for PeopleSoft/8.19/Sun/SunOS 5.6/Oracle 8.0.6/Jan 02 2003. =20 I have looked at the headers in both the old (working) .HPG file and the new (failing) .HPG file and nothing seems to indicate that the new file is corrupt. Can anyone give me some idea of things to try? =20 Regards, =20 Gina Bencke | Consultant, Applications Development Kichler Lighting | 7711 E. Pleasant Valley Rd. | Cleveland, OH 44131 Work 216-573-1005 X6805 | Mobile 440-479-9961 | Fax 216-573-1070 Home Office 440-519-0060=20=20 =09 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 15:34:16 2007 Subject: RE: [sqr-users] Print-image using .HPG Date: Wed, 12 Dec 2007 15:28:07 -0500 From: "Bencke, Gina" =20 Thanks. The problem was in fact a permissions issue. Gina Bencke Work 216-573-1005 X6805 | Mobile 440-479-9961 | Fax 216-573-1070 Home Office 440-519-0060=20=20 =20 -----Original Message----- From: sqr-users-bounces+gbencke=3Dkichler.com@sqrug.org [mailto:sqr-users-bounces+gbencke=3Dkichler.com@sqrug.org] On Behalf Of Tracie Roberts Sent: Wednesday, December 12, 2007 9:46 AM To: This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions. Subject: RE: [sqr-users] Print-image using .HPG Gina, I have seen this problem before also....make sure that you have the proper rights granted on your image file. I usually just do a chmod to 777. Good luck!=20 -----Original Message----- From: Bencke, Gina [mailto:gbencke@kichler.com] Sent: Monday, December 10, 2007 2:37 PM To: sqr-users@sqrug.org Subject: [sqr-users] Print-image using .HPG =20 am having trouble printing a new logo from UNIX. I have written a test program that first prints an existing logo using .HPG format and then a new file, also in HPG format. The existing logo prints correctly but the new logo appears as a gray box. =20 The new file was provided to me in both .JPG and .HPG format. Since the .HPG file I was given did not print correctly, I opened the .JPG file in paint, and saved it as a .BMP file and then ran the BMP_TO_HPG.sqr to create a second .HPG file. I have tried several image-sizes, all to no avail. The JPG file behaves identically to the HPG file. =20 btw - if I use the .BMP file in the Windows environment the new .BMP logo both views and prints correctly using several image-sizes. =20 I am using the following declare printer command: =20 declare printer ! Declare printer characteristics type=3DHPLASERJET left-margin=3D.25 top-margin=3D.25 font=3D3 ! Font number font-style=3Dfixed lines-inch=3D8 ! Lines per inch point-size=3D8 orientation=3Dportrait ! portrait or landscape =20 and for HPG graphic () font 4 8=20=20=20=20=20=20=20=20 print-image (3, 50) type =3D HPGL-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8) =20 for JPG =20 graphic () font 4 8=20=20=20=20=20=20=20 print-image (3, 50) type =3D JPEG-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8)=20 =20 for BMP =20 graphic () font 4 8=20=20=20=20=20=20=20=20 print-image (3, 50) type =3D BMP-FILE=20=20=20=20 source =3D $logofile !$image_path image-size =3D (24, 8) =20 The version of SQR is : SQR for PeopleSoft/8.19/Sun/SunOS 5.6/Oracle 8.0.6/Jan 02 2003. =20 I have looked at the headers in both the old (working) .HPG file and the new (failing) .HPG file and nothing seems to indicate that the new file is corrupt. Can anyone give me some idea of things to try? =20 Regards, =20 Gina Bencke | Consultant, Applications Development Kichler Lighting | 7711 E. Pleasant Valley Rd. | Cleveland, OH 44131 Work 216-573-1005 X6805 | Mobile 440-479-9961 | Fax 216-573-1070 Home Office 440-519-0060=20=20 =09 =20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 17:37:26 2007 Date: Wed, 12 Dec 2007 17:34:58 -0500 From: Warren Van Wyck Subject: [sqr-users] SQL statements that fail in SQR 8.3 We have many complex SQL statements that work in SQL*Plus but fail (no rows) in SQR with the 'begin-select' construct. We are using SQR 8.3. Has anyone found that upgrading to SQR 9.x will fix this type of failure. Release notes for SQR 9.x are lacking this type of information. -- Warren Van Wyck University of Vermont _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 17:45:00 2007 From: "Joe" Subject: Re: [sqr-users] SQL statements that fail in SQR 8.3 Date: Wed, 12 Dec 2007 15:42:02 -0700 To clarify, They don't fail with an error message, but they select zero rows where you know there are rows that should be selected, right? ----- Original Message ----- From: "Warren Van Wyck" To: "This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions." Sent: Wednesday, December 12, 2007 3:34 PM Subject: [sqr-users] SQL statements that fail in SQR 8.3 > We have many complex SQL statements that work in SQL*Plus but fail (no > rows) in SQR with the 'begin-select' construct. > > We are using SQR 8.3. > > Has anyone found that upgrading to SQR 9.x will fix this type of failure. > > Release notes for SQR 9.x are lacking this type of information. > > -- Warren Van Wyck > University of Vermont > > > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users > _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 17:48:14 2007 Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Wed, 12 Dec 2007 16:44:16 -0600 From: "Knapp, Richard" The chief benefit of SQR is that it is a procedural language which undoes the need for complex SQL statements. Out of curiosity, could you send an example? Richard Knapp EAS - Data Warehouse Group University of Missouri 615 Locust Street #200 Columbia, MO 65201 573-882-8856 knappr@umsystem.edu -----Original Message----- From: sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org [mailto:sqr-users-bounces+knappr=3Dumsystem.edu@sqrug.org] On Behalf Of Warren Van Wyck Sent: Wednesday, December 12, 2007 4:35 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: [sqr-users] SQL statements that fail in SQR 8.3 We have many complex SQL statements that work in SQL*Plus but fail (no=20 rows) in SQR with the 'begin-select' construct. We are using SQR 8.3. Has anyone found that upgrading to SQR 9.x will fix this type of failure. Release notes for SQR 9.x are lacking this type of information. -- Warren Van Wyck University of Vermont _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 17:52:55 2007 Date: Wed, 12 Dec 2007 17:50:34 -0500 From: Warren Van Wyck Subject: Re: [sqr-users] SQL statements that fail in SQR 8.3 Hi, Yes, zero rows -- I 'show' any elements in a selected row. When I copy the code from SQR to a file, change 'begin-select' to 'select', add commas after the column names and run with SQL*Plus, then multiple rows are selected. Other programmers have had similar experiences. -- Warren Van Wyck At 05:42 PM 12/12/2007, you wrote: >To clarify, > >They don't fail with an error message, but they select zero rows where you >know there are rows that should be selected, right? > >----- Original Message ----- >From: "Warren Van Wyck" >To: "This list is for discussion about the SQR database reporting >languagefrom Hyperion Solutions." >Sent: Wednesday, December 12, 2007 3:34 PM >Subject: [sqr-users] SQL statements that fail in SQR 8.3 > >>We have many complex SQL statements that work in SQL*Plus but fail (no >>rows) in SQR with the 'begin-select' construct. >> >>We are using SQR 8.3. >> >>Has anyone found that upgrading to SQR 9.x will fix this type of failure. >> >>Release notes for SQR 9.x are lacking this type of information. >> >>-- Warren Van Wyck >> University of Vermont >> >> >>_______________________________________________ >>sqr-users mailing list >>sqr-users@sqrug.org >>http://www.sqrug.org/mailman/listinfo/sqr-users > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 18:31:22 2007 From: the dragon Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Wed, 12 Dec 2007 17:28:30 -0600 I concur with the other poster - examples would be good - right now you're = just peeing into the wind if you'd like us to help. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > Hi,> > Yes, zero rows -- I 'show'= any elements in a selected row. When I copy the > code from SQR to a file,= change 'begin-select' to 'select', add commas > after the column names and= run with SQL*Plus, then multiple rows are > selected. Other programmers ha= ve had similar experiences.> > -- Warren Van Wyck> > At 05:42 PM 12/12/2007= , you wrote:> >To clarify,> >> >They don't fail with an error message, but = they select zero rows where you > >know there are rows that should be selec= ted, right?> >> >----- Original Message -----> >From: "Warren Van Wyck" > >To: "This list is for discussion about the SQR database repor= ting > >languagefrom Hyperion Solutions." > >Sent: Wed= nesday, December 12, 2007 3:34 PM> >Subject: [sqr-users] SQL statements tha= t fail in SQR 8.3> >> >>We have many complex SQL statements that work in SQ= L*Plus but fail (no > >>rows) in SQR with the 'begin-select' construct.> >>= > >>We are using SQR 8.3.> >>> >>Has anyone found that upgrading to SQR 9.x= will fix this type of failure.> >>> >>Release notes for SQR 9.x are lackin= g this type of information.> >>> >>-- Warren Van Wyck> >> University of Ver= mont> >> _________________________________________________________________ Share life as it happens with the new Windows Live. http://www.windowslive.com/share.html?ocid=3DTXT_TAGHM_Wave2_sharelife_1220= 07 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 12 22:29:44 2007 From: "Gina M. Bencke" Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Wed, 12 Dec 2007 22:28:19 -0500 Is it possible that your begin-select statement contains embedded SQL comments which cause SQR to ignore anything between the SQL comment and end-select? Also did you try to run the SQR program with a -s command line flag to include information in the .log file used to determine how many times each SQL statement executed and how many rows were returned. The SQL statement can then copied from the .log file into SQL*Plus to see if SQL*Plus return rows. Does the SQL statement generated by SQR differ in any way from the one you are starting with? (Theoretically they should of course be identical.) I will have to say in the 15+ years I have used SQR, I have never had a discrepancy between the number of rows selected within a begin-select paragraph and SQL*Plus. Regards, Gina Bencke Bencke Consulting Corporation mailto:gina@bencke.com -----Original Message----- From: sqr-users-bounces+gina=bencke.com@sqrug.org [mailto:sqr-users-bounces+gina=bencke.com@sqrug.org] On Behalf Of Warren Van Wyck Sent: Wednesday, December 12, 2007 5:51 PM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: Re: [sqr-users] SQL statements that fail in SQR 8.3 Hi, Yes, zero rows -- I 'show' any elements in a selected row. When I copy the code from SQR to a file, change 'begin-select' to 'select', add commas after the column names and run with SQL*Plus, then multiple rows are selected. Other programmers have had similar experiences. -- Warren Van Wyck At 05:42 PM 12/12/2007, you wrote: >To clarify, > >They don't fail with an error message, but they select zero rows where you >know there are rows that should be selected, right? > >----- Original Message ----- >From: "Warren Van Wyck" >To: "This list is for discussion about the SQR database reporting >languagefrom Hyperion Solutions." >Sent: Wednesday, December 12, 2007 3:34 PM >Subject: [sqr-users] SQL statements that fail in SQR 8.3 > >>We have many complex SQL statements that work in SQL*Plus but fail (no >>rows) in SQR with the 'begin-select' construct. >> >>We are using SQR 8.3. >> >>Has anyone found that upgrading to SQR 9.x will fix this type of failure. >> >>Release notes for SQR 9.x are lacking this type of information. >> >>-- Warren Van Wyck >> University of Vermont >> >> >>_______________________________________________ >>sqr-users mailing list >>sqr-users@sqrug.org >>http://www.sqrug.org/mailman/listinfo/sqr-users > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 13 06:47:05 2007 From: the dragon Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Thu, 13 Dec 2007 05:43:26 -0600 "I will have to say in the 15+ years I have used SQR, I have never had adis= crepancy between the number of rows selected within a begin-selectparagraph= and SQL*Plus." =20 I have - when I am selecting from a different database. =20 I'd still like to see some of the code that is erroring out. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > Is it possible that your begin-se= lect statement contains embedded SQL> comments which cause SQR to ignore an= ything between the SQL comment and> end-select?> > Also did you try to run = the SQR program with a -s command line flag to> include information in the = .log file used to determine how many times each> SQL statement executed and= how many rows were returned. The SQL statement> can then copied from the .= log file into SQL*Plus to see if SQL*Plus return> rows. Does the SQL statem= ent generated by SQR differ in any way from the> one you are starting with?= (Theoretically they should of course be> identical.)> > I will have to say= in the 15+ years I have used SQR, I have never had a> discrepancy between = the number of rows selected within a begin-select> paragraph and SQL*Plus.>= > Regards,> > Gina Bencke> > > -----Original Message-----> > Hi,> > Yes, z= ero rows -- I 'show' any elements in a selected row. When I copy the > code= from SQR to a file, change 'begin-select' to 'select', add commas > after = the column names and run with SQL*Plus, then multiple rows are > selected. = Other programmers have had similar experiences.> > -- Warren Van Wyck> > At= 05:42 PM 12/12/2007, you wrote:> >To clarify,> >> >They don't fail with an= error message, but they select zero rows where you > >know there are rows = that should be selected, right?> > _________________________________________________________________ i=92m is proud to present Cause Effect, a series about real people making a= difference. http://im.live.com/Messenger/IM/MTV/?source=3Dtext_Cause_Effect _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 13 11:06:00 2007 Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Thu, 13 Dec 2007 10:02:48 -0600 From: "Thompson, Betty P" I've seen it differ when the 'where' condition was an 'equal' for a numeric value and we used a literal in Toad, but then used a # variable in an SQR and used a 'let' to assign the same value as was specified in Toad. (This was about 4 years ago, so my recollection my not be quite accurate.) We added this to our setup section and then it worked fine: DECLARE-VARIABLE DEFAULT-NUMERIC=3DDECIMAL(18) END-DECLARE Since then, I think I had another instance where I had to define separate numeric work variables for specific purposes, rather than using the same work variables over and over. I figured something was going on where the numeric variables acquired certain attributes based upon the first usage, and the attributes maybe weren't appropriate for each kind of value I was storing in them. I never did figure out why it made a difference, but it seemed to fix my problem.=20=20=20=20 =20 -----Original Message----- From: sqr-users-bounces+thompsob=3Duww.edu@sqrug.org [mailto:sqr-users-bounces+thompsob=3Duww.edu@sqrug.org] On Behalf Of the dragon Sent: Thursday, December 13, 2007 5:43 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 "I will have to say in the 15+ years I have used SQR, I have never had adiscrepancy between the number of rows selected within a begin-selectparagraph and SQL*Plus." =20 I have - when I am selecting from a different database. =20 I'd still like to see some of the code that is erroring out. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Is it possible that your begin-select statement contains embedded SQL> comments which cause SQR to ignore anything between the SQL comment and> end-select?> > Also did you try to run the SQR program with a -s command line flag to> include information in the .log file used to determine how many times each> SQL statement executed and how many rows were returned. The SQL statement> can then copied from the .log file into SQL*Plus to see if SQL*Plus return> rows. Does the SQL statement generated by SQR differ in any way from the> one you are starting with? (Theoretically they should of course be> identical.)> > I will have to say in the 15+ years I have used SQR, I have never had a> discrepancy between the number of rows selected within a begin-select> paragraph and SQL*Plus.> > Regards,> > Gina Bencke> > > -----Original Message-----> > Hi,> > Yes, zero rows -- I 'show' any elements in a selected row. When I copy the > code from SQR to a file, change 'begin-select' to 'select', add commas > after the column names and run with SQL*Plus, then multiple rows are > selected. Other programmers have had similar experiences.> > -- Warren Van Wyck> > At 05:42 PM 12/12/2007, you wrote:> >To clarify,> >> >They don't fail with an error message, but they select zero rows where you > >know there are rows that should be selected, right?> > _________________________________________________________________ i'm is proud to present Cause Effect, a series about real people making a difference. http://im.live.com/Messenger/IM/MTV/?source=3Dtext_Cause_Effect _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 13 11:11:57 2007 Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Thu, 13 Dec 2007 11:09:00 -0500 From: "Larry Roux" I can see where this would occur due to the bug where SQR sometimes adds decimal values out in the far right past the decimal point (ie Let #x =3D 50/25 May result in #x =3D 2 or 2.000000000000000000001 If you used that variable in the where clause it could cause no rows to be returned.=20=20 -----Original Message----- From: sqr-users-bounces+lroux=3Dsyr.edu@sqrug.org [mailto:sqr-users-bounces+lroux=3Dsyr.edu@sqrug.org] On Behalf Of Thompson, Betty P Sent: Thursday, December 13, 2007 11:03 AM To: This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions. Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 I've seen it differ when the 'where' condition was an 'equal' for a numeric value and we used a literal in Toad, but then used a # variable in an SQR and used a 'let' to assign the same value as was specified in Toad. (This was about 4 years ago, so my recollection my not be quite accurate.) We added this to our setup section and then it worked fine: DECLARE-VARIABLE DEFAULT-NUMERIC=3DDECIMAL(18) END-DECLARE Since then, I think I had another instance where I had to define separate numeric work variables for specific purposes, rather than using the same work variables over and over. I figured something was going on where the numeric variables acquired certain attributes based upon the first usage, and the attributes maybe weren't appropriate for each kind of value I was storing in them. I never did figure out why it made a difference, but it seemed to fix my problem.=20=20=20=20 =20 -----Original Message----- From: sqr-users-bounces+thompsob=3Duww.edu@sqrug.org [mailto:sqr-users-bounces+thompsob=3Duww.edu@sqrug.org] On Behalf Of the dragon Sent: Thursday, December 13, 2007 5:43 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 "I will have to say in the 15+ years I have used SQR, I have never had adiscrepancy between the number of rows selected within a begin-selectparagraph and SQL*Plus." =20 I have - when I am selecting from a different database. =20 I'd still like to see some of the code that is erroring out. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Is it possible that your begin-select statement contains embedded SQL> comments which cause SQR to ignore anything between the SQL comment and> end-select?> > Also did you try to run the SQR program with a -s command line flag to> include information in the .log file used to determine how many times each> SQL statement executed and how many rows were returned. The SQL statement> can then copied from the .log file into SQL*Plus to see if SQL*Plus return> rows. Does the SQL statement generated by SQR differ in any way from the> one you are starting with? (Theoretically they should of course be> identical.)> > I will have to say in the 15+ years I have used SQR, I have never had a> discrepancy between the number of rows selected within a begin-select> paragraph and SQL*Plus.> > Regards,> > Gina Bencke> > > -----Original Message-----> > Hi,> > Yes, zero rows -- I 'show' any elements in a selected row. When I copy the > code from SQR to a file, change 'begin-select' to 'select', add commas > after the column names and run with SQL*Plus, then multiple rows are > selected. Other programmers have had similar experiences.> > -- Warren Van Wyck> > At 05:42 PM 12/12/2007, you wrote:> >To clarify,> >> >They don't fail with an error message, but they select zero rows where you > >know there are rows that should be selected, right?> > _________________________________________________________________ i'm is proud to present Cause Effect, a series about real people making a difference. http://im.live.com/Messenger/IM/MTV/?source=3Dtext_Cause_Effect _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 13 11:37:03 2007 Date: Thu, 13 Dec 2007 11:34:43 -0500 From: Warren Van Wyck Subject: Re: [sqr-users] SQL statements that fail in SQR 8.3 Hi all, Thanks for the responses. Upgrading to SQR 9.x would not have helped. Someone's program that I was modifying was switching the FY to a prior year FY variable (obviously not obvious to me) for which there was no data. My testing of the SQL only used current FY. Thanks for the tips ( -s ) and my apologies for assuming too much about this program, and NOT thoroughly debugging it and wasting your time. I owe you. -- Warren For record this is the SQL: begin-select distinct scbcrse_coll_code scbcrse_dept_code scbcrse_subj_code swxcoll_desc from swxcoll, scbcrse, stvschd, ssbsect where swxcoll_code(+) = scbcrse_coll_code and scbcrse_subj_code = ssbsect_subj_code and scbcrse_crse_numb = ssbsect_crse_numb and scbcrse_eff_term = (select max(b.scbcrse_eff_term) from scbcrse b where b.scbcrse_subj_code = ssbsect_subj_code and b.scbcrse_crse_numb = ssbsect_crse_numb and b.scbcrse_eff_term <= ssbsect_term_code) and ssbsect_term_code in ($fall_term, $spring_term) and ssbsect_ssts_code = 'A' and ssbsect_gradable_ind = 'Y' and stvschd_code = ssbsect_schd_code and stvschd_instruct_method not in ('I','T') [$campus_q] [$ssbsect_q] and swf_check_course_diversity(ssbsect_term_code, ssbsect_subj_code, ssbsect_crse_numb) = 1 and ssbsect_crse_numb not like '_XX' order by scbcrse_coll_code, scbcrse_dept_code, scbcrse_subj_code end-select At 05:34 PM 12/12/2007, you wrote: >We have many complex SQL statements that work in SQL*Plus but fail (no >rows) in SQR with the 'begin-select' construct. > >We are using SQR 8.3. > >Has anyone found that upgrading to SQR 9.x will fix this type of failure. > >Release notes for SQR 9.x are lacking this type of information. > >-- Warren Van Wyck > University of Vermont > > >_______________________________________________ >sqr-users mailing list >sqr-users@sqrug.org >http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Thu Dec 13 18:00:42 2007 Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 Date: Thu, 13 Dec 2007 17:57:36 -0500 From: I believe numerics in sqr are, by default, floating point. When doing =3D comparisons, using floating point, particularly when an implicit type conversion is involved, the =3D condition can fail. This is not an sqr problem. It has to do with rounding and the internal binary representation of the numbers and has been going on for more than 30 years in computers. I usually try to avoid the =3D comparison with numbers. If the number is like an ID and not to be used arithmetically, I make them character types. If I must use a number type, it is best to make the variables integer or decimal whenever possible. -Steve Jones=20 -----Original Message----- From: sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org [mailto:sqr-users-bounces+jones.steven=3Dups-scs.com@sqrug.org] On Behalf Of Thompson, Betty P Sent: Thursday, December 13, 2007 8:03 AM To: This list is for discussion about the SQR database reportinglanguage fromHyperion Solutions. Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 I've seen it differ when the 'where' condition was an 'equal' for a numeric value and we used a literal in Toad, but then used a # variable in an SQR and used a 'let' to assign the same value as was specified in Toad. (This was about 4 years ago, so my recollection my not be quite accurate.) We added this to our setup section and then it worked fine: DECLARE-VARIABLE DEFAULT-NUMERIC=3DDECIMAL(18) END-DECLARE Since then, I think I had another instance where I had to define separate numeric work variables for specific purposes, rather than using the same work variables over and over. I figured something was going on where the numeric variables acquired certain attributes based upon the first usage, and the attributes maybe weren't appropriate for each kind of value I was storing in them. I never did figure out why it made a difference, but it seemed to fix my problem.=20=20=20=20 =20 -----Original Message----- From: sqr-users-bounces+thompsob=3Duww.edu@sqrug.org [mailto:sqr-users-bounces+thompsob=3Duww.edu@sqrug.org] On Behalf Of the dragon Sent: Thursday, December 13, 2007 5:43 AM To: This list is for discussion about the SQR database reporting languagefrom Hyperion Solutions. Subject: RE: [sqr-users] SQL statements that fail in SQR 8.3 "I will have to say in the 15+ years I have used SQR, I have never had adiscrepancy between the number of rows selected within a begin-selectparagraph and SQL*Plus." =20 I have - when I am selecting from a different database. =20 I'd still like to see some of the code that is erroring out. =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your employer is renting your services for 40 hours a week, not purchasing your soul. Your time is the only real finite asset that you have, and once used it can never be recovered, so don't waste it by giving it away. I work to live; I don't live to work. "Time is the coin of your life. It is the only coin you have, and only you can determine how it will be spent. Be careful lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967) It is impossible to defeat an ignorant man in argument. -- William G. McAdoo Religion is regarded by the common people as true, by the wise as false, and by the rulers as useful. -- Seneca "I distrust those people who know so well what God wants them to do because I notice it always coincides with their own desires." - Susan B. Anthony> > Is it possible that your begin-select statement contains embedded SQL> comments which cause SQR to ignore anything between the SQL comment and> end-select?> > Also did you try to run the SQR program with a -s command line flag to> include information in the .log file used to determine how many times each> SQL statement executed and how many rows were returned. The SQL statement> can then copied from the .log file into SQL*Plus to see if SQL*Plus return> rows. Does the SQL statement generated by SQR differ in any way from the> one you are starting with? (Theoretically they should of course be> identical.)> > I will have to say in the 15+ years I have used SQR, I have never had a> discrepancy between the number of rows selected within a begin-select> paragraph and SQL*Plus.> > Regards,> > Gina Bencke> > > -----Original Message-----> > Hi,> > Yes, zero rows -- I 'show' any elements in a selected row. When I copy the > code from SQR to a file, change 'begin-select' to 'select', add commas > after the column names and run with SQL*Plus, then multiple rows are > selected. Other programmers have had similar experiences.> > -- Warren Van Wyck> > At 05:42 PM 12/12/2007, you wrote:> >To clarify,> >> >They don't fail with an error message, but they select zero rows where you > >know there are rows that should be selected, right?> > _________________________________________________________________ i'm is proud to present Cause Effect, a series about real people making a difference. http://im.live.com/Messenger/IM/MTV/?source=3Dtext_Cause_Effect _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Dec 14 10:17:40 2007 Date: Fri, 14 Dec 2007 10:02:25 -0500 From: Jae S Lee Subject: [sqr-users] Page break not working for SQR reports ftp'ed to Eprint I created reports in an SQR program lately, doing seemingly nothing different from my previous SQR reporting programs which work fine in PDF format in Eprint(web-based report viewing software). However, *when these new reports are viewed in PDF format in Eprint, page breaks don't work. * So on one page, you'll see more than one page of the report with next page headings appearing in the middle of a page. The report file is created on UNIX and then ftp'ed to our server for Eprint. --------------------------------------------------------------------- In begin-setup, I have: declare-layout landscape_layout paper-size=(11,8.5) max-columns=132 orientation=landscape end-declare declare-report report1 layout=landscape_layout end-declare I tried "max-line = " with various number of lines, but all failed, so I've taken it out altogether. -------------------------------------------------------------------- Then in begin-heading I have: begin-heading 9 for-reports=(report1) print 'REPORT: ' (1,1) print $program_name (,9) print $zrun_seq_no (,19) . . . print '=' (9,1,130) fill end-heading ------------------------------------------------------------------- I have one control break for which I force page break with "new-page" command. begin-procedure main . . . begin-select . . . pzporbit_plan_code &plancode2 (,1) on-break ! print=change/top-page print=never after=print_plan_subtotals . . . end-select . . . end-procedure !main begin-procedure print_plan_subtotals print '******************************' (+2, 5) print '*** Plan Total for' (+1, 5) print $asu_plancode (, +2) . . . new-page end-procedure *Neither automatic page break (determined by layout of the report, I suppose) nor the forced page break with 'new-page' command work in Eprint.* The actual report file on unix does seem to have page breaks. One may suspect page breaks got lost during ftp, but all other SQR reports go through same ftp and they work fine. I'm pulling my hair, and any help will be greatly appreciated!! -- Jae S. Lee |||||||||||||||||||||||||||||||||||||||||||!!!! Business and Technology Applications Specialist Information Technology Services Appalachian State University |||||||||||||||||||||||||||||||||||||||||||!!!! _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Dec 14 16:00:27 2007 Date: 14 Dec 2007 20:55:08 -0000 From: "zanoop razack" Subject: [sqr-users] Issue while reading a double byte character from database. Hi, Need help to resolve the below issue. The database stores the charaters as āÿ ,but when the program read from database, it reads as aÿ prints in the output report .There is no issue in printing the character ÿ as it is single byte character where ā is double byte character ). The database is MSSQL.Regardszapāÿ ,but when the program read from database, it reads as aÿ prints in the output report .There is no issue in printing the character ÿ as it is single byte character where ā is double byte character ). The database is MSSQL.Regardszap ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Dec 14 16:04:17 2007 From: Frances_Huettinger@aceparking.com Date: Fri, 14 Dec 2007 13:01:26 -0800 Subject: [sqr-users] Creating E-Mail with attachment We need to schedule an SQR that conditionally brings in data from a flat file to update a custom table. For those lines that did not meet the conditions, we need to create an exception report and attach to an e-mail or directly imbed the information into an e-mail and send it a set group of people. The mail system is Lotus Notes. Do you have any samples of something like that? Our SQR person has never done anything like this (i.e. interface with e-mail) before, so don't assume anything. Thank you, Frances Huettinger Business Systems Analyst Ace Parking, Inc. 619-233-6624 x1311 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Dec 14 16:23:33 2007 Subject: RE: [sqr-users] Creating E-Mail with attachment From: Frances_Huettinger@aceparking.com Date: Fri, 14 Dec 2007 13:21:09 -0800 Oops, forgot to say what we are running on. Lotus Notes 7 on Windows xp, v5.1 Frances Huettinger Business Systems Analyst Ace Parking, Inc. 619-233-6624 x1311 Running on Windows or Unix? -----Original Message----- Sent: Friday, December 14, 2007 3:01 PM To: UserGroup SQR Subject: [sqr-users] Creating E-Mail with attachment We need to schedule an SQR that conditionally brings in data from a flat file to update a custom table. For those lines that did not meet the conditions, we need to create an exception report and attach to an e-mail or directly imbed the information into an e-mail and send it a set group of people. The mail system is Lotus Notes. Do you have any samples of something like that? Our SQR person has never done anything like this (i.e. interface with e-mail) before, so don't assume anything. Thank you, _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Fri Dec 14 16:28:48 2007 Subject: RE: [sqr-users] Creating E-Mail with attachment Date: Fri, 14 Dec 2007 16:24:29 -0500 From: "Stephen Andrew Wowelko" Don't know if this will help, or if you are running on the same platform. I write messages to the log file, then attach them to an email if the sqr dies. Here is the code I have for running it on UNIX: show 'Running on ' $sqr-platform show ' Sending Users an email of the log file containing the error' if $sqr-platform <> 'WINDOWS-NT' let $mailCommand =3D 'mail -s "R25 to PeopleSoft Interface ERROR" anyname@syr.edu < /opt/psoft/syracuse/hrsa/sqr/registr/reg117p.log' call system using $mailCommand #returnCode1 end-if if #returnCode1 <> 0 show 'Error executing Email command in UNIX:' $mailCommand end-if=20 -----Original Message----- From: sqr-users-bounces+sawowelk=3Dsyr.edu@sqrug.org [mailto:sqr-users-bounces+sawowelk=3Dsyr.edu@sqrug.org] On Behalf Of Frances_Huettinger@aceparking.com Sent: Friday, December 14, 2007 4:01 PM To: UserGroup SQR Subject: [sqr-users] Creating E-Mail with attachment We need to schedule an SQR that conditionally brings in data from a flat file to update a custom table. For those lines that did not meet the=20 conditions, we need to create an exception report and attach to an e-mail=20 or directly imbed the information into an e-mail and send it a set group of people. The mail system is Lotus Notes.=20 Do you have any samples of something like that? Our SQR person has never done anything like this (i.e. interface with e-mail) before, so don't=20 assume anything.=20 Thank you, Frances Huettinger Business Systems Analyst Ace Parking, Inc. 619-233-6624 x1311=20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 18 12:18:43 2007 Date: Tue, 18 Dec 2007 09:08:52 -0800 (PST) From: prashanth reddy Subject: [sqr-users] multiple reports are created in source directory Hi, I'm working on an interface which creates a file, I also create two log reports which have details of failures and missing info. The two files are created in my sqr directory. In the program each row of data could potentially be one of the two, so I can't simply process all of report 1's data then say "new-report" to start the next one. I haven't been able to find a way to do that without specifying with -f all the different names and the path to put them in (which results in a command line that's too long for the Peoplesoft process scheduler). Thanks Reddy ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 18 12:26:43 2007 Subject: RE: [sqr-users] multiple reports are created in source directory Date: Tue, 18 Dec 2007 12:23:45 -0500 From: "Bencke, Gina" =20 You can rename your reports at the beginning of your program before you print anything to them. You will need to specify the path in the new-report command. Use-report reportA New-report '{path}reportA.lis' Use-report reportB New-report '{path}reportB.lis' Gina Bencke =20 -----Original Message----- From: sqr-users-bounces+gbencke=3Dkichler.com@sqrug.org [mailto:sqr-users-bounces+gbencke=3Dkichler.com@sqrug.org] On Behalf Of prashanth reddy Sent: Tuesday, December 18, 2007 12:09 PM To: sqr-users@sqrug.org Subject: [sqr-users] multiple reports are created in source directory Hi, I'm working on an interface which creates a file, I also create two log reports which have details of failures and missing info. The two files are created in my sqr directory. In the program each row of data could potentially be one of the two, so I can't simply process all of report 1's data then say "new-report" to start the next one. I haven't been able to find a way to do that without specifying with -f all the different names and the path to put them in (which results in a command line that's too long for the Peoplesoft process scheduler). Thanks Reddy =20 ________________________________________________________________________ ____________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=3DAhu06i62sR8HDtDypao8Wcj9tAcJ=20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 18 14:53:18 2007 Date: Tue, 18 Dec 2007 11:49:39 -0800 (PST) From: prashanth reddy Subject: [sqr-users] -MR in sqr Hi, I'm trying to create multiple reports from an sqr, had problem in creating those two reports in report repository. The file were created in sqr directory. I was suggested to append -MR 3 in parameter list, it worked. Can anyone tell me what -MR does? I looked on sqr dictionary and could find in the flags. Thanks, Reddy ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 18 15:01:06 2007 From: "Jeffrey Newton" Subject: Re: [sqr-users] -MR in sqr Date: Tue, 18 Dec 2007 14:57:48 -0500 -MR =3D Multiple Report. The number that follows indicates the max number = of reports to be transferred to the reports repository. There is the usual= "default" report that gets created if you don't explicitly define named re= ports and then any named reports you define use in your code (in your case,= the "default" report plus the two report files you are producing) that ma= ke up the number. ----- Original Message -----=20 From: prashanth reddy=20 To: sqr-users@sqrug.org=20 Sent: Tuesday, December 18, 2007 2:49 PM Subject: [sqr-users] -MR in sqr Hi, I'm trying to create multiple reports from an sqr, had problem in creating those two reports in report repository. The file were created in sqr directory. I was suggested to append -MR 3 in parameter list, it worked. Can anyone tell me what -MR does? I looked on sqr dictionary and could find in the flags. Thanks, Reddy ___________________________________________________________________= _________________ Be a better friend, newshound, and=20 know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_y= lt=3DAhu06i62sR8HDtDypao8Wcj9tAcJ=20 _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 18 15:04:32 2007 From: "Tritt, Merrill" Date: Tue, 18 Dec 2007 15:01:00 -0500 Subject: RE: [sqr-users] -MR in sqr -MR is the command line switch for Multiple Reports. The number after the = switch should always be one more than the number of reports you want to gen= erate. -----Original Message----- From: sqr-users-bounces+merrilltritt=3Dspherion.com@sqrug.org [mailto:sqr-u= sers-bounces+merrilltritt=3Dspherion.com@sqrug.org] On Behalf Of prashanth = reddy Sent: Tuesday, December 18, 2007 2:50 PM To: sqr-users@sqrug.org Subject: [sqr-users] -MR in sqr Hi, I'm trying to create multiple reports from an sqr, had problem in creating = those two reports in report repository. The file were created in sqr direct= ory. I was suggested to append -MR 3 in parameter list, it worked. Can anyo= ne tell me what -MR does? I looked on sqr dictionary and could find in the = flags. Thanks, Reddy _____________________________________________________________________= _______________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt= =3DAhu06i62sR8HDtDypao8Wcj9tAcJ _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Dec 23 21:49:29 2007 Date: 24 Dec 2007 02:44:41 -0000 From: "zanoop razack" Subject: [sqr-users] True type font error in sqr. Hi,I am getting true type font error while running the sqr from the unix box.I checked the sqr.ini file and the font type thowr.ttf is defined there and path is also correct.Any help is duly appreciated.RegardsZap ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Sun Dec 23 22:38:37 2007 From: the dragon Subject: RE: [sqr-users] True type font error in sqr. Date: Sun, 23 Dec 2007 21:35:37 -0600 perhaps a good plan, when asking for assistance, would be to include the ac= tual error you are receiving... =20 peace, clark 'the dragon' willisPSA: Salary <> Slavery. If you earn a salary, your= employer is renting your services for 40 hours a week, not purchasing your= soul. Your time is the only real finite asset that you have, and once used= it can never be recovered, so don't waste it by giving it away. I work to = live; I don't live to work. "Time is the coin of your life. It is the only = coin you have, and only you can determine how it will be spent. Be careful = lest you let other people spend it for you." -- Carl Sandburg (1878 - 1967)= It is impossible to defeat an ignorant man in argument. -- William G. McAd= oo Religion is regarded by the common people as true, by the wise as false,= and by the rulers as useful. -- Seneca "I distrust those people who know s= o well what God wants them to do because I notice it always coincides with = their own desires." - Susan B. Anthony> > > Hi,I am getting true type font = error while running the sqr from the unix box.I checked the sqr.ini file an= d the font type thowr.ttf is defined there and path is also correct.Any hel= p is duly appreciated.RegardsZap> > > > > ------------> Cheers> Zanoop Raza= ck A A>=20 _________________________________________________________________ Don't get caught with egg on your face. Play Chicktionary! http://club.live.com/chicktionary.aspx?icid=3Dchick_wlhmtextlink1_dec _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Mon Dec 24 01:50:43 2007 From: franck.masson2002@laposte.net Subject: Re:[sqr-users] True type font error in sqr. Date: Mon, 24 Dec 2007 07:47:44 +0100 (CET) =20 you are producing pdf files ?=20 what is your version of SQR ? > Message du 24/12/07 03:49 > De : "zanoop razack"=20 > A : "sqr-users"=20 > Copie =C3=A0 :=20 > Objet : [sqr-users] True type font error in sqr. > >=20 > Hi,I am getting true type font error while running the sqr from the unix = box.I checked the sqr.ini file and the font type thowr.ttf is defined there= and path is also correct.Any help is duly appreciated.RegardsZap >=20 >=20 >=20 >=20 > ------------ > Cheers > Zanoop Razack A A >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 25 02:44:43 2007 Date: 25 Dec 2007 07:39:54 -0000 Subject: Re :Re:[sqr-users] True type font error in sqr. From: "zanoop razack" Yes.I am producing pdf files from the report.I am using font =5 and point-size=10 in the report.The sqr version is 6.The error I am getting is relates to the font thowr.ttf .RegardsZapOn Mon, 24 Dec 2007 07:47:44 +0100 (CET) "This list is for discussion about the SQR database reporting language from Hyperion Solutions." wroteyou are producing pdf files ? what is your version of SQR ?> Message du 24/12/07 03:49> De : "zanoop razack" > A : "sqr-users" > Copie à : > Objet : [sqr-users] True type font error in sqr.>> > Hi,I am getting true type font error while running the sqr from the unix box.I checked the sqr.ini file and the font type thowr.ttf is defined there and path is also correct.Any help is duly appreciated.RegardsZap> > > > > ------------> Cheers> Zanoop Razack A A> > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > Créez votre adresse électronique prénom.nom@laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus intégrés._______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Tue Dec 25 14:34:23 2007 Date: Tue, 25 Dec 2007 11:31:18 -0800 From: David Donnelly Subject: [sqr-users] Re: True type font error in sqr. (zanoop razack) Dear Zanoop, There are helpful, experienced, and clever people here, but we cannot read your mind! To help, we will have to know exactly what error message you are seeing. Copy and paste if you can, or type it carefully. It also helps if you say your SQR version (we see you are using v6), database, and platform (Windows, Sun, or whatever) in your first message. Best regards, Dave _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 26 07:13:52 2007 From: franck.masson2002@laposte.net Subject: Re:Re :Re:[sqr-users] True type font error in sqr. Date: Wed, 26 Dec 2007 13:10:10 +0100 (CET) =20 with sqr 6.x you have to declare your pdf in the sqr.ini and provide for th= e font the proper font file description . you have to find the font file description for thowr.ttf. =20 > Message du 25/12/07 08:44 > De : "zanoop razack"=20 > A : sqr-users@sqrug.org > Copie =C3=A0 :=20 > Objet : Re :Re:[sqr-users] True type font error in sqr. > > Yes.I am producing pdf files from the report.I am using font =3D5 and poi= nt-size=3D10 in the report.The sqr version is 6.The error I am getting is r= elates to the font thowr.ttf .RegardsZapOn Mon, 24 Dec 2007 07:47:44 +0100 = (CET) "This list is for discussion about the SQR database reporting languag= e from Hyperion Solutions." wroteyou are producing pdf files ? what is your= version of SQR ?> Message du 24/12/07 03:49> De : "zanoop razack" > A : "s= qr-users" > Copie =C3=83 : > Objet : [sqr-users] True type font error in s= qr.>> > Hi,I am getting true type font error while running the sqr from the= unix box.I checked the sqr.ini file and the font type thowr.ttf is defined= there and path is also correct.Any help is duly appreciated.RegardsZap> > = > > > ------------> Cheers> Zanoop Razack A A> > __________________________= _____________________> sqr-users mailing list> sqr-users@sqrug.org> http://= www.sqrug.org/mailman/listinfo/sqr-users> > Cr=C3=83=C2=A9ez votre adresse = =C3=83=C2=A9lectronique pr=C3=83=C2=A9nom.nom@laposte.net 1 Go d'espace de = stockage, anti-spam et anti-virus int=C3=83=C2=A9gr=C3=83=C2=A9s.__________= _____________________________________sqr-users mailing listsqr-users@sqrug.= orghttp://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 >=20 > ------------ > Cheers > Zanoop Razack A A >=20 > _______________________________________________ > sqr-users mailing list > sqr-users@sqrug.org > http://www.sqrug.org/mailman/listinfo/sqr-users >=20 >=20 Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9nom.nom@laposte.net=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users From sqr-users-bounces@sqrug.org Wed Dec 26 12:18:46 2007 Date: 26 Dec 2007 17:13:22 -0000 Subject: Re :Re:Re :Re:[sqr-users] True type font error in sqr. From: "zanoop razack" Thanks for the suggestions.I checked the ini file and the font file description is present for PDF.Here's the error message I'm receiving.(SQR 9004) TrueType font file thowr___.ttf cannot be opened.  Please check if file exists, or correct font configuration in [TrueType Fonts] section of SQR.INI file.RegardsZapOn Wed, 26 Dec 2007 13:10:10 +0100 (CET) "This list is for discussion about the SQR database reporting language from Hyperion Solutions." wrotewith sqr 6.x you have to declare your pdf in the sqr.ini and provide for the font the proper font file description .you have to find the font file description for thowr.ttf.> Message du 25/12/07 08:44> De : "zanoop razack" > A : sqr-users@sqrug.org> Copie à : > Objet : Re :Re:[sqr-users] True type font error in sqr.>> Yes.I am producing pdf files from the report.I am using font =5 and point-size=10 in the report.The sqr version is 6.The error I am getting is relates to the font thowr.ttf .RegardsZapOn Mon, 24 Dec 2007 07:47:44 +0100 (CET) "This list is for discussion about the SQR database reporting language from Hyperion Solutions." wroteyou are producing pdf files ? what is your version of SQR ?> Message du 24/12/07 03:49> De : "zanoop razack" > A : "sqr-users" > Copie à : > Objet : [sqr-users] True type font error in sqr.>> > Hi,I am getting true type font error while running the sqr from the unix box.I checked the sqr.ini file and the font type thowr.ttf is defined there and path is also correct.Any help is duly appreciated.RegardsZap> > > > > ------------> Cheers> Zanoop Razack A A> > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > Créez votre adresse électronique prénom.nom@laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus intégrés._______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users> > > > ------------> Cheers> Zanoop Razack A A> > _______________________________________________> sqr-users mailing list> sqr-users@sqrug.org> http://www.sqrug.org/mailman/listinfo/sqr-users> > Créez votre adresse électronique prénom.nom@laposte.net 1 Go d'espace de stockage, anti-spam et anti-virus intégrés._______________________________________________sqr-users mailing listsqr-users@sqrug.orghttp://www.sqrug.org/mailman/listinfo/sqr-users ------------ Cheers Zanoop Razack A A _______________________________________________ sqr-users mailing list sqr-users@sqrug.org http://www.sqrug.org/mailman/listinfo/sqr-users