Insertion error

hi
I am getting an error "ORA-00923: FROM keyword not found where expected" while running the below insert statement.
insert into rp_rpt_sql
select '1','6000100','1','1','insert into rn_rpt_data(dt, rpt_id, rpt_row_id, rpt_col_id, col1, col2, col3, col4, col5, col6, col7, col8, col9, col10) select ''##as_on_dt##'', 6000100, 1, 1, rownum sr_no, v.* from (select e.IECD, (e.IMPORTER_NAME||' '||e.IMPORTER_ADDRESS), (e.IMP_LIC_NO||' '||e.IMP_LIC_DT), e.IMP_ITEMS, e.IMP_REMIT_DT, e.IMP_REMIT_AMT_CCY_ID, e.IMP_REMIT_AMT_CCY, e.IMP_REMIT_AMT_RS, e.REM from rm_bef e where e.as_on_dt = ''##as_on_dt##'' and e.bef_default_id = '1' and e.cust_type = '2') v','select rownum "Sr_No", (IMPORTER_NAME+IMPORTER_ADDRESS) "Name and address of the importer", (IMP_LIC_NO+IMP_LIC_DT) "No. and date of import licenses if any", IMP_ITEMS "Brief Description of goods", IMP_REMIT_DT "Date of reimittances", IMP_REMIT_AMT_CCY_ID "Currency", IMP_REMIT_AMT_CCY "Amount", IMP_REMIT_AMT_RS "Rupee Equivalent", rem "Remarks" from (select e.IECD, (e.IMPORTER_NAME||' '||e.IMPORTER_ADDRESS), (e.IMP_LIC_NO||' '||e.IMP_LIC_DT), e.IMP_ITEMS, e.IMP_REMIT_DT, e.IMP_REMIT_AMT_CCY_ID, e.IMP_REMIT_AMT_CCY, e.IMP_REMIT_AMT_RS, e.REM from rm_bef e where e.as_on_dt = ''##as_on_dt##'' and e.bef_default_id = '1' and e.cust_type = '2')','14' from dual where not exists (select 1 from rp_rpt_sql where rpt_id=6000100);
What could be the problem ?

If you bothered to format your code so you could read it you would easily spot that you've missed escaping your single quotes within strings...
insert into rp_rpt_sql
  select '1'
        ,'6000100'
        ,'1'
        ,'1'
        ,'insert into rn_rpt_data(dt
                                 ,rpt_id
                                 ,rpt_row_id
                                 ,rpt_col_id
                                 ,col1
                                 ,col2
                                 ,col3
                                 ,col4
                                 ,col5
                                 ,col6
                                 ,col7
                                 ,col8
                                 ,col9
                                 ,col10)
          select ''##as_on_dt##''
                ,6000100
                ,1
                ,1
                ,rownum sr_no
                ,v.*
          from (select e.IECD
                      ,(e.IMPORTER_NAME||' '||e.IMPORTER_ADDRESS)  <-- HERE
                      ,(e.IMP_LIC_NO||' '||e.IMP_LIC_DT)           <-- HERE
                      ,e.IMP_ITEMS
                      ,e.IMP_REMIT_DT
                      ,e.IMP_REMIT_AMT_CCY_ID
                      ,e.IMP_REMIT_AMT_CCY
                      ,e.IMP_REMIT_AMT_RS
                      ,e.REM
                from  rm_bef e
                where e.as_on_dt = ''##as_on_dt##''
                and   e.bef_default_id = '1'                       <-- HERE
                and   e.cust_type = '2'                            <-- HERE
               ) v'
        ,'select rownum "Sr_No"
                ,(IMPORTER_NAME+IMPORTER_ADDRESS) "Name and address of the importer"
                ,(IMP_LIC_NO+IMP_LIC_DT) "No. and date of import licenses if any"
                ,IMP_ITEMS "Brief Description of goods"
                ,IMP_REMIT_DT "Date of reimittances"
                ,IMP_REMIT_AMT_CCY_ID "Currency"
                ,IMP_REMIT_AMT_CCY "Amount"
                ,IMP_REMIT_AMT_RS "Rupee Equivalent"
                ,rem "Remarks"
          from (select e.IECD
                      ,(e.IMPORTER_NAME||' '||e.IMPORTER_ADDRESS)  <-- HERE
                      ,(e.IMP_LIC_NO||' '||e.IMP_LIC_DT)           <-- HERE
                      ,e.IMP_ITEMS
                      ,e.IMP_REMIT_DT
                      ,e.IMP_REMIT_AMT_CCY_ID
                      ,e.IMP_REMIT_AMT_CCY
                      ,e.IMP_REMIT_AMT_RS
                      ,e.REM
                from  rm_bef e
                where e.as_on_dt = ''##as_on_dt##''
                and   e.bef_default_id = '1'                       <-- HERE
                and   e.cust_type = '2'                            <-- HERE
        ,'14'
from  dual
where not exists (select 1 from rp_rpt_sql where rpt_id=6000100);... though why you are storing SQL statements in a table, I don't know. Ever heard of SQL injection?

Similar Messages

  • Insert error message into session

    hi all,
    I need to Insert error message into the log of SM35 session.
    1. I have created a BDC that creates a session in SM35.
    2. The session is scheduled daily and gets executed automatically.
    3. there is a scenario where the session should be stopped manually with a error message.
    the system doesnt generate any error automatically for that scenario
    can any one pls tell me whether its possible to put a manual error into SM35 session log ?
    Thanks in Advance,
    Santhosini

    Hi,
    There's a few ways you could do this;
    Construct your message first (i.e. combine the message text and variables into one string, then move this into the table)
    or
    Don't store the text, instead store the message ID, number and variable parts of the message.  This has the advantage if you're running a multi-language system the log can be used by users of different languages.
    Regards,
    Nick

  • SQL Insert Error Error in allocating a connection. Cause: No PasswordCreden

    Friends,
    While testing my connection in the Sun java Application Server , I get the following error .
    "SQL Insert Error Error in allocating a connection. Cause: No PasswordCredential found "
    Can somebody please guide ?
    regards
    Dhiraj

    If you are using Netbeans, then this link might help:
    http://forum.java.sun.com/thread.jspa?forumID=136&threadID=598423
    Otherwise, have you try this ?
    Verify your sun-ejb-jar.xml does not use default-resource-princinpal element:
    <res-ref-name>jdbc/pdisasdb</res-ref-name>
    <jndi-name>jdbc/pdisasdb</jndi-name>
    <default-resource-principal>
    <name>myname</name>
    <password>geheim</password>
    </default-resource-principal>
    </resource-ref>

  • I am getting ORA-20001: Seed insert error while seed translatable text step

    Hi,
    I am getting this error while English to Arabic translation in the Seed translatable text step
    ORA-20001: Seed insert error: WWV_FLOW_ICON_BAR.ICON_IMAGE_ALT ORA-00001: unique constraint (APEX_030200.WWV_FLOW_TRANSLATABLE_TEXT_PK) violated
    Can i get any suggetion from your side.
    Thanks,
    nar

    Did you ever figure this out. Because I also have this error.

  • Insert error in master-detail form

    Probably a stupid question. When I populate the master block of
    a master detail form from an LOV, I am asked to save the form.
    Since the information is loaded from the LOV, there are no
    changes to save. If I answer yes, it gives an Insert error due
    to the primary key violation in the master block table. If I
    answer no, it opens the detail block and gives the correct
    information. The problem is that when I enter information into
    the detail block and try to save it, I get the same error
    message regarding the primary key violation in the master block.
    The form works fine if I do not populate the master block from
    the LOV (or from select statements in triggers). Any suggestions
    will be appreciated.
    LS

    Hi,
    Check for the form or block status.Looks like the status has
    changed.Thats why u r getting the message.If any of the base
    table item has changed then u will get such a message.Try
    working on this an check it out.
    Thanks
    Vinod

  • 750GB Seagate External Drive - Disk Insertion error

    I have two 750 GB Seagate External hard drives, which are daisy chained to my PowerMac G5. I was transfering files between external hard drives, when all of a sudden the computer crashed. Once I restarted, the computer gave a disk insertion error:
    Disk Insertion
    The disk you inserted was not readable by this computer.
    The options are: "Initialize..." "Ignore" and "Eject"
    One of the external hard drives is fine, the one which was directly hooked up to the computer. However, the drive that was daisy chained still gives this error. I have tried connecting the drive to another mac, but it still gave this error. I also tried connecting it to a PC, and it was detected, but it did not show up under "My Computer."
    Is there a way that I could save or re-format the hard drive WITHOUT loosing the data?
    Please let me know. This is very urgent. I have a lot of important data on the hard drive. Any help/ideas/suggestions are greatly appreciated. Thank you very much.

    Hello! Sometimes a large file transfer will lock or crash a computer. With a crash or hard restart the disk's directory is damaged and if disk utility can't repair it then DISKWARRIOR is about the only utility that can fix the problem. The data usually isn't gone. The disk's directory (road map) of where every piece of info is located on the drive has become corrupt hence there's nothing for it to find. Diskwarrior is the best utility for repairing the directory. Regular use of DW will prevent "most" disk problems as it's the directory that gets messed up rather than a physical problem with the disk in most cases. In cases where DW can't fix the problem DataRescue II can sometimes recover valuable data. Tom

  • How do I resolve a disk Insertion error?

    Hello and thank you,
    I recently upgraded my G4 to The tiger OS. All went smooth during the upgrade but, when the computer restarted both of my 17.1 gb quantum Atlas hard drives went missing and I received two disk insertion errors. I selected initialize but was unable to select any options in the disk utilities. Both hard drives still appear.
    I decided to restarted my computer but this time my mac froze on the gray screen and told me to restart once more. I shut it down unplugged all cables and disconnected the hard drives thinking these where the problem and powered up. I saw a file folder with a question mark then it operated as normal.
    After some experimenting I've deduced that when both hard drives are connected the G4 will freeze at the gray screen 75% of the time. If both Hard drives are not connected the machine will run fine with the exception of showing the question mark file.
    Is there a way to have my mac recognize the two hard drives or is tiger not compatible with these hard drives?

    To cure the question mark at startup problem...
    System Preferences>Startup Disk, then select your boot drive.
    What kind of cases are these drives in? FW, USB, Internal, Other?

  • SQL 2005 Insert Error

    Hi Folks-
    It has been a while and I hope this finds you all doing well. 
    I am working oin a customer application and we are experiencing intermitment MS SQL 2005 insert errors.  We have isolated the cause as the use of the special character, the apostrophe (i.e. " " ") in a material/item description.  The underlying MES application can accept the apostrophe along with the SAP MM back-end, but not MII,  The MII version is 12.0.6 Build 14.  The application also uses the Java Plug-in version 1.6.0_07, which is also the Java Runtime version.  I am not sure of the SQL jdbc being used but was hoping that perhaps there was a version that could "handle" this special character issue or if there was a non-programmatic way to address this.  At this point we are anxious about changing Master Data.
    Any insights or suggestions would be appreciated.  Thanks in advance and I look forward to your responses.
    Kevin Fitzgerald
    Invensys Operation Management

    Hi Kedar-
    This is great information and I thank you for your insights.  I do have what I hope are 2 brief follow-on questions:
    1. Does the single quote/apostrophe represent a general escape character that can be used in all cases?  Are there others (i.e. \n, etc.)
    2. Your special characters cited above do not include the asterik, *.  My customer has also decided to use this special character in a new product description (go figure!!).  Can this be "escaped out" via the same means?
    I have been able to successfully use the java function stringreplace to alter the text as you suggest- even for a local and I hope transaction variable.  Any additional comments per my questions above would certainly advance the cause.
    Thanks again and I look forward to your comments.  Take care and be safe.
    Kevin

  • Inserting error: 100500: non-ORACLE exception

    Hi,
    I have bunch of inserts in post_update trigger in Forms. When I commit the changes , i notice the error message inserting error: 100500: non-ORACLE exception. I have 6 inserts and only one insert is fired. Please help. I am using forms 6.0.8
    Thanks,

    Hi,
    Thanks for the help. I had 6 inserts in one stored proc hence the problem. I split it into 3 different procs and it works now.Thanks Again.
    I didn't have any call to next-record etc...

  • How to Ignore Insert Errors in LKM.

    Hi,
    I would Like to know how to Ignore insert errors in Oracle Data Integrator (Something like flat file mechanism, where the errors are located into .bad and .error files). If My Step 'insert new records' thrown an error regarding to Wrong Data, Constraint, etc. I would like to redirect the records with error to another location without affect the performance.
    is this possible throws Interface configuration or something like that?
    Thanks in advance.

    Thanks for your reply. there is 'deprecation warnings' under Project Properties--> Compiler. These errors are not deprecation errors.
    The below code doesn't help either.
    <jsp-config>
    <jsp-property-group>
    <url-pattern>*.jsp</url-pattern>
    <el-ignored>false</el-ignored>
    </jsp-property-group>
    </jsp-config>

  • G5 comes up with Disk Insertion Error

    My G5 will mount CDs and software DVDs without a problem but now when I insert a film DVD I get the 'Disk Insertion Error' and the disk won't mount. The disk appears when I run the Disk Utility but I can't do anything with it.
    Help!!!!!

    HI Tom,
    The error message that you are receiving indicate that your notebook is attempting to boot from the LAN connection rather than from its own hard drive or CD-ROM. I suggest you check that the boot sequence is correctly specified in your BIOS, or alternatively press F12 during your power on and you should get the boot device sequence menu appear so that you can specify that you want to boot from your hard drive.
    regards,

  • How can I debug a Bulk Insert error?

    I'm loading a bunch of files into SQL server.  All work fine, but one keeps erroring out on me.  All files should be exactly the same in structure, but they have different dates, and other different financial metrics, but the structure and field
    names should be exactly the same.  Nevertheless, one keeps konking out, and throwing this error.
    Msg 4832, Level 16, State 1, Line 1
    Bulk load: An unexpected end of file was encountered in the data file.
    Msg 7399, Level 16, State 1, Line 1
    The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.
    Msg 7330, Level 16, State 2, Line 1
    Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
    The ROWTERMINATOR should be CRLF, and when you look at it in Notepad++ that's what it looks like, but it must be something else, because I keep getting errors here.  I tried the good old:  ROWTERMINATOR='0x0a'
    That works on all files, but one, so there's something funky going on here, and I need to see what SQL Server is really doing.
    Is there some way to print out a log, or look at a log somewhere?
    Thanks!!
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    The first thing to try is to see if BCP likes the file. BCP and BULK INSERT adhere to the same spec, but they are different implementations, but there are subtle differences.
    There is an ERRORFILE option, but it more helps when there is bad data.
    You can also use the BATCHSIZE option to see how many records in the file it swallows, before things go bad. FIRSTROW and LASTROW can also help.
    All in all, it can be quite tedious find that single row where things are different - and where BULK INSERT loses sync entirely. Keep in mind that it reads fields on by one, and it there is one field terminator to few on a line, it will consume the line
    feed at the end of the line as data.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Value Mapping Insert Error

    Hi
    I am sendind an item value mapping from R3 to XI and I get this error:
    <ns:ValueMappingReplicationFault xmlns:ns="http://sap.com/xi/XI/System">
    - <standard>
      <faultText>A value is missing for content of Identifier in item 0.</faultText>
    - <faultDetail>
      <text />
      <id>7</id>
      </faultDetail>
      </standard>
    - <addition>
      <ItemNr>0</ItemNr>
    - <Item>
      <Operation>Insert</Operation>
      <GroupID>037dd9b01a3111da8abef522ac127968</GroupID>
      <Context>http://sap.com/xi/XI</Context>
      <Identifier scheme="BS_PEPE" agency="Company" />
      </Item>
      </addition>
      </ns:ValueMappingReplicationFault>
    The code in R3 is this one
    REPORT  Z_XI_REPLICATE_VALUE_MAPPING.
    data: My_ZCO_MI_CONSULTA_SERIAL type ref to
                    CO_SVMR_VALUE_MAPPING_REP_SYNC,
          in type SVMR_VALUE_MAPPING_REP_RESP,
          out type SVMR_VALUE_MAPPING_REPLICATION,
          vIdentifier type SVMR_VALUE_MAPPING_IDENTIFIER,
          vItem type SVMR_VALUE_MAPPING_REP_ITEM,
          vItemLst type SVMR_VALUE_MAPPING_REP_TAB,
          vList type SVMR_VALUE_MAPPING_REP_LIST,
          lo_sys_exception   TYPE REF TO cx_ai_system_fault.
    try.
        create object My_ZCO_MI_CONSULTA_SERIAL.
        vIdentifier-scheme = 'BS_PEPE'.
        vIdentifier-agency = 'Company'.
        vIdentifier-value = '122'.
        vItem-Group_id = '037dd9b01a3111da8abef522ac127968'.
        vItem-operation = 'Insert'.
        vItem-context = 'http://sap.com/xi/XI'.
        vItem-Identifier = vIdentifier.
        append vItem to vItemLst.
        vList-item = vItemLst.
        out-VALUE_MAPPING_REPLICATION = vList.
        call method My_ZCO_MI_CONSULTA_SERIAL->EXECUTE_SYNCHRONOUS
          EXPORTING
            output = out
          IMPORTING
            input  = in.
      CATCH cx_ai_system_fault INTO lo_sys_exception.
        write: /'Error Text   --> ',lo_sys_exception->errortext.
        write: /'Error Code   --> ',lo_sys_exception->code.
        exit.
    ENDTRY.
    write: /'ESN_STATUS --> ',in-STATUS.
    The message sent to XI and I see in the sxmb_moni in R3 is this one
    <?xml version="1.0" encoding="utf-8" ?>
    - <nr1:ValueMappingReplication xmlns:nr1="http://sap.com/xi/XI/System">
    - <Item>
      <Operation>Insert</Operation>
      <GroupID>037dd9b01a3111da8abef522ac127968</GroupID>
      <Context>http://sap.com/xi/XI</Context>
      <Identifier scheme="BS_PEPE" agency="Company">122</Identifier>
      </Item>
      </nr1:ValueMappingReplication>
    When I try to delete a Group it works but not when I want to insert an individual item.
    What am I doing wrong?
    Thanks
    Regards

    Hi
    There is a field call CONTROLLER with this structure:
    FIELD     FIELDNAME     CHAR     30     0     Field Name
    VALUE     PRX_CONTR     CHAR     1     0     Field Control in XML Data Stream (=> Type Group SAI)
    But in SAP documentacion does not say any references to this field and how to fill them.
    I am asbolute sure I filled all the mandatory fields.
    Thanks
    Regards

  • No Card Inserted Error

    Got a clicker-wheel iPod and it's playback of music is being interrupted by sporadic freezing when the unit goes into some sort of photo download routine and then comes up with error "No Card Inserted". I see there are others out here with this issue, but there seems to be no answers...from the community nor from Apple. Is there a fix posted somewhere that I've not scoured?
    And the 5-R's don't do it. I'm on iPod software 3.1.1 (the latest). I've got Photo Import set to OFF on the iPod...why do I even have this dang option since this iPod doesn't even do photo's? Perhaps, APPLE, this is the bug??? Can it be so simple?
    Bummed and frustrated in Oakland,
    Michael
    G4 DA and Pismo     Panther and Tiger

    I have the same problem, it started right after I plugged into a Logiix charger that a bud had. His ipod is also suffering the same problem. Too bad for me we figured this out later. Have you ever plugged into a non Apple charger?
    I also tried reloading an older version to no avail as it gave me the error message when I disconnected the ipod from the computer.
    Is there a way to completly clear the ipod hard drive, other than a restore.

  • "Disk Insertion" error message... and well, no disk!

    hi
    i just removed Office 2004 from my Mac (having switched over to Mail) and upon restarting my MacBook, i now get the following error message:
    *Disk Insertion*
    *The disk you inserted was not readable by this computer.*
    i can select EJECT or IGNORE.
    the problem is that... no disk is inserted and i did not try to insert any either!
    clicking EJECT just has the message disappear to reappear a few seconds later.
    clicking IGNORE gets rid of it, but it is there again after the next restart.
    everything else runs fine.
    any clues?
    thx =) dominique

    Problem disappeared after a complete shut down and restart. as opposed to simply restarting which was what i had done previously.
    =)

  • Disk Insertion error when logging in (Xsan mounting)

    Recently we rebuilt on of our users machine from scratch to get it up to snow leopard (SL). I installed the Xsan software 2.2 and had a coworker in assist in getting our Xsan mounted to this computer through the MDC. Before evening mounting the Xsan, I got about 8 to 12 "The disk you inserted was not readable by this computer." errors and it asked if I wanted to initialize, ignore, eject. Hitting initialize just takes me to disk utility and does nothing. It does list the Xserve and all its drives, etc. At first it did not mount the Xsan at all, but through some configuring I was able to get it to mount. I how ever am getting about 2 prompts with this same error (The disk you inserted was not readable by this computer.)
    I've issued the DF command in terminal and it does not show any weird volume references or other volumes that are there but not mounting. Here is the results:
    Filesystem 512-blocks Used Available Capacity Mounted on
    /dev/disk0s2 624470624 238623832 385334792 39% /
    devfs 228 228 0 100% /dev
    map -hosts 0 0 0 100% /net
    map auto_home 0 0 0 100% /home
    map -fstab 0 0 0 100% /Network/Servers
    /dev/disk6 35163013120 12861455936 22301557184 37% /Volumes/VideoSAN
    //12.domainname.net/Home$ 8790237176 2280266896 6509970280 26% /Volumes/Home$
    //12.domainname.net/Office$ 8790237176 2280266896 6509970280 26% /Volumes/Office$
    //12.domainname.net/Public$ 8790237176 2280266896 6509970280 26% /Volumes/Public$
    I also took a look on the local box in console and noticed in the log for this machine that it was trying to mkdir pretty consistently. Not sure if they are related or not. Here is a snapshot of that.
    Jan 8 12:07:03 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:07:33: --- last message repeated 1 time ---
    Jan 8 12:07:33 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:08:03: --- last message repeated 1 time ---
    Jan 8 12:08:03 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:08:33: --- last message repeated 1 time ---
    Jan 8 12:08:33 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:09:03: --- last message repeated 1 time ---
    Jan 8 12:09:03 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:09:33: --- last message repeated 1 time ---
    Jan 8 12:09:33 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:10:03: --- last message repeated 1 time ---
    Jan 8 12:10:03 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:10:33: --- last message repeated 1 time ---
    Jan 8 12:10:33 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Jan 8 12:11:03: --- last message repeated 1 time ---
    Jan 8 12:11:03 whitemanj-adc xsand[31]: mkdir '/Volumes/VideoSAN': File exists
    Sorry for not more details. Its been a few days since I have been able to work on this issue, *how can I get rid of this error every time the user logs in?* Any help or insight would be awesome. Thanks.

    This all had to do with the user folder permissions and how they were nested. Our Sharepoints had the user folders several levels down. On Windows machines, the user folders could be mounted, even if the user did not have permissions on the parent folders. It seems Macs need Read & Execute access all the way down the line.
    So, to do that, I gave Read & Execute access per folder (not propagating to child folders), all the way down the nested string until I came to the directory that housed all the home folders. This seemed to solve the issue. I'm guessing the "Sync" error message had something to do with the fact that when authenticating to an Active Directory server and mounting a network home folder, the Active Directory plugin in Tiger needs to read from the sharepoint, all the way down to the location of the home folder.
    Our nesting now looks like this:
    Say the username is Fred and Students is our sharepoint.
    Students -> Users -> 2009 -> Fred
    (R&E) (R&E) (R&E) (R&W)
    Each of the R&E permissions were applied individually to avoid prorogation using groups.

Maybe you are looking for

  • Newstand in the Enterprise

    We're testing iPads in my company. We'd like to "push" some documents on our employee's iPad. Is there a solution for pushing a document in Newstand ? The document is purely internal. We don't want to get the doc available in "Newstand Store" for eve

  • I can't log into to my icloud because it asks for apple id but then says that apple id is not the same as the icloud id

    I just signed up for icloud.  I previously had itunes on my old computer.When I went to sign up to icloud it told me my password was wrong so I changed it.  When I went to sign into icloud (after installed)  It told me I have to log in using my Apple

  • NEW 9I RMAN: BACKUP OPTIMIZATION AND RETENTION POLICIES

    제품 : RMAN 작성날짜 : 2004-05-20 NEW 9I RMAN: BACKUP OPTIMIZATION AND RETENTION POLICIES ======================================================= 오라클 9i RMAN 에서는 백업을 보다 효율적으로 할 수 있는 기능을 보강 했다. 지금 소개할 "Retention Policies" 기능을 통해서 보다 효율적인 RMAN 백업 전략을 세울 수 있다

  • Why the checkmark in the Canvas window

    This will be, by far,the dumbest question you have ever seen but how do I get rid of the Green checkmark in the canvass window. Also, what does it mean? I'm at the bottom of the learning curve here. Please bear with me here and humour me.

  • Why do i have to pay for os x 10.8.4 update

    Just got new mac mini os x 10.8.3 software, gone online to update and had to pay for os x 10.8.4! Why