How to select for Database Setup via Data Mover

install PT849+HRMS89 with MUL on REH 5.4 x64+Weblogic92+Tuxedo 91+Oracle 10g
after database instance installation manually, need to use Data Mover to import *.db file into database from windows client server.
in this step, any one can advice the setup for DEMO and SYSTEM type.
See the screen https://docs.google.com/file/d/0B50TDBQBIUW7NUZyLUpJY01zcVU/edit
PeopleTools System DataBase-->ptengs.db
PeopleSoft HRCS Database - Simplified Chinese --> hczhsa.db
PeopleSoft HRCS Database - English--> hcengs.db
if Demo selected, hcengl.db is involved, but no ptengs.db
I have tried:
1. select SYSTEM and PeopleTools Database, then import ptengs.db, Then hcengs.db and hczhsa.db.
2. Only import hcengs.db and hczhsa.db
But both are failed for there exists many database record error in the subsequent step.
Thank you very much.
Andy

The second option is the correct one, but if you already ran the 1st, then it will fail. Better to recreate the db from scratch and directly go for the 2nd option.
Nicolas.

Similar Messages

  • How to select for insert a long column through database link?

    How may a long column (for example a sql server 2000 text column) be selected for insert into a clob column in table in 10g over a database link without invoking ora-00997?
    I've tried using dbms_metadata_util.long2clob without success over a database link.

    Is the remote database an Oracle database? Or are you selecting data from SQL Server 2000 over a database link via Heterogeneous Services? What is the data type of the column in the remote database (LONG? TEXT? Something else?)?
    Justin

  • How to SELECT FOR UPDATE with CMP (Oracle)

    The most common database (Oracle) by default uses a scheme that does not fit into any of those isolation levels. A SELECT statement selects data at the start of the transactions, whereas a SELECT ... FOR UPDATE does something quite different. It is essential to do SELECT FOR UPDATEs before updating the row as SELECT does no lock. It's a hack that works well in practice.
    1. Which isolation level is this?
    2. More fundamentally, how an earth is it possible to use this scheme with CMP?! You would have to distinguish load() from loadForUpdate()! Is CMP inconsistent with Oracle?
    This is a pretty big whole in the CMP spec!

    No. thats no goes well.
    Transaction serializable in Oracle uses a optimistic
    concurrency system. And for update is a
    pessimistic concurrency.
    With optimistic: the system is faster but it can fail
    With pessimistic: if doesnt fail (usually;)
    You can solve the proble with many differents systems:
    1. Edit the .xml descriptor files ans change the sql sentences.
    And my prefer one.
    2. Make a new jdbc driver that inherits from the original
    oracledriver.
    The new driver give u in "getConnection()" a new connection class that inherits from the original connection.
    The executestatement and preparestatement adds the
    string "for update" if the stattement was starting by select.
    Configure your container to use the new driver.

  • Using Labview how can one store different data in different sheets of same excel file, I mean how to select different sheets to store data??

    Hello Everyone,
    I want to store various data but in different sheets of excel file. So how to select Different sheets of same excel file???
    Thanks so much 
    Pallavi 

    aeastet wrote:
    Why do you not want to use Active X?
    One very good reason that I can think of is that MS keeps changing their ActiveX interface with each version of Excel, so code written for one version of Excel using ActiveX may not work for another version of Excel, even though the basic functionality hasn't changed. A perfect example is when MS changed the "Value" property to "Value2". Yeah, that made a whole lot of sense.
    pals wrote:
    I dont want to use active X as i am not
    getting results... by using write to spreadsheet in am getting results
    but on just one sheet... I want different data on different sheets of
    same excel file. So....
    Can anyone help me in this...
    Then it's something you're doing. Please post your code. Have you tried a search on this forum for ActiveX and Excel? There have been tons of posts on it, including lots of examples. There's also the Excel thread.

  • How to select Video Track Headers via hotkey??

    I want to know how to select seperat tracks via the highlighted headers without having to waste time clicking them seperatel with a mouse to make a fast edit (such as CMD+K). No such info on the googles and the interweb.

    I have set up  Shortcut keys to Toggle all Video (1-9) and all Audio (1-9)
    I use the numbers:  1 - 9 for Video and Shift 1- 9 for Audio.
    I use Click Shift for Toggle ALL. ( although there is a shortcut key available for that also but I have not set up it up.)

  • How to select header group with detailed data in one SQL

    Dear,
    I would like to have a little help from you. My goal is to create a view where data must be in appropriate format. In this format i would like to have for each group one header.
    I have 3 tables which they ar connected to each other (representing hierachical data where financial plan breaks across different groups).
    CRM_PLAN
    CRM_PLAN_ID
    DATE
    AMOUNT
    CRM_PLAN_PE
    CRM_PLAN_PE_ID
    TITLE
    AMOUNT
    CRM_PLAN_ID (ref key to CRM_PLAN.CRM_PLAN_ID)
    CRM_PLAN_MONTH
    CRM_PLAN_MONTH_ID
    YEAR
    MONTH
    AMOUNT
    CRM_PLAN_PE_ID (foreign key to CRM_PLAN_PE.CRM_PLAN_PE_ID)
    Data looks like:
    CRM_PLAN
    CRM_PLAN_ID | DATE | AMOUNT
    1 | 01.01.2012 | 500
    2 | 01.02.2012 | 200
    CRM_PLAN_PE
    CRM_PLAN_PE_ID |TITLE | AMOUNT | CRM_PLAN_ID
    1 | Organization 1 |100 | 1
    2 | Organization 2 |400 | 1
    3 | Organization 3 |200 | 2
    CRM_PLAN_MONTH
    CRM_PLAN_MONTH_ID | YEAR | MONTH | AMOUNT | CRM_PLAN_PE_ID
    1 | 2012| 1 | 60 |1
    2 | 2012| 2 | 40 |1
    3 | 2012| 1 | 350 |2
    4 | 2012| 2 | 50 |2
    5 | 2012| 1 | 200 |3
    I would like view which would return data like:
    MONTH | AMOUNT
    Organization 1 |null
    1 | 60
    2 | 40
    Organization 2 | null
    1 | 350
    2 | 50
    Organization 3 | null
    1 | 200
    The main question is hot to write an sql as source for view to insert before each group a row with title column value from table CRM_PLAN_PE. Is that even possible? Maybe you could suggest me some other method.
    View will be used in oracle form where will be possible to edit data - I will arrange that through insted of trigger.
    Regards,
    Igor
    Edited by: user5528050 on 29.11.2012 2:23
    Edited by: user5528050 on 29.11.2012 2:24
    Edited by: user5528050 on 29.11.2012 2:25

    Hi, Igor,
    user5528050 wrote:
    ... I would like view which would return data like:
    MONTH | AMOUNT
    Organization 1 |null
    1 | 60
    2 | 40
    Organization 2 | null
    1 | 350
    2 | 50
    Organization 3 | null
    1 | 200
    The main question is hot to write an sql as source for view to insert before each group a row with title column value from table CRM_PLAN_PE. Is that even possible? Maybe you could suggest me some other method. So, you want to have 2 different kinds of rows in the output:
    (1) "parent" or "master" rows containing data from crm_plan_pe, such as
    MONTH          AMOUNT
    ==============     ======
    Organization 1(2) "child" or "detail" rows containing data from crm_plan_month, such as
    MONTH          AMOUNT
    ==============     ======
    1          60Sure, you can do that.
    One way is to do a UNION of 2 separate queries: (1) to generate just the parent rows, (2) to generate just the child rows.
    You could also join the 2 tables and use GROUP BY GROUPING SETS. The super-aggregate rows would be the parent rows.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved (it looks like crm_plan is not involved in this problem), and also post the results you want from that data. You need to post this whether or not you want SQL code in reply. The people who want to help you want to provide good answers, and that means they want to re-create the probelm and try their ideas.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • 'Convert Selection for iPod/iPhone' makes my movies silent. Why?

    When I choose the 'Convert Selection for iPod/iPhone' option so that I can put my movies on my iPod, all of the audio becomes silent. The picture is fine and only the music/words go away.
    Why? And, if there's a way, how can I fix it?
    (These movies are either from a camera or from friends.... 'mpg' files.)

    Thanks for the reply, but iTunes did not create a new file. I looked in Movies and in TV Shows, and in Music just to be careful, but there is still only one file, the one that doesn't play on my iPhone. I even looked in my iTunes Music folder for a file it may have created an just not imported, but there is nothing there either.

  • ImplementationOpt Design[Opt 31-67] Problem for AXI bus between data mover ip and axi interconnect

    I'm using vivado 2014.4 and win7 64bit for my zynq design.  Previously, the design is good. I made some revisions. Then I came across the problem.
    If the synthesis strategies option is flow_runtime_optimatized(Vivadio synthesis 2014), everything works
    If the synthesis  strategies option is default options (the synthesis settings are shown in the picture), Synthesis is still fine, but the implementation failed. Some of the errror msg is shown below.
    The error message shows there are unconnected pins on axi_interconnect_1. The connections between AXI master from my own IP(it is the axi port from a DataMover IP) and axi_interconnected is shown in the attached picture.
    The synthesis schematic is also checked. The connections of the axi_interconnect have some pins unconnected as shown in the picture (interconnect_schematic_synth.PNG). The connections of my IP are good, but it misses some pins (like _arready, _rvalid, _ruser, _bid...).  The master AXI port in my port is from the data mover IP. By default, the data mover IP doesn't have these missed pins. The AXI port on my IP declares these missed pins, but actually they are not connected to any inside my IP. 
    Btw, previously, the project works well in my design. But now it doesn't.
     I also check the connections of the axi_interconnect when synthesis strategies option is flow_runtime_optimatized, the schematic show all pins are connected. 
    Please help. Thx.
    Sam
    ImplementationOpt Design[Opt 31-67] Problem: A LUT1 cell in the design is missing a connection on input pin I0, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: design_top_level_i/Zynq_Processing_System/axi_interconnect_1/s00_couplers/auto_pc/inst/gen_axi4_axi3.axi3_conv_inst/USE_READ.USE_SPLIT_R.read_addr_inst/size_mask_q[3]_i_1__0.
    [Opt 31-67] Problem: A LUT2 cell in the design is missing a connection on input pin I0, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: design_top_level_i/Zynq_Processing_System/axi_interconnect_1/s00_couplers/auto_pc/inst/gen_axi4_axi3.axi3_conv_inst/USE_READ.USE_SPLIT_R.read_addr_inst/access_is_incr_q_i_1__0.
    [Opt 31-67] Problem: A LUT2 cell in the design is missing a connection on input pin I1, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: design_top_level_i/Zynq_Processing_System/axi_interconnect_1/s00_couplers/auto_pc/inst/gen_axi4_axi3.axi3_conv_inst/USE_READ.USE_SPLIT_R.read_addr_inst/access_is_incr_q_i_1__0.
    [Opt 31-67] Problem: A LUT2 cell in the design is missing a connection on input pin I0, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: design_top_level_i/Zynq_Processing_System/axi_interconnect_1/s00_couplers/auto_pc/inst/gen_axi4_axi3.axi3_conv_inst/USE_READ.USE_SPLIT_R.read_addr_inst/command_ongoing_i_2__0.
    [Opt 31-67] Problem: A LUT2 cell in the design is missing a connection on input pin I0, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: design_top_level_i/Zynq_Processing_System/axi_interconnect_1/s00_couplers/auto_pc/inst/gen_axi4_axi3.axi3_conv_inst/USE_READ.USE_SPLIT_R.read_addr_inst/size_mask_q[1]_i_1__0.
    [Opt 31-67] Problem:

     
    Hi Muzaffer
    THx for your reply. 
    I tried implementation with opt_design option -directive Explore, it didn't work.
    Aslo I disabled the opt_design and enabled phys_opt_design, it still has the same error in the implementation.
    I would try to delete the pins related  _AR_(like _arready, etc. ) and _R_ (like _rdata, _rid, etc.) pins in the AXI4 port in my IP. The data mover ip doesn't contains thes pins. I want  to see whether it works this way.
    Hopefully, the new vivado version will help. 

  • How to backup all database settings and data for SOA suite to file(s) ?

    During the installation of the SOA Suite a couple of tables and schemas are created
    in Oracle database through the irca.bat script.
    Later the tables are filled with content by all the servers and services of the
    SOA Suite.
    How can I backup all these tables and SOA related stuff to one (or more)
    files (for a possible later restore)?
    This backup should contain only SOA Suite related tables and data.
    Possible other tables (for other applications) should not be considered.
    Is there a script (e.g. for sqlplus) or menu which does the
    SOA database backup job for me ?
    If there is no official backup script maybe someone in this forum
    wrote a personal script.
    Thank you
    Peter

    I am facing the same problem.
    I have spend a few days to configure and train my Sony tablet to configure for all my remotes such as aircon and lighting. I did a backup using the Sony companion to my PC. When my tablet was faulty and serviced. But the backup did not recover the IR remote settings and codes which I programmed previously. I also tried your backup restore app but it also does not save the configuration.
    It is VERY IMPORTANT for me to backup the settings.
    Please provide the folders and path of where the IR REMOTE settings and personal configuration and codes trained were kept so that I could back them up. Are these path protected area that required rooted access?
    Hope that Sony could update the app to include backup of new trained codes and settings and in the meantime to provide a procedure of how to backup the setting and trained IR codes with or without rooting the device.

  • How to select different database columns in a single BO Universe Object

    We have 'n' databases. All the databases have identical tables and views but some tables in few database have custom columns.
    Ex. 'database1' has table 'sites' with the following columns
    1. sitenumber
    2. sitename
    3. siteaddress
    4. phone
    5. email
    6. ActivatedDate
    'database2' has table 'sites' with the following columns
    1. sitenumber
    2. sitename
    3. siteaddress
    4. phone
    5. email
    6. ActivatedDate
    7. LocalActivatedDate
    The condition says that
    "Local Activated date will be used if populated in the system otherwise Activated Date will be used"
    How do i create a condition at the universe level which checks whether the column "LocalActivatedDate" is present in the database or not. Also, how to give a condition which select between "ActivatedDate" and "LocalActivatedDate"
    A single universe needs to be created for all the databases. Only the Default Database in connection parameter changes during deployment.
    Can this be achieved using BO Universe Designer only?
    Thanks in Advance,
    Arun
    Edited by: arunkumars on Dec 2, 2009 10:00 AM

    Create a universe with your default connection and then while changing the universe connection you can write an SDK script using universe designer sdk  do a REFRESH STRUCTURE so that all the you will get the schema same as current DB and then you can add predefined condition or object to this universe  (before doing this keep a copy of the universe) .
    You have to do a lot of stuff to keep your universe proper and stable to work with all the databases using designer SDK.
    Can achieve this but with an overhead of writing and calling SDK scripts again and again . ...
    Hope this helps...
    Regards
    Kunal

  • How to select Months with in a date range

    Hi
    I am working on a report which will list out Month wise totals in each row.
    How should i select the Months with in a date range and do the sum ( User may select the date range for  N number of  years also. Example :  01/10/2000 to 01/01/2010 )
    Thanks in advance
    Thanks&regards
    Mrudula

    Hi
       Use the following code:
    data: l_date(8) value '03042007',
            l_mname   type   t247-ktx,
            l_c(25).
      select single ktx from t247
      into l_mname
      where spras = sy-langu
      and mnr = l_date+2(2).
      concatenate l_mname l_date+6(2)
      into l_c." SEPARATED BY space.
      data: g_date(10) type c. " Processing date of Report
      g_date = sy-datum.
      concatenate g_date0(4)  g_date4(2)  g_date+6(2) into g_date.
      data: g_date1(10) type c.
      g_date1 = so_verab-high.
      concatenate g_date10(4)  g_date14(2)  g_date1+6(2) into g_date1.
    Regards,
    Sreeram

  • Document selection for initial transfer by date of creation does not work

    Hello gurus,
    we are trying to initially transfer purchase orders from ERP to GTS. In /SAPSLL/DS_D_MM0A_R3, when we try to select the documents by giving a date for u2018created onu2019, no documents are transferred (u2018No data was found for the selection criteriau2019, Message no. /SAPSLL/PLUGINR3205).
    But when we select the documents using ME2L and insert the document numbers in the appropriate field in /SAPSLL/DS_D_MM0A_R3, all documents are transferred just fine.
    So obviously the selection by date does not wok properly. Or are there other hidden criteria ERP uses to select the documents to transfer (e.g. only those without GR/IR)?
    Thanks in advance
    Alicia

    Hi Alicia,
    just had a customer message with the same issue.
    The program for initial transfer selects the data frm table EKKO.
    Please check for those 3 documents, if the AEDAT in EKKO is the same date as in the selection of ME2L.
    It could be that in EKKO the AEDAT is a different date. We are selecting from this table.
    I believe if you choose the documents in SE16 EKKO only by the date from ME2L you won't find them as well.
    I believe the difference is between the 'Creation Date' and the 'Document Date'.
    Best regards, Christin
    Edited by: Christin Angus on Sep 14, 2010 2:24 PM

  • From & To  Selection for htmlb:inputField id         = "DATE"

    Hi Friends,
    Is there any feature like ,to select the dates in the htmlb calendar ? I need to select the from date , to date in the same calendar ,for results in that particular dates. I look for your suggestions in this regard.
    Regards
    CSM Reddy

    You can refer to this sample code:
    <htmlb:gridLayout columnSize = "2"
                      rowSize    = "2" >
            <htmlb:gridLayoutCell columnIndex = "1"
                                  rowIndex    = "1" >
              <htmlb:label for      = "date_frm"
                           required = "true"
                           text     = "Date From"
                           design   = "EMPHASIZED" />
            </htmlb:gridLayoutCell>
            <htmlb:gridLayoutCell columnIndex = "2"
                                  rowIndex    = "1" >
              <htmlb:inputField id             = "date_frm"
                                type           = "date"
                                required       = "true"
                                doValidate     = "TRUE"
                                firstDayOfWeek = "2"
                                showHelp       = "true"
                                value          = "<%= date_frm %>" />
            </htmlb:gridLayoutCell>
            <htmlb:gridLayoutCell columnIndex = "1"
                                  rowIndex    = "2" >
              <htmlb:label for      = "date_to"
                           required = "true"
                           text     = "Date To"
                           design   = "EMPHASIZED" />
            </htmlb:gridLayoutCell>
            <htmlb:gridLayoutCell columnIndex = "2"
                                  rowIndex    = "2" >
              <htmlb:inputField id             = "date_to"
                                type           = "date"
                                doValidate     = "TRUE"
                                required       = "true"
                                firstDayOfWeek = "2"
                                showHelp       = "true"
                                value          = "<%= date_to %>" />
            </htmlb:gridLayoutCell>
            </htmlb:gridLayout>
    Now in OnInput Processing we can have:
    date_frm = request->get_form_field( 'date_frm' ).
    date_to = request->get_form_field( 'date_to' ).
    If you need to fetch records, from a DB table within this interval you can use:
    SELECT <fields> FROM  INTO <itab> WHERE <date in DB table>
    BETWEEN date_frm AND date_to.
    Hope this helps,
    Regards,
    Ravikiran.

  • How to check for null int/null Date

    Heres the situation, there is an interface accepting an int value and a time/date that are not required(and are not set to anything automatically, i have no control over that part unfortunately), but I need to set up some sort of null/has value type of check to execute the setter when it does have a value, and ignore it when it doesnt. I am currently getting null pointers. here is my current set up:
    //throws null pointer as set up below, I am assuming I might want to eliminate the "getDate" off of the end and that might clear it up.
    if(data.getDate().getTime() != null)
              tempData.setDate(data.getDate().getTime());
    //Not sure on this one yet, the value doesn't get set to anything so I am assuming it automatically gets assigned something like -1.
    if(data.getId() >= 0){
              tempData.setId(data.getId());
              }

    tsdobbi wrote:
    I know data isnt null because it goes through a bunch of other tempData.set(data.get) items prior to hitting a snag on the above date I mentioned, when there is no value input for the date. and that particular null check I do there, does not work because it throws a null pointer in the if statement itself.
    i.e. it traces the null pointer to
    (if data.getDate().getTime != null) //this is the line the null pointer traces to.{color:#3D2B1F}if data is not null, then it must be the case that data.getDate() is null. Now that's what I call logic. W00t!{color}

  • How many licenses for Windows 7 via both Boot Camp and either VMware Fusion or Parallels on the same MacBook?

    This concerns a white MacBook running OS X 10.5.8 Leopard.
    If I install Windows 7 on my MacBook with Boot Camp, and then use either VMware Fusion or Parallels to access that Boot Camp partition, will I need to buy two Windows licenses from Microsoft?
    I had not anticipated this, but when calling VMware and Parallels to check out the tech support services of the two companies, the person at VMware mentioned that I would need two licenses.  When I called Parallels, I then asked the person at that company whether two Windows licenses would be needed.  That person told me that only one license would be necessary.
    I then called Microsoft.  The representative there told me that my question could not be answered by Microsoft because that company does not provide support for users installing Windows on Apple computers.
    After that, I called Apple.  The Apple representative was not familiar with this type of issue.  She mentioned the possibility that the VMware Fusion and Parallels products might be different, and that that might be why using the former would involve two licenses and using the latter would involve only one license.
    Has anyone had experience with installing Windows 7 via Boot Camp, and then accessing that Windows 7 installation from VMware Fusion or Parallels?  If so, did you have to buy two Windows licenses?

    One license. You may have to re-register Windows online when you start it up in Parallels because Windows sees that it is now running on new hardware (virtualized) and thinks it has been installed on a new computer. If the online re-registration does not work, just call the registration number and go through the automated registration process. Once re-registered then use Windows from Parallels. If you are also installing MS Office in Windows you will need to go through the same process again for registering Office.
    The process is automated, simple, and free. You have made the process more complicated than it is by calling Apple, Parallels, and Microsoft when there is an automated MS registration number to call.

Maybe you are looking for

  • Business Objects - Lifecyle Management Services

    Is there anyone who knows about BOE LCM?  We are planning to install a 3-tier (Dev/QA/Prod) Business Objects environments.  Our desire is to develop in Dev, move to QA for testing and Prod.  We would prefer not to have end users develop Xcelsius dash

  • Button ActionScript 2.0

    Hello, I have a button and defined 3 different layouts in the states Up, Over and Down. If the user clicks on the button and moves the cursor out of the area after the mouse click, the layout of the cursor should still show the "Down-layout", just to

  • Files from PC Can not open

    I have Disk Aid on my PC.  I can apparently sucessfuly move files to my Ipad but when I use FileApp pro I cannot find the files anywhere on the Ipad, yet they appear on my PC looking into the Ipad.  When I was using the FilePro free version I had no

  • I can't open Creative Cloud in Windows 7. I get nothing -- not even the blank window.

    It's worked fine until yesteday. Initially it only opened the white window and I followed many suggestions on this forum, renamed OOEB, used CC Cleaner, reinstalled, deleted opm.db. Now it is worse - it will not even open the blank window. I get the

  • We need new ios 7.0.1 or newest upgrade

    Hello, my phone is iphone 4s model. when i get a call with locked screen, ı can't turn down a call.just have answer button, it haven't turn down button ! another second problem my phone is working fast before with ios 6 versions, but now my phone is