RE: Load of query results

Hi Patrice,
Currently, there is little difference between the enterprise edition and
the standard edition as you pointed out. However, over time, we expect
to see some major differences as we add fucntionality that is more
suited for enterprise application - caching is one of these major
differences.
We are staggering the release of the SE and EE versions for several
reasons: 1) we believe the EE needs to have additional functionality to
justify the two versions and what will be 2 different price points; 2)
we are hopeful that the specification is finalized shortly - we feel a
certain discomfort with releasing an "Enterprise" version based on a
Draft specification; and 3) we are using the SE version to better
understand the market and the needs of the EE customers. We've put out
the EE beta to inform those interested in the EE version that one will
be available.
No, we do not have a reseller in France at this time although we have
some development that takes place in Paris. We are definitely
interested in developing business development relationships throughout
the world to penetrate this market as efficiently as possible. Do you
have any suggestions on resellers in France?
Thanks for your interest.
Neelan Choksi
The Kodo JDO Product Team
-----Original Message-----
From: Patrice Thiebaud
To: Choksi, Neelan
Sent: 8/13/01 1:18 PM
Subject: RE: Load of query results
Choksi,
Thank you for the information.
I have the additional three following questions :
in my understanding :.. the Enterprise Edition currently only adds the synchronization with
the transaction manager of an application server
.. the JDO specification also mandates the use of a JCA adapter in the
context of a managed environment
- are you going to provide also a JCA adapter that could use any JDBC
driver ?
- how come that there is such a time interval between the GA dates of SE
and EE ?
do you have a reseller in France ? If not, are you looking for one ?Thanks in advance.
At 22:14 11/08/2001 -0400, you wrote:
Hi Patrice and all,
We are planning on releasing Kodo JDO Standard Edition in late August or
early September. We have not determined a release date for the
Enterprise
Edition (likely towards the end of the year).
Thanks,
Neelan Choksi
Kodo JDO Product Team
-----Original Message-----
From: White, Abe [ mailto:[email protected]
<mailto:[email protected]> ]
Sent: Friday, August 10, 2001 10:30 AM
To: JDO-ListServ
Subject: RE: Load of query results
Could you please clarify exactly what you mean by an 'automatic load' of
query results? And in what way is the 'resource manager' (db?) accessed
for each query object returned?
When Kodo issues a query it selects all fields of the expected result
class that lie in the primary table used by that type (with the
exception of LOB fields). Thus the objects returned by the query
already have all of their data filled in that is accessible with a
single SELECT. Additional queries are made only if you access fields of
an object that do not lie in its primary table, such as Collections,
arrays, Maps, and relations to other persistent objects.
Is that what you meant?
Whatever you mean, our goal is to implement the entire JDO
specification, including as much optional behavior as is useful to our
customers.
I'll have someone from marketing get back to you with the GA schedule.
-----Original Message-----
From: Patrice Thiebaud
To: [email protected]
Sent: 8/10/01 5:08 AM
Subject: Load of query results
Hi,
The final JDO specification is likely to support the need for having an
automatic load of query results, probably through a property (thus
answering a performance optimization need, as it is better to avoid
futher
access to the resource manager for each object used).
Will the GA version provide this feature ?
By the way, is it possible to know the scheduled date for GA ?
Thanks in advance.
BEA Systems : How Business Becomes E-Business
Patrice Thiebaud - Presales Senior Consultant
BEA Systems - France
Tour Manhattan
6 place de l'Iris
92095 PARIS La D__fense C__dex
Tel: 33 1 41 45 70 27 Mobile: 06 08 05 95 95
BEA Systems : How Business Becomes E-Business
Patrice Thiebaud - Presales Senior Consultant
BEA Systems - France
Tour Manhattan
6 place de l'Iris
92095 PARIS La D__fense C__dex
Tel: 33 1 41 45 70 27 Mobile: 06 08 05 95 95

I have tested Oracle only. Teradata has a "sample" command and I would hope that Web Intelligence would use that. The Oracle method involves the dbms_random package to assign each row a random number, then the query is sorted by that number and a limit is placed for the sample size.
I have not written about this on my blog yet, but it could be an interesting topic. Thanks for the suggestion.

Similar Messages

  • Load of query results

    Hi,
    The final JDO specification is likely to support the need for having an
    automatic load of query results, probably through a property (thus
    answering a performance optimization need, as it is better to avoid futher
    access to the resource manager for each object used).
    Will the GA version provide this feature ?
    By the way, is it possible to know the scheduled date for GA ?
    Thanks in advance.
    BEA Systems : How Business Becomes E-Business
    Patrice Thiebaud - Presales Senior Consultant
    BEA Systems - France
    Tour Manhattan
    6 place de l'Iris
    92095 PARIS La D__fense C__dex
    Tel: 33 1 41 45 70 27 Mobile: 06 08 05 95 95

    Hi,
    According to your description, my understanding is that when you use Angularjs to delete item then it throws the 412 error.
    for the IF-MATCH in the delete method, it needs to contain in the headers like below:
    'delete': { method: 'DELETE', headers: { 'Accept': 'application/json;odata=verbose', 'content-type': 'application/json;odata=verbose', 'X-RequestDigest': $("#__REQUESTDIGEST").val(), 'IF-MATCH': '*' } }
    Here  is a similiar thread for your reference:
    SharePoint/Angular can't delete item - Error 412
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Sending email using PL/SQL based on a query result

    Hello all,
    I want to create a procedure using PL/SQL, based on a query result.Here is the scenario:
    I have multiple tables in Target and Source databases that I want to compare(not the whole table but queries on these tables) and if they differ, I want to shoot an email. I have some ideas how to implement this but not sure whether it is the best approach.
    select Acct_id, total from SourceTableA
    minus
    select Acct_id, total from TargetTableA
    select Acct_id, sum from SourceTableB
    minus
    select Acct_id, sum from TargetTableB
    If the result of any of above queries > 0 then I want to shoot an email and want to repeat this procedure in the morning every day.
    I know how to implement send_mail procedure using UTL_SMTP package and how to schedule tha job by dbms_job package. But I am not sure how to implement the result of minus query. In case if minus > 0 then I also want to send the name of tables in the email message where source and target tables are not same. Should i use cursor, variable or insert the result in a new table? any help would be highly appreciated. Thanks in advance.
    Khan

    Actually these queries are the part of our daily testing that we run everyday manually(after the scheduled ETL load) to see if there are any discrepencies between our datawarehouse tables and source tables. So instead of running these queries manually everyday we want to schedula a procedure that will shoot an email in case of any discrepency and indicate which tables have problems.

  • Saving query results to a flat file

    Hello Experts!
    We have a very specific issue on our current project and I would like to know if any of you have ever done something similar. We are taking query results from BW (after complex calculations, some based on SY-DATE) and saving them to flat files to transfer to a SQL database structure on the Enterprise Portal. From here, the portal team renders the information into more "static" dashboards that include mouse over features and even limited drilldown (i.e. no matter where a user clicks the report always drills down on profit center)
    There are many reasons why the model is set up as such (mostly training of executive level end users), and even though it doesn't mesh with the idea that BW could do this work on its own, we have to work with what we have.
    We have come up with 3 possible ways to save this data to flat files and hopefully someone can tell us which might be the most effective.
    1.) Information Broadcasting. If we broadcast XML files to the portal, will the portals team be able to read that data into a SQL database? Is there another way to use broadcasting to create and send a flat file to specific location?
    2.) RSCRM_BAPI. This transaction seems to not support texts.
    3.) Open Hub. In order to get the open hub to work, we first have to save all of our query results to direct write data store objects using APD. (calculations based on current date, for example, would require daily full loads to the underlying data providers otherwise.)
    What is the best way to accomplish this? Is information broadcasting capable of doing this?
    Thanks!

    Hi Adam,
    Do you have to use flat files to load the information to a SQL database? (if so maybe someone else has a suggestion on which way would be the best).
    I try to stay away from flat file uploads as there is a lot of manual work involved. May I suggest setting up a connection to your SQL table in the DBCON table and then writing a small abap program to push data into the SQL database (which you can automate).
    1) Use APD to push data into a table within BW.
    2) Go to transaction SM30 > table DBCON and setup a new entry specifying the conncection parameters to your SQL database.
    3) In SE38 Write an ABAP program along the folloing lines (assuming the connection you set in DBCON is named conn1:
    data: con_name like dbcon-con_name
    con_name = 'conn1'.
    exec sql.
      set connection :con_name
    endexec.
    ****have a select statement which reads data from your table which the data is saved from the APD into an internal table**********
    ****loop on the internal table and have a SQL insert statement to insert the records into the SQL table as below******
    exec sql.
    insert into <SQL TABLE> (column names seperated by ,)
    values (column names of the internal table seperated by ,)  if the internal table is named itab the columns have to be specified as :itab-column1
    If you decide to take this approach you may find more info on DBCON and the process in sdn. Good Luck!
    endexec.

  • SQL Dev 2.1:Ability to save and load visual query models?

    At SQL Dev 2.1, do we now have the ability to save and load visual query models as with TOAD? Or has that functionality been rolled into the for-pay Data Modeler extension? Seemed strange to hide the functionality deep within SQL Worksheet, then not allow query models to be saved or loaded. From what I recall, load/save was scheduled to be in 2.0.
    I've not yet downloaded and installed 2.1, but also as I recall, it was promised to be a significant (e.g. new-feature rich) release. Has it lived up to that promise? Hoping also that it's not so buggy as to not merit an upgrade. At my workplace, folks have different versions of SQL Dev 1.X installed, each for the purpose of retaining functionality that got broken in future releases, etc. Would love to be able to advise them to retire their 1.X installs in favor of 2.1.
    Edited by: Dana N on Jan 21, 2010 6:45 AM

    Dana, We are working on the query builder. We have not done anything with it in recent releases as we knew that it needed completely overhauled and a
    couple of bug fixes were not going to give us the query builder we needed. Sue will be able to tell you more as the we get closer to releasing it as a feature.Thanks Barry. I know it's probably impossible to give firm dates, but my colleagues would love to know, ballpark, when query builder might be ready. Any particular year/quarter that's targeted for?
    A lot of the bugs in the 2.1 are probably my fault as we decided to build a framework which allowed tasks to be scheduled like eclipse and push them to the
    background. Coupled with this, we tore apart the worksheet to allow us to fit tasks in, but to also give us the ability to do some of the enhancement requests
    that you guys, our users, have been asking for. While its not perfect, I believe its getting much better from both a functionality and performance standpoint. The
    worksheet will not change again and there are no enhancements logged or scheduled which will do that. The issues that have come as part of 2.1 are being
    addressed and we are fixing the highest priority ones as we speak. One of my priorities is to make these components as rock solid as possible.Thanks again. It really is a nice tool to work with, and I'm grateful to have it. I would choose stability for existing features over new ones, but I suppose there always has to be a balance in development. What was really scary in the past was getting bizarre / wrong answers in query results--that's a complete show stopper; e.g. clicking on a row/col intersection in a result set row would show strange and false values. New features can wait, but core functionality must be solid. If one can't presume integrity of query results, it's game over--using a version of SQL Developer that returns inconsistent result sets between runs could be Considered Harmful, or so it is to me.
    Anyway, thanks for responding and I hope Oracle Corp gets you whatever assistance you need to improve the quality of existing functionality while adding new features; with one not being at the expense of the other. :-) Glad also to see Sue has authored a book on the tool. Hopefully that will drive customer demand and force increased allocation of development resources toward the product. I'd like to think having out-of-the-box tools that are a joy to use might even increase market share.
    Data Modeler I would love to use, but am completely priced out of it. Enterprise Architect from Sparx Systems is the best value there so far as I can tell.
    Dana

  • Store SQL query results in db table

    Hi,
    I have a SQL query that produces a report table.
    Is it possible to automatically store the query results (or the report table) as a db table - without interrupting the current report building proces?
    Thanks,
    Dave
    Message was edited by:
    Dave Judge

    Hi Dave,
    You can also insert records into an existing table:
    INSERT INTO TABLEB (colA, colB, colC, etc) SELECT valA, valB, valC, etc FROM VIEWA WHERE etc etc
    This can be done during a page process that runs "Before Header" and you can base your report on the TABLEB. Obviously, you will need to maintain that table to ensure that it is only truncated where necessary, that one user doesn't try to access another user's data on that table and that each time your page is loaded it doesn't try to repopulate the table when you don't need it to.
    Another possiblity is to use a collection - which is user session based
    Andy

  • Query results after BI 7 upgrade

    Hi Gurus,
    Our BW system recently got upgraded from 3.5 to BI 7. After the upgrade, some of the queries are showing different results.Can anyone help me out in identifying the problem?

    Hello, did you run any loads (also masterdata) after the upgrade ?
    This of course affects query results. I've only seen<u> very slight</u> differences in rounding
    of decimals due to reprogrammed OLAP logic.
    I have done several 7.0 upgrades and never seen data differences before/after on a static dataset (no loads, datachanges done).
    Also bear in mind authorisations (maybe some organisational data is not displayed anymore ?
    Regards, Patrick Rieken.

  • Heirarchy is not appearing in my Query result

    Sub: Heirarchy is not appearing in my Query result
    Hi SAP Gurus!
    I am a BW learner..
    My environment is : Training client: SAP BW 3.1 along with SEM 3.2 and BI content 3.1
    What I did :
    1. I have created Info objects     :Mat_No,Mat_name, SRep_Id, SRep_name, Sales_Region, Sales_off, Cust_id, cust_name,
    2. I have created heirarchy for    : SRep_id with Sales_Region,Sales_office
    3. Maintained the master data for  : Sales Region and Sales Office
    4. Up loaded master data for       : Mat_master,Customer_master
    5. While designing the query       : SRep_Id has been dragged into 'Rows'and in the propertice of SRep_id select the name of heirarchy
    What is the problem              : Heirarchy is not appearing in my query result
    What I want is                     : Let ma know where went wrong and what to do for display
                                         of heirarchy in the query result.
    Can you help me in this regard?
    Thnaks in advance
    Vam C

    Thank You venkat and kamal..
    But I did the same and mentioned at point no 5. earlier..
    however I am not getting..
    Can you help me?
    Vam C

  • Error while sending query result

    Hi all,
    I am working on a JDBC-XI-IDoc scenario. In my sending JDBC adapter configuration, i have given the Query SQL statement as <b>SELECT * FROM SAP_PROMOTION</b> and Update SQL statement as: <b><TEST></b>
    But when i go to adapter monitor, i am seeing an error as follws:
    <b>Error:  Sending query result failed with com.sap.aii.af.service.cpa.impl.exception.CPALookupException: Couldn't retrieve binding for the given channelId: Binding:CID=875514bc047b3557a5b53dfb5ef4babe; - retry
      last retry interval started 10:54:09 2006-05-25
      length 60,000 secs</b>
    Can anybody help me how to solve this problem.
    Regards,
    Divija

    Divija,
    Am not sure if this is the exact cause for your problem, but would anyways suggest that you take a look at it,
    <i>classes12.zip is not compatible with JDK 1.4.</i>
    From the note : <b>831162</b>
    Oracle JDBC Driver (classes12.zip / classes12.jar) Deadlocks
    <b>Q: I have deployed the Oracle classes12.zip / classes12.jar JDBC driver as per the instructions in the XI Configuration Guide.
    Unfortunately, I frequently notice hanging database connections. A thread dump taken according to the instructions in note 710154 shows one or more blocking JDBC Sender/Reciver threads and optionally that the JVM has detected a deadlock.
    A: The Oracle classes12.zip / classes12.jar driver is compatible with Java 1.2 and Java 1.3 only, but not with Java 1.4. Please upgrade to a current driver (ojdbc14.jar), which does support the Java 1.4 JVM you are using.
    Please make sure that you remove classes12.zip / classes12.jar from aii_af_jmsproviderlib.sda prior to adding the new driver as per the instructions in the answer to question #1 above as you will get a class name collision otherwise (all JARs from aii_af_jmsproviderlib.sda are loaded into the same class loader and the driver class name of both driver versions is the same).
    Before deploying the updated driver, ensure that the new version is still compatible with your Oracle database server release. For details, please refer to the release notes provided by Oracle.</b>
    Regards,
    Bhavesh

  • How to send query results from BW to R/3 abap program

    Hi,
    I have to bring in query results from BW into a abap program written in R/3...can anyone help me on how to accomplish this(BW to R/3) please...i was thinking if reporting agent or broadcasting should help but i dont know how to get started.
    Please help.
    Thank you so much.

    Hi Vijay,
      As i know, you can send data from BW to Flat file or into any table in BW or to BW application server only.
      You need 3rd party to send data to different server.
    You can use
    1. Tcode : RSCRM_BAPI to download query values/results into a table or into a flat file. OR
    2. You can use Infospokes to generate files from ODS/CUBE/master data objects to flat files(local/application server) or to a table.
    3. Using information broadcasting we can send mail(dont know much options), but i dont think generation of file possible.
      You need to trnasfer generated file from BW to R/3 and load into R/3 using BDC or LSMW(if data is low).
      I think, you can also use RFC function modules to read data from BW to R/3, plz check with ABAPer.
    Hope it Helps
    Srini

  • Popup to query results

    Hi guys, I ve got a small question:
    In one of my pages, i ve got a query. Is it possible to create a pop up window to that query, so that when the user clicks on the detail in my query results(e.g in the column 'Name' the user clicks on some name ('Tsveti' for example) of the query results ), the pop up window to show up, with all the info for the current detail(data row).
    I know how to call a pop up window to a button, but how can i call it from a row in my query?
    Thanks in advance
    Tsveti:)

    Hi Tsveti,
    You need to wrap the Name field in something that has an onClick event. What you use is up to you, but an example would be to use an HTML Expression for the field and enter something like:
    &lt;div onclick="myfunction('#ID_FIELD#')&gt;#NAME_FIELD#&lt;/div&gt;
    #ID_FIELD# would be the field that contains the unique ID for the record and #NAME_FIELD# would be whatever you want to display in the column.
    myfunction() would be the name of the javascript function that you use to call the popup. This javascript code would receive the ID value passed to it and pass this to the page being loaded by the popup. You would just need to insert this into the appropriate place in the url string.
    Regards
    Andy

  • Query Results and display behaviour

    Hi all,
    sorry for this strange thread name but i couldn't find a better name.
    Problem: In my developed application you can search for user. When the page first loads after login you can still view the results of the last query and of the last session. It should be an empty table. Only if you navigate in the application without loggin out the result should be viewable again if you navigate back to the search page
    Please excuse this brief explanation but i am in a rush right now.
    Some advice?
    Thanks in advance
    Markus

    Hi Peter,
    Thanks for your answer. Because I didn't had much time yesterday I didn't mentioned that I allready tried to clear the session state in a page process. I think the problem is not the session state but that the query is executed when the page is loading. I want to start the query only when a button is pressed or submitted via enter. The first time after login there should be no query result.
    I hope it is a littlebit clearer now.
    Regards
    Markus
    Edit:
    One thing I forgot. I can't use condition with 'request = expression 1' (expression 1 = P_GO request) because the condition is allready in use for some other application needs.
    Message was edited by:
    Markus

  • Paged query results within a TIle ?

    what is the best way to page query results within a Tile
    component ?
    eg. I have a Tile component with multiple Repeater Image
    links supplied via an HTTPService call to a PHP script.
    I want to break up the tiled result pages to save loading
    time.
    Would I load the entire result set into Flex, and then
    control how they are viewed by using the horizontal or
    verticalScrollPosition property of the Tile container, or perhaps I
    could make multiple HTTPService calls for each page of results ?
    Any ideas would be much appreciated.

    What about using the tilelist object for multiple returned
    images? You can provide the list as the dataSource to the TileList.
    The images are dynamically linked and they are delivered from the
    server when they are rendered. That way you could bring down the
    url for many images and dynamically link to the images. This would
    allow you to bring down many rows at one time.

  • Use query results in transformation

    Hello experts,
    is it possible to use the results of a query to load data to a infocube?
    We have an infocube containing detailed data. On this cube a query is built with a lot of calculated key figures. Now we would like to load these calculated key figures to a more aggregated cube.
    Thanks in advance,
    Ralph
    points will be awarded

    I would look at the APD process that Edwin mentions.  Typically, the way it would work is you use your query as input, writing the results to a DSO, then datamart the results form there to the cube.
    APD could also be used to directly update a Mstr Data infoobject if that made more sense, then datamart that to he cube.
    I'm not familiar with the CRM / falt file approach mentioned.  Might be fine for what you want to do.  The APD process has more options to perform additional manipulation of the data and even joining it with other query results if you wanted, plus the results end up in a DSO that I think might provide more options for retaining and managing the query results.
    You can review the online help for APD, also SAP's Data Mining class BW380 (might have a new name for BI 7.0) covers this area.

  • Getting query results from a PL/SQL procedure

    Hi! So, I’m a little stumped and I can’t seem to find the answer to what I believe is probably a simple question…
    So, here goes… I have a big ol’ union query that I use to create a report on a page, it’s about 25k – not over the 32k limit, but fails to be able to compile every time (I always get a 400 – Bad Request error). I’m not sure why this is happening, but I can remove a union statement and it compiles just fine – so it has something to do with the size of the query. ANYWAY – I’ve resolved that I should put this bad boy into the database as a stored procedure and just call it from Apex, my problem is I can’t figure out quite how to do this with variables, etc.…
    Instead of giving you my whole big query, I’ll use the emp table as the concept is the same:
    Say we have a query that creates a report on a page:
    select empno, ename, job, mgr, hiredate, sal, comm, deptno
    from emp
    where job = :P_JOB
    and hiredate >= :P_HIREDATE;
    How would I take this query, create it as a stored procedure on the db, pass the variables from Apex and return the query result set from the stored proc as a report?
    I really appreciate any help on this!
    Best,
    Gilcrest

    Hi Gilcrest,
    You should create the query as a View and use the view name and the WHERE clause in the report's sql source.
    Andy

Maybe you are looking for

  • Can i use my ipod on another pc without losing all the tunes i have on it??

    can i use my ipod on another pc without losing all the tunes i have on it?? the last thing i want to happen is lose 40gb of tracks!!ANY HELP WOULD BE GREAT

  • BlackBerry Video Store

    I saw a post on blackberryos.com titled Introducing: BlackBerry Video Store for PlayBook http://www.blackberryos.com/blackberry-playbook/28635-introducing-blackberry-video-store-playbook.ht... The post has a link to register for the Blackberry Video

  • How do I play audios via asx link to online audio mp3 file?

    I am trying to play online recordings which use an asx link file, but all I get is an open asx file with information about the link.  How can I play the recording the asx file is pointing to?  Is there an app for this?

  • IGS create bitmap imagine

    Hi I'm trying to send data to create a bitmap graph image. We are on 6.20, so I only have class : cl_igs_chart available to me. I know that with class cl_igs_chart_engine in 6.40 you can produce bitmaps and convert with images with CL_IGS_IMAGE_CONVE

  • BAPI for product allocation Check gATP

    Hi all, I read in the SAP documentation that we can use gATP on APO to check order item coming from non R/3 OLTP on product allocations. Is someone test it, which BAPI or BAdi do we use? Many thanks in advance.