Query Based VO Can insert record (With out EO)

I have question.
I have Query Based VO (Not belongs to any EO).
I need insert record using that.
Is it possible?
Hope quick response.

No.

Similar Messages

  • Possible to pick records with out identifier in a file?

    Hi All,
    I have a file with header,trailor and detail.. I want to know does each should have a seperate identifier or BODS can pick up with out any identifier??
    Say Header has a identifier H and Tailor has T where as Detial doesnt have any .... Is it possible to pick and process the file in BODS for a header..its respective Tailor and its respective detials???
    Thanks
    Rajeev

    Hi,
    I'm asuming your file contains only one set of Header,Detail,Trailer. Also I'm assuming that the first field in the detail records would never begin with H or T ?  If so then you can define three separate file formats, one for the header, one for the details and one for the trailer.  If the header and trailer records are identical in structure then you just need one file format for both of them and a seperate one for the details.  In the file format for the header/trailer you will define the record structúre which would obviously include the indicator field. When you want to read the header record use the header file format (or header trailer combined format) and specify WHERE indicator='H' in the Query transform, similarly when you want to read the trailer records use the trailer file format (or the combined one) and specify WHERE indicator='T'.  Lastly when reading the detail records use the detail file format and specify WHERE indicator <> 'H' and indicator <> 'T'.
    Hope this helps.

  • How to insert records with LONG RAW columns from one table to another

    Does anybody know how to use subquery to insert records with columns of LONG RAW datatype from one table to another? Can I add a WHERE clause in the subquery statement? Thanks.

    Insert into ... Select statements are not supported for long or long raw. You will have to either use PL/SQL or convert your long raw to blobs.

  • I have a Power Mac G5 Dual 2.3 running 10.5.8, I understand that I can not upgrade to Lion, so what will happen to my Mobile me, which I can not live with out?

    I have a Power Mac G5 Dual 2.3 running 10.5.8, I understand that I can not upgrade to Lion, so what will happen to my Mobile me, which I can not live with out? Also will I be able to get Icloud to work?

    Hi Mary, the other so called "Features" of iClound will not work for like Syncing, but eMail will.
    MobileMe & dot Mac will still work last I heard.
    iCloud Mail setup, even in 10.4/10.5…
    Don't delete your old account yet. Just setup a new one in Mail>Preferences>Accounts, little plus icon. Choose IMAP as account type, not ,mac or MobileMe.
    IMAP (Incoming Mail Server) information:
              ▪          Server name: imap.mail.me.com
              ▪          SSL Required: Yes
              ▪          Port: 993
              ▪          Username: [email protected] (use your @me.com address from your iCloud account)
              ▪          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              ▪          Server name: smtp.mail.me.com
              ▪          SSL Required: Yes
              ▪          Port: 587
              ▪          SMTP Authentication Required: Yes
              ▪          Username: [email protected] (use your @me.com address from your iCloud account)
              ▪          Password: Your iCloud password

  • My Iphone is deactivate, I have photos with out back up, How can I open with out loosing my data.

    My Iphone is deactivate, I have photos with out back up, How can I open with out loosing my data.

    Aussienana wrote:
    OK, so I went and explored  what this site said about Mackeeper. But before I delete it can you tell me:
    If we don't need anti virus program and if the one that came with the machine is supposed to do the job then what does that say about the viruses that Mackeeper says it found? Were they not there and the program made them up? Or were they there and Apple didn't deal with them?
    Thanks for all feedback.
    They were not there and MacKeeper made them up. Delete it completely. I have seen it cripple people's Macs.
    Uninstall MacKeeper
    Pete

  • Can i record with more than one audio interface

    I need to record 16 tracks, I have two different audio iterface, in GarageBand i can only find one of them, if i go to prefrenses-audio, I can set any of them as my audio interface, but only one at the time.
    Any tips to how I can use bouth simultanious? Cubase, Logic mabye, GarageBand no can do? :-)

    josteinfromoslo wrote:
     can i record with more than one audio interface
    yes, create an aggregate device:
    http://www.bulletsandbones.com/GB/Tutorials.html#allaboutaggregatedevices
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    josteinfromoslo wrote:
    I need to record 16 tracks
    GB can only record 8 tracks at a time, however that is 16 channels, so with some extra effort you can get the outcome you desire, see the second tip here:
    http://www.bulletsandbones.com/GB/TricksHacks.html

  • My ipad mini is disabled. if i know my password is there a way i can fix it with out restoring it and losing my data? i have not done a backup.

    my ipad mini got disabled due to my little sister who used the wrong password. if i know my password is there a way i can fix it with out restoring it and losing my data? i have not done a backup. help me please!

    Once disabled, you have to restore/recover the iPad before you can use it.
    You will lose your data.

  • My daughter is traveling to Italy from Canada with her iphone 5, I am in Canada and also have an iphone 5, can we communicate with out costing us

    My daughter is traveling to Italy from Canada with her iphone 5,
    I am in Canada and also have an iphone 5,
    can we communicate with out costing us extra?

    That adaptor should work.

  • How can I record with GarageBand 1.3 in the background using other app?

    How can I record with GarageBand 1.3 in the background using other app?
    I use iPad 2 with iOS 6 and GarageBand v1.3.
    I'd like to play an other app like Sunrizer synth while the GarageBand is recording in the background in a track.
    By now I can do it only using the build-in mic of iPad, but this is not the point.
    Can I record other apps in a GarageBand track?
    Thanks a lot for your time.

    I suspect you are probably correct about the reasoning, although there are already a myriad of ways to do that.
    Don't get me wrong - I never said I like this. But it is consistent with other Apple applications, that are similar restrictive; you cannot take a screenshot, when dvd-player is running for example.
    That are the moments, when I am glad that MacOS X is a unix system under the hood

  • Primary key violation when inserting records with insert_identity and ident_current+x

    My problem is this: I have data in a couple of temporary tables including
    relations (one table referencing records from another table by using
    temporary keys).
    Next, I would like to insert the data from the temp tables to my productive tables which have the same structure but their own identity keys. Hence, I need to translate the 'temporary' keys to regular identity keys in my productive tables.
    This is even more difficult because the system is highly concurrent, i.e. multiple sessions may try to insert
    data that way simultaneously.
    So far we were running the following solution, using a combination of
    identity_insert and ident_current:
    create table doc(id int identity primary key, number varchar(100))
    create table pos (id int identity primary key, docid int references doc(id), qty int)
    create table #doc(idx int, number varchar(100))
    create table #pos (docidx int, qty int)
    insert #doc select 1, 'D1'
    insert #doc select 2, 'D2'
    insert #pos select 1, 10
    insert #pos select 1, 12
    insert #pos select 2, 32
    insert #pos select 2, 9
    declare @docids table(ID int)
    set identity_insert doc on
    insert doc (id,number)
    output inserted.ID into @docids
    select ident_current('doc')+idx,number from #doc
    set identity_insert doc off
    -- Since scope_identity() is not reliable, we get the inserted identity values this way:
    declare @docID int = (select min(ID) from @docids)
    insert pos (docid,qty) select @docID+docidx-1, qty from #pos
    Since the request to ident_current() is located directly in the insert statement, we always have an implicit transaction which should be thread safe to a certain extend.
    We never had a problem with this solution for years until recently when we were running in occasional primary key violations. After some reasearch it turned out, that there were concurrent sessions trying to insert records in this way.
    Does anybody have an explanation for the primary key violations or an alternative solution for the problem?
    Thank you
    David

    >> My problem is this: I have data in a couple of temporary tables including relations (one table referencing records [sic] from another table by using temporary keys [sic]). <<
    NO, your problem is that you have no idea how RDBMS and SQL work. 
    1. Rows are not anything like records; this is a basic concept.
    2. Temp tables are how old magnetic tape file mimic scratch tapes. SQL programmers use CTEs, views, derived tables, etc. 
    3. Keys are a subset of attributes of an entity, fundamental characteristics of them! A key cannot be temporary by definition. 
    >> Next, I would like to insert the data from the temp tables to my production tables which have the same structure but their own IDENTITY keys. Hence, I need to translate the 'temporary' keys to regular IDENTITY keys in my productive tables. <<
    NO, you just get worse. IDENTITY is a 1970's Sybase/UNIX dialect, based on the sequential file structure used on 16-bit mini computers back then. It counts the physical insertion attempts (not even successes!) and has nothing to with a logical data model. This
    is a mag tape drive model of 1960's EDP, and not RDBMS.
    >> This is even more difficult because the system is highly concurrent, i.e. multiple sessions may try to insert data that way simultaneously. <<
    Gee, that is how magnetic tapes work, with queues. This is one of many reasons competent SQL programers do not use IDENTITY. 
    >> So far we were running the following solution, using a combination of IDENTITY_INSERT and IDENT_CURRENT: <<
    This is a kludge, not a solution. 
    There is no such thing as a generic “id” in RDBMS; it has to be “<something in particular>_id” to be valid. You have no idea what the ISO-11179 rules are. Even worse, your generic “id” changes names from table to table! By magic, it starts as a “Doc”,
    then becomes a “Pos” in the next table! Does it wind up as a “doc-id”? Can it become a automobile? A squid? Lady Gaga? 
    This is the first principle of any data model; it is based on the Law of Identity; remember that from Freshman Logic 101? A data element has one and only one name in a model. 
    And finally, you do not know the correct syntax for INSERT INTO, so you use the 1970's Sybase/UNIX dialect! The ANSI/ISO Standard uses a table consrtuctor: 
    INSERT INTO Doc VALUES (1, 'D1'), (2, 'D2'); 
    >> We never had a problem with this solution for years until recently when we were running in occasional PRIMARY KEY violations. After some research it turned out, that there were concurrent sessions trying to insert records [sic] in this way. <<
    “No matter how far you have gone down the wrong road, turn around.” -- Turkish proverb. 
    You have been mimicking a mag tape file system and have not written correct SQL. It has caught up with you in a way you can see. Throw out this garbage and do it right. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Query based on ODS showing connection time out

    Hi,
    I have a query based on an ODS. The selection criteria for the query is Country which is a navigational attribute of the ODS. When i exceute the query using a country with lesser volume of data the query runs fine. But when i choose a country that has more number of records the query shows 500 connection timeout error sometimes and sometimes it runs fine for the same country.
    I tried to execute the report using country as input variable - First i executed the report using a country with lesser volume of data it worked fine as usual and then i added another country with larger volume of data in the filter criteria and the old problem cropped up.
    Could you please suggest a solution?
    Appreciate your response.
    Thanks
    Ashok

    Hi,
    Its not recommneded to have a query on DSO which gives huge amount of data as output.
    For small amount it should not be a problem.
    Shift your queries to a multicube as recommended by SAP and build the multicube over the cube which loads from the DSO.
    SAP recommends to create queries only on multiproviders.
    If not possible then you can try to create indexes on DSO on the characteristics field which are used in filter and global selections in the query.This can improve the query performace.
    But this will create performance issue while loading data to the DSO.
    So you need to do a trade off.
    Thanks
    Ajeet

  • Can't record with Sound Blaster Live Va

    I have a Sound Blaster Li've Value (on-board) card and can't record streaming audio with it. It plays streaming audio fine, and seems to record it, but the resulting wav or mp3 files are "empty", playing them results in silence. I noticed that there was an old thread about this, but I couldn't find a reply. I tried to find out if this sound chip was indeed full duplex, but couldn't find that information. Any help would be greatly appreciated.
    Cheers,
    Ron

    I have the same message error.
    "The SBPCI Interrupt has been routed incorrectly by the system. AudioPCI Inacti've. Use Automatic setting in the Device Manager."
    I have a Compaq computer and win 98. Ever since we moved, the speakers stopped working.
    I tried going thru system properties and Device manager...it shows that the device is working properly. And the Automatic setting box was already checked. I bought new speakers thinking the speakers were bad but I still get no sound. I followed all the steps for Sound Troubleshooting. I did notice when I went to control panel, multimedia, devices, audio...one of the sound cards said: driver is enabled but inacti've due to an unknown problem. But it didn't tell me how to fix the problem?
    I don't know how to get the sound.
    Can someone help me? I really don't know anything about the computers.
    Thanks in advance.

  • How to Execute  sql query in PL/SQL ( a variable) with out using Cursor or REF cursor

    Hi
    I am building a dynamic query based on some conditions
    as an example
    v_query varchar2(2000);
    x1 varchar2(20);
    y1 varchar2(20);
    z1 varchar2(20);
    v_query := ' Select x,y,z into x1,y1,z1 From ... ';
    Is there any way to execute the query with out using cursor or ref cursor..
    Thanks
    Arun

    Both Tod and Eric provided valid responses given the format of the queory you supplied. Howver, if you want to use dynamic sql in either way, you need to be absolutely certain that your query will always only return a single row (e.g. SELECT COUNT(*) FROM mytable), because if it retuns more than one, your procedure will break unless you have an exception handler to handle either TOO_MANY_ROWS or OTHERS.
    If you want to pull in a lot of data without walking a cursor, you should look at the BULK COLLECT options.

  • Can i practice with out a system

    Hi,
    I learned SAP BW. I dont hav a system to practice. Is there any site where in i can view screens or i just can c all the options available so that i will know all the available options. Points will be assigned. Pls help...
    Thanks

    Hi,
    Really it is very hard to learn with out system. Coz it is real time system mean to say business based system.
    But if u have good knowledge in general concept of Data Warehousing (like Star Schema, Info Cube Structure, Flat File Structures and Datal flow etc.,) then it will be easy to switch over to SAP BW.
    Common Web sites are very helpful when u will be in the stage.
    Common Web Sites : help.sap.com,sdn.sap.com,erpgenie.com,bwexpertonline.com
    If you dont have any knowledge in Datawarehousing, then first understand the general concepts by using the above web sites. Then come to the SAP BW screens.
    Screen by screen explanation is explained very well in "Step By Step in SAP BW" Authors are : Fu & Fu....
    Try your self and welcome to SAP BW
    All the best!!!!!!!!!!!!!!!!!!!!!
    Regards,
    Vivek V

  • Need help writing a MySQL query that will return only records with matching counter-parts

    Since I don't know how to explain this easily, I'm using the
    table below as an example.
    I want to create a MySQL query that will return only records
    that have matching counter-parts where 'col1' = 'ABC'.
    Notice the 'ABC / GHI' record does not have a
    counter-matching 'GHI / ABC' record. This record should not be
    returned because there is no matching counter-part. With this
    table, the 'ABC / GHI' record should be the only one returned in
    the query.
    How can I create a query that will do this?
    id | col1 | col2
    1 | ABC | DEF
    2 | DEF | ABC
    3 | ABC | GHI
    4 | DEF | GHI
    5 | GHI | DEF
    *Please let me know if you have no idea what I'm trying to
    explain.

    AngryCloud wrote:
    > Since I don't know how to explain this easily, I'm using
    the table below as an
    > example.
    >
    > I want to create a MySQL query that will return only
    records that have
    > matching counter-parts where 'col1' = 'ABC'.
    >
    > Notice the 'ABC / GHI' record does not have a
    counter-matching 'GHI / ABC'
    > record. This record should not be returned because there
    is no matching
    > counter-part. With this table, the 'ABC / GHI' record
    should be the only one
    > returned in the query.
    >
    > How can I create a query that will do this?
    >
    >
    > id | col1 | col2
    > --------------------
    > 1 | ABC | DEF
    > 2 | DEF | ABC
    > 3 | ABC | GHI
    > 4 | DEF | GHI
    > 5 | GHI | DEF
    >
    >
    > *Please let me know if you have no idea what I'm trying
    to explain.
    >
    Please be more clear. You say that 'ABC / GHI' should not be
    returned,
    and then you say that 'ABC / GHI' should be the only one
    returned. Can't
    have both...

Maybe you are looking for

  • Disk connected to Airport extreme is always waking from sleep

    I have a 360 GB iomega minimax disk connected to the AE USB port to serve as Time machine companion. Both my Leopard iMac and my windows vista laptop are usually connected to the AE(n) through wireless-n. After some 5-minutes of inactivity, I assume

  • How do I stop Photoshop forcing open while batch converting?

    Hi all. I would really appreciate some help with this. Hopefully someone will know what is happening. Lately, whenever I am attempting a large batch conversion through Adobe Bridge (eg resizing), I'm unable to continue on with any other work at all o

  • Authorizations issue

    Hi all, I have a infoobject with the authorization check box checked. This is been used in the infocube as a navigational attribute.When i dont use this at all in any query i get some error for some users.Like below. Authorizations missing for aggreg

  • Rules and RSS Feeds

    Is it possible to apply rules to RSS articles (such as "If message type is RSS Article and content contains [phrase or word] then move to trash")? My attempts to do this with the RSS articles in Mail have been unsuccessful...

  • The latest version of Reader Mobile iOS (11.6) support certificate-based authentication (for LiveCycle RightsManagement server)?

    The previous release (10.1)  say: "Support for our other LiveCycle authentication types may appear in future releases, including Kerberos, Smartcard/PKI certificate-based authentication, SAML-based authentication, or other SSO mechanisms." Now in 11.