Is it possible to use JPA Catalog & Schema in MySQL?

Dear All,
Could anyone explain the difference between JPA Catalog and Schema when using MySQL database? Below is an example where I have successfully used both Catalog and Schema to reference different databases:
@Table(name="CUSTOMER", catalog="catalogName", schema="")  // Worked
                                      or
@Table(name="CUSTOMER", catalog="", schema="schemaName")  // Worked
                                   but NOT
@Table(name="CUSTOMER", catalog="catalogName", schema="schemaName") which resulted the following database exception:
JDO76609: Got SQLException executing statement "CREATE TABLE catalogName.schemaName....
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException...
Not sure whether MySQL support the use of both Catalog and Schema at the same time, or do they both mean the same thing which is just database instances? In other word, it does not support the idea of defining a Catalog within a Schema, or vice versa. Likewise, MySQL seems to use Catalog/Schema as database instance interchangeably with both on the same level. This means that an application will likely be required to create many database instances to be used in place of Schema.
My understanding of the use of Catalog and Schema would be: catalogName.schemaName.CUSTOMER or schemaName.catalogName.CUSTOMER but does not reflect how MySQL work.
It would be interesting to hear from others who has used MySQL as the underlying JPA database.
Thanks a lot,
Jack

I use Photoshop Elements 3 ("Elements" not "Album"). I wasn't aware of an upgrade to PSE 3.2. If I upgrade will the Catalog be converted to a form that is compatible with PSA SE 3.2?

Similar Messages

  • Possible to use SAX2 with schema validation

    I am trying to wade through various options on validation.
    Is it possible with the Oracle schema validation code to use SAX2 as the underlying parser? The example code with the 9.0 XDK uses DOM.

    Yes, you don't have to use DOM parser.
    DOM is only needed for validating Identity constraints that require the tree.

  • Is it possible to use List Type in XML schema within the SOA Rule author?

    Is it possible to use List Type in XML schema within the SOA Suite Rule author? The reason is that with the following XSD, Rule author generates XML facts of type "List" for the element "ResultSet". Basically I want to check the Input facts (Input1, Input2, Input3) for some conditions and then assign action to the element Resultset of type List (array). The output Resultset can contain multiple values based on the input facts. My problem is that I am unable to see the ResultSet in the "Assign" action type of the action block. Is it possible to use the Resultset of type List with the Rule author or is there any limitation on the rule author and any workaround for this?
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestMultipleOutputs"
    elementFormDefault="qualified">
    <element name="TestMultipleOutputs">
    <complexType>
    <sequence minOccurs="0">
    <element name="Input1" type="string" minOccurs="0"/>
    <element name="Input2" type="string" minOccurs="0"/>
    <element name="Input3" type="string" minOccurs="0"/>
    <element name="ResultSet" type="string" minOccurs="0"
    maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    --Thanks a lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Richard,
    I have slightly modified the xml schema you suggested and was able to import into the rule author. the following is the modified XSD. Rule Author created a List type for the "ResultSet" . I still don't see "Resultset" in the assign action, so I tried creating RL function in order to assign the output to the "Resultset", but was unsuccessful so far. can you please let me know how to populate the resultset with the output values? Thanks a lot.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema attributeFormDefault="unqualified"
    xmlns:ns1="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:tns="http://www.oracle.com/ns/TestComplexOutputs"
    elementFormDefault="qualified">
    <xsd:element name="TestComplexOutputs">
    <xsd:complexType>
    <xsd:sequence minOccurs="0">
    <xsd:element name="Input1" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input2" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input3" type="xsd:string" minOccurs="0"/>
    <xsd:element name="ResultSet" type="tns:ResultSetType" minOccurs="0"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:complexType name="ResultSetType">
    <xsd:sequence>
    <xsd:element name="ResultSet" type="tns:ResultSetStructure" minOccurs="1"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ResultSetStructure">
    <xsd:sequence>
    <xsd:element name="ErrorReason">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string"/>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>

  • Using JPA Entity-Objects defined in other EJB-Development Component

    Hello Community,
    I'm working on a Java-Application on NW CE 7.1, using JEE5 Beans in the Business-Logic-Layer and WebDynpro/Java in the UI-Layer.
    I designed a Bean for working with data, stored in a database-table of the system-database.
    For that addtionally i created a class, representing the Entity-Object, in the same Development-Component of Type EJB 3.0.
    It looks like this:
    @NamedQueries ({
         @NamedQuery (name="findAllSdCust", query="SELECT c from SdCust c ORDER BY c.kdnr"),
         @NamedQuery (name="findSdCustByKdnr", query="SELECT c from SdCust c WHERE c.kdnr = :kdnr"),
         @NamedQuery (name="findSdCustByIlnnr", query="SELECT c from SdCust c WHERE c.ilnnr = :ilnnr")
    @Entity
    @Table(name="ZKALL_SD_CUST")
    public class SdCust implements Serializable {
         @Id
         @TableGenerator (name="idGenerator", table="ZKALL_ID_GEN", pkColumnName="GEN_KEY", valueColumnName="GEN_VALUE", initialValue=100)
         @GeneratedValue (strategy=GenerationType.TABLE, generator="idGenerator")
         private long id;
         private String name;
         private String lname;
         private String kdnr;
         private String ilnnr;
         private long connid;
         private long cnt;
         @Version
         private long version;
          Constructor, Getter and Setter methods follow here
    The corresponding bean looks like this
    @Stateless(name="SdCustBean")
    public class SdCustBean implements SdCustLocal {
         @PersistenceContext (unitName="xyz")
         private EntityManager em;
         public SdCust getSdCustByKdnr (String kdnr)
              SdCust result = new SdCust();
              // List<Manufacturer> resultList = new ArrayList<Manufacturer>();
              Query  myQuery = em.createNamedQuery("findSdCustByKdnr");
              myQuery.setParameter("kdnr", kdnr);
              result = (SdCust) myQuery.getSingleResult();
              return result;
         public void setEM (EntityManager iem)
              em = iem;
           // other methods .....
    After that i created a new Development-Component of Enterprise Application-Type and added above DC to this EAR-DC. I also supplied the nessecary descriptor-files/Enries in EJB-DC and EAR-DC.
    When now using this bean from WebDynpro with the Web-Dypro EJB-Model-Import everything works fine.
    The bean returns the desired object(s).
    But now i created a new DC of type EBJ 3.0
    This DC contains a Message Driven Bean. That MDB is a Job-Bean which i want to schedule. That  Bean uses JRA to connect to an SAP-Abap-System to read some Data and should use JPA to insert/upate/delete the read data in the Database. This should work as a simple replication for my application.
    I assigned that EJB-DC containing the MDB to a new EAR-DC together with job-definition-xml and the neccessary entries in deployment-descriptors.
    After deploying i see the corresponding job-defition in the NW scheduler using the administrator-views.
    I'm also able to schedule the job and it executes fine. Connecting to SAP-Abap System also works fine using JRA.
    But JPA does not work!!!!!
    I created an dependency from my EAR-DC containing the Job EJB-DC and to the EJB-DC containing the Entity-Class.
    I tried three diferent things to get i running, but all of them failed.
    1.)
    The part  looks like:
    public class MasterDataReplicateJobBean extends MDBJobImplementation implements MessageListener
      @EJB SdCustBean mybean;
       public void onJob(JobContext ctx) throws Exception {
            SdCust sdCust = mybean.getSdCustByKdnr (mykdnr);
    Compiles fine. But this fails because the Data is stored in the system-database. The exception says, that i have to use a datasource which supports 2-Phase commit. I know, that i could possibly solve this problem by annotation the Method getSdCustByKdnr with the Annotation for the Transaction-Manager to use REQUIRES_NEW Transaction. But i dont want to generally annotate my methods this way.
    2.)
    This part looks like this
    public class MasterDataReplicateJobBean extends MDBJobImplementation implements MessageListener
    @PersistenceContext (unitName="xyz")
    private EntityManager em;
       public void onJob(JobContext ctx) throws Exception {
         SdCust cust = new SdCust();
         Query  myQuery = em.createQuery("SELECT c from SdCust c WHERE c.kdnr = :kdnr");
         myQuery.setParameter("kdnr", dbkdnr);
         cust = (SdCust) myQuery.getSingleResult();
    This also results in a runtime-exception because the entity-Manager cant resolve SdCust from the Query as an Object. The Exception is:
    java.lang.IllegalArgumentException: line 1: Abstract Schema Type 'SdCust' doesn't exist
    SELECT c from SdCust c WHERE c.kdnr = :kdnr
    3.) and last try so far:
    public class MasterDataReplicateJobBean extends MDBJobImplementation implements MessageListener
    @PersistenceContext (unitName="xyz")
    private EntityManager em;
       public void onJob(JobContext ctx) throws Exception {
         SdCustBean custBean = new SdCustBean();
         custBean.setEM(em);
         SdCust cust = custBean.getSdCustByKdnr(kdnr);
    In this example i use the Bean from the beginning not as a bean itself but as a normal class. that class has an addtional Method setEM to set the Entity-Manager (which is injected when using the class as a bean)
    In that way i got the exception, that the named Query "findSdCustByKdnr" cannot be found by the entity-manager.
    It seems to me, that i can access the class, but that all annotations belonging to JPA for that class are not recognized.
    Does anybody can give me a hint to solve this problem? Did i forgot something important?
    best regards
    matthias hayk
    Edited by: Matthias Hayk on Feb 5, 2009 9:38 AM

    I was already on wright trace.
    My class "SdCust" was not recognized by the Entity-Manager as an Entity-Class.
    This relies on the storage of the entity-class and where the Entity-Manager looks for entity-classes.
    By default it seems to look for all classes in the same jar file. thats the reason why everything works fine when the using bean and the entity-class are in the same project.
    In my last case, the using bean is in another  development-component and so also in anohter jar file. in this case the entity-manager must be told where to find entity-classes.
    this is done in the persistence.xml file.
    i added the line
    <jar-file>xxx.yyy.com~mdata_beans.jar</jar-file>
    underneath the <persistence-unit>-tag.
    This works.
    regards
    Matthias Hayk

  • Possible to use parameters in MDX Studio?

    Is it possible to use parameters in MDX Studio? I've tried using SSRS2008 for query design but...
    SSRS2008 query designer complains that parameters do not exist when they quite obviously do ( in the report)
    LaCie drives. Failing when you need them most."La" meaning "Terrible", "Cie" meaning "customer service"

    You can declare parameters in XMLA format after the MDX query - see examples in this post:
    Bug v2.9.1: Parametric queries parsing and debugging errors
    WITH MEMBER [Measures].[Profit] AS '[Measures].[Sales Amount]-[Measures].[Standard Product Cost]' SELECT NON EMPTY { [Measures].[Internet Sales Amount], [Measures].[Internet Total Product Cost], [Measures].[Internet Order Quantity] } ON COLUMNS, NON
    EMPTY { ([Sales Reason].[Sales Reason].[Sales Reason].ALLMEMBERS * [Sales Territory].[Sales Territory Group].[Sales Territory Group].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME, [Sales Reason].[Sales Reason].[Sales Reason].KEY, [Sales
    Territory].[Sales Territory Group].[Sales Territory Group].KEY ON ROWS FROM ( SELECT ( STRTOSET(@ProductCategory, CONSTRAINED) ) ON COLUMNS FROM [Adventure Works]) WHERE ( IIF( STRTOSET(@ProductCategory, CONSTRAINED).Count = 1, STRTOSET(@ProductCategory, CONSTRAINED),
    [Product].[Category].currentmember ) ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
    <Parameters xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:xsd="www.w3.org/2001/XMLSchema"
    xmlns="urn:schemas-microsoft-com:xml-analysis">
    <Parameter>
    <Name>ProductCategory</Name>
    <Value xsi:type="xsd:string">{ [Product].[Category].&amp;[1],[Product].[Category].&amp;[2] }</Value>
    </Parameter>
    </Parameters>
    <PropertyList xmlns="urn:schemas-microsoft-com:xml-analysis">
    <Catalog>Adventure Works DW</Catalog>
    <LocaleIdentifier>1033</LocaleIdentifier>
    <Format>Tabular</Format>
    <Content>SchemaData</Content>
    <Timeout>0</Timeout>
    <ReturnCellProperties>true</ReturnCellProperties>
    <DbpropMsmdFlattened2>true</DbpropMsmdFlattened2>
    </PropertyList>
    - Deepak

  • Is it possible to change the owning schema when generating datetime dimensions in the datasource?

    When creating a date time dimension using the dimension wizard and generate schema wizard, i would like to be able to change the owning schema from dbo to something else. The field is greyed out and I am unable to change it.
    Is it possible to change the owning schema when generating datetime dimensions in the datasource?

    Hi rkbjr,
    Thank you for your question.  
    I am currently looking into this issue and will give you an update as soon as possible. 
    Thank you for your understanding and support. 
    Thanks,
    Bin Long
    TechNet Subscriber Support
    If you are TechNet Subscription user and have
    any feedback on our support quality, please send your feedback here.
    Bin Long
    TechNet Community Support

  • HANA Studio: Filter more than one catalog schema

    Hi,
    Simply a usability question: Is it possible to filter a list of schemas in the catalog folder of HANA studio. I see only, that I can filter one pattern of a schema name. I would like to reduce the visible schemas in the catalog folder according to an arbitrary free to be chosen list of schemas.
    Did I miss something?
    Thanks,
    Ingo

    Hello Ingo Peter,
    Very interesting question but I really doubt if it is possible!
    Even giving 2nd Schema name will overwrite the earlier filtered Schema
    BR
    Prabhith

  • Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic?

    Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic? Or do you have to install an external WebLogic?
    Thanks for help.
    Edited by: user7722720 on 07-Dec-2011 02:04

    Hi
    By default, NO it is NOT possible to deploy any SOA Applications on Integrated Weblogic Server that comes with JDeveloper. This integrated weblogic server is very light weight basic weblogic server with single domain (only 1 AdminServer) to deploy a standard J2EE, ADF Applications like EJBs, WebApps, WebServices, ADF Apps etc. BUT SOA (having BPEL, BPMs etc ) cannot be deployed.
    There is an option to upgrade this integrated weblogic server and install SOA on top of this. Like download soa installer that matches with your JDeveloper version and install soa on top of this weblogic. BUT I strongly do not recommend this, because you will not be able to upgrade iin future to the latest versions.
    Yes, its always better to install the standalone Weblogic Server that matches with your JDeveloper version. Then install SOA on top of this Weblogic Server. Then create RCU Schemas in any Oracle Database. Run config wizard and create a SOA Domain. Now integrate this in your JDeveloper to deploy any soa applications.
    Make sure that JDeveloper, Weblogic Server, SOA Software, RCU all these versions should match and they should be same.
    Thanks
    Ravi Jegga

  • Problem when using JPA/EJB in webservice

    I wrote a web service that use JPA/EJB to connect to Sybase (the existing tables), and deployed to OC4J, but it got the following error when the web service is invoked:
    <env:Envelope
      xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:ns0="http://prjtestws_9/types/">
     <env:Body>
      <env:Fault>
       <faultcode>env:Server</faultcode>
       <faultstring>Internal Server Error (Caught exception while handling request: java.lang.NullPointerException)</faultstring>
      </env:Fault>
     </env:Body>
    </env:Envelope>
    I have checked that, the query will return some records, and also it works fine if the program executed as a stand alone application.
    Thanks in advance

    I find that I can only have ONE webservice that using JPA/EJB for an OC4J instance, if more than one then the above error will come out, and I have to restart the OC4J instance to run another webservice that using JPA/EJB.
    Is there any solution for this issue?
    Thanks

  • "Best Practices" for using different Authentication Schemes ?

    Hi
    We are using different authentication schemes in different environments (Dev/QA/Prod). Changing the authentication scheme between the environments is currently a manual step during the installation. I am wondering if there are better "Best Practices" to follow, where the scheme is set programmatically as part of the build/ load process for a specific environment. ... or any other ideas.
    We refrained from merging the authentication schemes (which is possible) for the following reasons:
    - the authentication code becomes unnecessary complex
    - some functions required in some environments are not available in all environments (LDAP integration through centrally predefined APIs), requiring dynamic execution
    Any suggestions / experience / recommendation to share are appreciated.
    Regards,
    - Thomas
    [On Apex 4.1.0]

    t-o-b wrote:
    Thanks Vikram ... I stumbled over this post, I was more interested in what the "Work Around" / "Best Practices" given these restrictions.
    So I take it that:
    * load & change; or
    * maintain multiple exports
    seem to be the only viable options
    ... in addition to the one referred to in my questions.
    Best,
    - ThomasThomas,
    Its up-to you really and depends on many criteria +(i think its more of release process and version controlling)+.
    I haven't come across a similar scenario before..but I would maintain multiple exports so that the installation can be automated (no manual intervention required).
    Once the API is published +(god knows when it will be)+ you can just maintain one export with an extra script to call the API.
    I guess you can do the same thing with the load & change approach but I would recommend avoiding manual intervention.
    Cheers,
    Vikram

  • I have been interested in how lightroom uses the catalog so was poking around a backup of the catalog. I found it rather concerning that although the database (catalog) is pretty well designed, there is no referential integrity defined or enforced.

    I have been interested in how lightroom uses the catalog so was poking around a backup of the catalog.  I am a database administrator and I found it rather concerning that although the database (catalog) is pretty well designed, there is no referential integrity defined or enforced. This is non-standard practice and could well be the source of corrupt catalogs I have seen many people complain about. I would strongly recommend the developers modify the catalog and adopt best practices if they want to improve the stability of Lightroom and the catalog.

    I would imagine that data integrity is not enforced for performance reasons. In a closed environment like LR where the application has complete control over the data, enforcing data integrity may not be worth the performance hit. Often what is done in an environment like this is to have data integrity on in test environments which would expose data integrity bugs but where the impact of performance is low. In "production" it is then turned off to get as much performance as possible. I would say there are many more complaints about performance than corrupt catalogs. And corrupt catalogs are more likely due to interruptions in writing to the catalog (like crashes, backups or dropbox activity while LR is running, etc). Data integrity would not help in these cases as they are outside the databases control.

  • How to upload Master Catalog Schema in Catalog Content Management SRM

    Hi All,
    Please provide the solution as we are in real trouble.
    We have to delete master catalog and upload it again. Deletion is done because the mapping and all are being corrupted. SAP has suggested to delete the catalog and again upload it and do all the mapping again related to supplier and procurement catalog.
    Can all of you guide us what to do:
    1. How to delete a existing Master catalog (can de-publish will do it?)?
    2. We have the master catalog schema with us. Please tell how to upload this schema. Which link we have to follow?
    3. After uploading the master schema how we can check that master catalog is working fine.
    The answers will be rewarded with valuable points
    Regards
    Praveen K Ghosh

    Sridhar,
    I am contacting you regarding the same problem with the CCM MASTER CATALOG, as Praveen said, SAP has suggested to delete the catalog and again upload it and do all the mapping again related to supplier and procurement catalog.
    I have read the documents that you refer to at http://help.sap.com/saphelp_srm50/helpdata/en/7f/9b62405c910272e10000000a155106/frameset.htm.
    In this link I found information really useful, however according to the document the CCM MASTER CATALOG should be created automatically by the SAP Catalog Authoring Tool, this happends the first time that you are using the system.
    Catalog Creation
    You use this function to create catalogs in SAP Catalog Authoring Tool.
    You can create the following types of catalogs:
    Supplier catalogs
    Procurement catalogs
    Model service catalogs
    Note
    SAP Catalog Authoring Tool creates the master catalog, the SRM product catalog, SRM contract catalogs, and the contract catalog for service specifications automatically.
    When SAP Catalog Authoring Tool is used for the first time, you must open the Edit Catalogs application once, before you create any catalogs. Choosing Edit Catalogs triggers the creation of the master catalog. If you do not do this, SAP Catalog Authoring Tool outputs an error message when you try to create a catalog.
    We have already the Master Schema and we know how to map the CCM MASTER CATALOG to the supplier and procurement catalogs. The main problem is that we need to delete the CCM/MASTERCATALOG and created again.
    1. How delete the CCM/MASTERCATALOG?
    In a Test enviroment I have delete the CCM/MASTERCATALOG using the "Edit Catalogs" mode then choosing the catalog and confirm the deletion.
    Once this has been done, all the catalogs has been erased including the CCM/MASTERCATALOG, so now we have the system in blank. I am not sure if this is the correct way to delete the catalog or there is an easiest way where the Procurement and supplier catalogs dont dissapear once the CCM/MASTERCATALOG is deleted.
    2. Once the CCM/MASTERCATAOG is deleted how to created again?
    According to the instructions the SAP Catalog Authoring Tool should created this automatically when is used for the first time, however how we can created the CCM/MASTERCATALOG again if the SAP Catalog Authoring Tool is not used for the fist time.
    Is there a way where the system can create the CCM/MASTERCATALOG for a second time?
    I follow the steps to create the CCM/MASTERCATALOG for the first time however i didnt get a positive result.
    Any help provided will be really appreciated.
    Thanks in advance
    Carlos

  • Doubt in taking backup using RMAN CATALOG

    Hi,
    when i was using RMAN CATALOG.
    can i create separate database for catalog on server machin/backup server?
    if create separate database for catalog?
    how to create a separate database for catalog and plz give clear instruction one by one.
    thanks

    can i create separate database for catalog on server machin/backup server?
    Yes.
    and
    also you create separate user to "recovery catalog" and "separate tablespace" for recovery catalog.
    1.creation of recovery database catalog some like normal database catalog.
    but after creation of database you create one user for recovery catalog.
    Note :
    "User that owns the recovery catalog schema. This is a user defined in the recovery catalog database that has been granted the RECOVERY_CATALOG_OWNER role."
    http://download-west.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmcnctg002.htm

  • RMAN backup multiple database on multiple hosts using recovery catalog

    I would like to know if I create one schema called "rman" is enough for repository for backing up multiple database on multiple machines using recovery catalog.
    Or is there any better way to handle for reporting peposes.
    Quick response is appreciated.
    OS Solairs9.
    Oracle 9i.
    Thanks.
    Srini

    This worked perfectly fine except for putting sbt in single quotes.
    See the reults below.
    You are just great Daljith.
    Thanks and I do appreciate your help.
    Still you did not answe my question.
    How come I see backups from June and May even though they are from
    diffierent catalog database?
    RMAN> allocate channel for maintenance device type 'sbt';
    allocated channel: ORA_MAINT_SBT_TAPE_1
    channel ORA_MAINT_SBT_TAPE_1: sid=9 devtype=SBT_TAPE
    channel ORA_MAINT_SBT_TAPE_1: VERITAS NetBackup for Oracle - Release 5.0GA (200)
    RMAN> crosscheck backup;
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_2_1_624018818 recid=1 stamp=624018818
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_1_1_624018817 recid=2 stamp=624018818
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_3_1_624019733 recid=3 stamp=624019733
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_5_1_624020641 recid=4 stamp=624020642
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_4_1_624020641 recid=5 stamp=624020642
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_6_1_624020677 recid=6 stamp=624020677
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_8_1_624115253 recid=7 stamp=624115253
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_7_1_624115252 recid=8 stamp=624115253
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_9_1_624116161 recid=9 stamp=624116161
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_11_1_624117067 recid=10 stamp=624117068
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_10_1_624117067 recid=11 stamp=624117068
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_13_1_624365687 recid=12 stamp=624365687
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_12_1_624365686 recid=13 stamp=624365687
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=bk_14_1_624366605 recid=14 stamp=624366605
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_16_1_624367501 recid=15 stamp=624367502
    crosschecked backup piece: found to be 'EXPIRED'
    backup piece handle=al_15_1_624367501 recid=16 stamp=624367502
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=bk_22_1_628264333 recid=17 stamp=628264333
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=bk_21_1_628264333 recid=18 stamp=628264333
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=bk_23_1_628265249 recid=19 stamp=628265249
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=c-2926506834-20070718-00 recid=20 stamp=628266151
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=al_26_1_628266195 recid=21 stamp=628266196
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=al_25_1_628266195 recid=22 stamp=628266196
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=c-2926506834-20070718-01 recid=23 stamp=628266233
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=bk_29_1_628267004 recid=24 stamp=628267004
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=bk_28_1_628267004 recid=25 stamp=628267004
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=bk_30_1_628267919 recid=26 stamp=628267920
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=c-2926506834-20070718-02 recid=27 stamp=628268832
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=al_32_1_628268875 recid=28 stamp=628268876
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=al_33_1_628268875 recid=29 stamp=628268876
    crosschecked backup piece: found to be 'AVAILABLE'
    backup piece handle=c-2926506834-20070718-03 recid=30 stamp=628268913
    Crosschecked 30 objects
    RMAN> delete expired backup;
    List of Backup Pieces
    BP Key BS Key Pc# Cp# Status Device Type Piece Name
    11820 11804 1 1 EXPIRED SBT_TAPE bk_2_1_624018818
    11821 11805 1 1 EXPIRED SBT_TAPE bk_1_1_624018817
    11822 11806 1 1 EXPIRED SBT_TAPE bk_3_1_624019733
    11823 11807 1 1 EXPIRED SBT_TAPE al_5_1_624020641
    11824 11808 1 1 EXPIRED SBT_TAPE al_4_1_624020641
    11825 11809 1 1 EXPIRED SBT_TAPE al_6_1_624020677
    11826 11810 1 1 EXPIRED SBT_TAPE bk_8_1_624115253
    11827 11811 1 1 EXPIRED SBT_TAPE bk_7_1_624115252
    11828 11812 1 1 EXPIRED SBT_TAPE bk_9_1_624116161
    11829 11813 1 1 EXPIRED SBT_TAPE al_11_1_624117067
    11830 11814 1 1 EXPIRED SBT_TAPE al_10_1_624117067
    11831 11815 1 1 EXPIRED SBT_TAPE bk_13_1_624365687
    11832 11816 1 1 EXPIRED SBT_TAPE bk_12_1_624365686
    11833 11817 1 1 EXPIRED SBT_TAPE bk_14_1_624366605
    11834 11818 1 1 EXPIRED SBT_TAPE al_16_1_624367501
    11835 11819 1 1 EXPIRED SBT_TAPE al_15_1_624367501
    Do you really want to delete the above objects (enter YES or NO)? y
    deleted backup piece
    backup piece handle=bk_2_1_624018818 recid=1 stamp=624018818
    deleted backup piece
    backup piece handle=bk_1_1_624018817 recid=2 stamp=624018818
    deleted backup piece
    backup piece handle=bk_3_1_624019733 recid=3 stamp=624019733
    deleted backup piece
    backup piece handle=al_5_1_624020641 recid=4 stamp=624020642
    deleted backup piece
    backup piece handle=al_4_1_624020641 recid=5 stamp=624020642
    deleted backup piece
    backup piece handle=al_6_1_624020677 recid=6 stamp=624020677
    deleted backup piece
    backup piece handle=bk_8_1_624115253 recid=7 stamp=624115253
    deleted backup piece
    backup piece handle=bk_7_1_624115252 recid=8 stamp=624115253
    deleted backup piece
    backup piece handle=bk_9_1_624116161 recid=9 stamp=624116161
    deleted backup piece
    backup piece handle=al_11_1_624117067 recid=10 stamp=624117068
    deleted backup piece
    backup piece handle=al_10_1_624117067 recid=11 stamp=624117068
    deleted backup piece
    backup piece handle=bk_13_1_624365687 recid=12 stamp=624365687
    deleted backup piece
    backup piece handle=bk_12_1_624365686 recid=13 stamp=624365687
    deleted backup piece
    backup piece handle=bk_14_1_624366605 recid=14 stamp=624366605
    deleted backup piece
    backup piece handle=al_16_1_624367501 recid=15 stamp=624367502
    deleted backup piece
    backup piece handle=al_15_1_624367501 recid=16 stamp=624367502
    Deleted 16 EXPIRED objects
    RMAN> list backup summary;
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Tag
    11895 B F A SBT_TAPE 18-JUL-07 1 1 HOT_DB_BK_LEVEL0
    11896 B F A SBT_TAPE 18-JUL-07 1 1 HOT_DB_BK_LEVEL0
    11897 B F A SBT_TAPE 18-JUL-07 1 1 HOT_DB_BK_LEVEL0
    11916 B F A SBT_TAPE 18-JUL-07 1 1
    11926 B A A SBT_TAPE 18-JUL-07 1 1 TAG20070718T142315
    11927 B A A SBT_TAPE 18-JUL-07 1 1 TAG20070718T142315
    11935 B F A SBT_TAPE 18-JUL-07 1 1
    11939 B F A SBT_TAPE 18-JUL-07 1 1 HOT_DB_BK_LEVEL0
    11940 B F A SBT_TAPE 18-JUL-07 1 1 HOT_DB_BK_LEVEL0
    11941 B F A SBT_TAPE 18-JUL-07 1 1 HOT_DB_BK_LEVEL0
    11960 B F A SBT_TAPE 18-JUL-07 1 1
    11970 B A A SBT_TAPE 18-JUL-07 1 1 TAG20070718T150755
    11971 B A A SBT_TAPE 18-JUL-07 1 1 TAG20070718T150755
    11977 B F A SBT_TAPE 18-JUL-07 1 1
    RMAN>
    Message was edited by:
    user539835

  • Is clone Siebel server environment possible without using nsbrowse utility?

    Hi, can someone give me a quick firm answer about my question "Is clone Siebel server environment possible without using nsbrowse utility?" We try to automate the Siebel server enviornment using cloning and reconfig on Linux while nsbrowse is a utility only runs on Windows. Is there some command line commands that can be used as a replacement of nsbrowse editor utility? This is very important for us to made the decision on automation strategy. Thank you very much!

    "...hosted in a datacenter for high availability for when internal environment fails and the mail system is still up and running. "
    Yes, Office 365 (Exchange Online) would work perfectly with DirSync.
    If the requirement is for mail to work even when the internal environment is down, then do not implement AD FS because in that scenario, authentication is dependent on access to the domain controllers in the internal environment.
    As for simply hosting one's own server in Azure, I just read an article that recommends against it:
    - Exchange uses alot of resources. You would need a rather expensive configuration.
    - You would still be responsbile for the updates.
    - Your VPN connection would have to be very reliable. Exchange is constantly querying the domain controllers / global catalogs. EDIT - I see you wrote "without a VPN" - well, that's not possible. Exchange will never work directly across the Internet
    like that.
    I can't find the link to the article but there are others that also advise against that option:
    http://paulrobichaux.wordpress.com/2014/05/15/exchange-server-and-azure-not-now-vs-never/
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

Maybe you are looking for

  • Help: Connecting Tomcat to CA-IDMS Using JDBC Type 4 Drivers (JNDI)

    Hi there, I have a rather interesting / complex problem......creating a connection to CA-IDMS from Tomcat using JDBC type 4 drivers (CA provide the type 4 driver). We have a zSeries 9 IBM mainframe running CA-IDMS r16.1, and I need to connect to the

  • "The Connection to Microsoft Exchange is unavailable" when adding second Exchange account to Outlook 2013

    I have a problem that I've found to be typical, just haven't found anything that describes my exact problem. I'm having trouble adding a second Exchange 2010 server account to Outlook 2013 in one of the computers of the domain. Outlook 2013 will comp

  • SOAP Receiver adapter with attachments not working

    Hello, I have a simple synchronous scenario like this; ABAP proxy with attachments to SOAP with attachments. The SOAP receiver adapter has been configured with the parameters 'Do not Use SOAP envelope' and 'Keep attachments'. We create our own SOAP e

  • "Build 6002: This copy of Windows is not genuine"

    Hi everyone.. I have had my TOSHIBA Satellite L40-139 for over a year. It was bought from PC World and came with a pre-installed version of Windows Vista Home Premium. I do not have any of the disks that came with the laptop but the Windows installed

  • CP 4 not opening new tab in browser

    Without actually seeing it myself, here is a problem my client has described.  5 or 6 modules are on a website (SiteBuilder) with links. When a user clicks on a module link, the module opens and runs fine. But when the user closers the module, they a