Important changes in AC models

A few issues have come up and my ignorance of the new AC models is causing me and possibly others to make mistakes.
Some major changes happened. It is really important if you are used to using Extreme or TC to read the setup manual and not assume you know what your doing from past experience.
TC manual. http://manuals.info.apple.com/en_US/airport_time_capsule_80211ac_setup.pdf
Extreme manual. http://manuals.info.apple.com/en_US/airport_extreme_80211ac_setup.pdf
I will list the items here. Feel free to add other things you find and I can then create a user document.
The New TC and Extreme are based on different processor architecture to previous versions. The firmware is a total rewrite.. it is apparently using a fairly standard broadcom chipset much like several other brands of AC routers.
With it there are major changes.
1. Reset has changed.
The manual lists only two resets. Then hints to a third.
Soft reset like before.. a one second press of reset to remove passwords.
Hard or factory reset are rolled into one.. a five second press of reset.
The exact wording from the manual. p18-19
"Use something pointed (such as a ballpoint pen) to press and hold the reset button until the status light flashes quickly (about 5 seconds)."
So no power down.. no holding reset during a start up.. and completely different timing.
This means it will be relatively easy to mistakenly factory reset your TC or Extreme..be careful.
But here is the confusion.
The manual says if the TC is not responding to hold in reset and power on.. there is no time given. Reading what people have attempted I am not sure what it achieves. A super factory reset.. a clearing of NVRAM??
From the manual. p19
"If your AirPort Time Capsule still doesn’t respond, try the following:
1 Unplug your AirPort Time Capsule.
2 Use something pointed to press and hold the reset button while you plug in your AirPort Time Capsule."
2. DHCP on start up
When you startup the TC after a reset it should revert to getting an IP by DHCP.. but it doesn't say anywhere in the manual if this is WAN or LAN. So I will assume WAN. It does not state what mode the TC will go into. So I need help from people.. is it going back to router mode?
3. Time Machine is supported on Extreme.
Here is a surprise. According to the Extreme manual, TM is now support for a USB drive.
From the manual for extreme p13
"Using Time Machine with Your AirPort Extreme
If you connect a USB hard disk to your AirPort Extreme, you can use the Time Machine application to back up all your Mac computers, including your photos, music, movies, and documents.
After you set up Time Machine, it automatically backs up your computer on a regular basis.
Use Time Machine preferences to set up automatic backups, use a different backup disk, or adjust other settings.
To set up or adjust Time Machine on a computer using Mac OS X v10.5.7 or later: 1 Choose Apple > System Preferences, and then click Time Machine. 2 Slide the switch to ON. 3 Click Select Disk.
4 Choose your AirPort Extreme and click Use Disk.
Important: Your first backup with Time Machine could take overnight or longer, depending on how much data you’re backing up. To speed up the initial backup, connect your AirPort Extreme to your computer using Ethernet. In each subsequent backup, Time Machine backs up only files that have changed since the previous backup, so the backups don’t take as long."
4. Only airport utility 6.3 will work with the AC models.
All setup will therefore require at least Lion OS on the computer or iOS device with the latest Airport Utility.

Great stuff!  Thanks for your efforts.
I will have a new TC here in a few days to play with, so we'll see.

Similar Messages

  • Login failed error while importing an adaptive RFC model

    Hi there,
    I am trying to import a adaptive RFC model for a BAPI from a 46D system, to which I have connected using VPN from my WAS J2EE server. I have given the login details as Single server(Not load balancing), and given the user login details. However, I am not able to proceed further because it gives me the error 'Name or password is incorrect, please re-enter'. This is strange because I am giving the correct name and password, and I am able to login to this system through SAP GUI using same logon credentials.
    I am confused as to what it is expecting to move forward. I have tried changing case of the user name, restarting my WAS etc. The client is correct, and the login language is EN.
    Could anybody have any clues or have you faced a similar problem?
    thanks in advance,
    LM

    I have had the same problem.
    I think whoever programmed the logon routine at that point should be fired immediately and banned from programming for life! Logging on is a very basic and well-understood task, and programmed gozillions of times since 1940s. Common sense and unwritten rules of programming dictate simply if you make something case-sensitive, then you should accept an input in its original form (i.e. password in smalls, or whatever) but not change it to uppercase and then work case-sensitively. Either this, or you program everything case-insensitively.
    Fire that programmer or give him to us gollumvoice

  • Problem when importing the complex bean model into webdynpro

    hi all,
    when importing the complex bean model into the webDynpro, it was returning the blank.
    Thanks in advance

    Hi,
      show your code for see and understand what could be wrong.
    Here one mine example:
    The model class
    * Created on 27-ott-2006
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package tmp.userslist.comp.model.userslist;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import javax.sql.DataSource;
    import java.util.Collection;
    import java.util.ArrayList;
    import java.io.Serializable;
    * @author rtagliento
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    public class AllUsers {
    // implements Serializable {
         private Connection con;
         private ResultSet rs;
         private Statement stmt;
         private String SqlQuery;
         private Collection usersList = null;
         private UserElement users = null;
    //     private Collection empDetailsList=null;
    //     private EmpDetailsHelperClass  empdetails=null;
         public AllUsers(){
              con = null;     
              java.sql.ResultSet rs = null;
              rs = null;
              SqlQuery  = "SELECT * FROM TMP_USERSLIST ; ";
         public Connection getConnection (){
                   return con;
         public void setConnection (Connection c){
              con = c;
         public Collection getUsersList()
              return usersList;
         public UserElement getUsers()
              return users;
         public void setUsers(UserElement class1)
              users = class1;
         public void execute() throws Exception {
              String DEBUG = new String("");
              try {
                   stmt = con.createStatement();
                   rs = stmt.executeQuery(SqlQuery);
                   usersList = new ArrayList();
                   usersList.clear();
                   while (rs.next()){
                        users = new UserElement();
                        users.setID(rs.getString("ID"));
                        DEBUG += "ID: " + rs.getString("ID") + " | ";
                        users.setName(rs.getString("NAME"));
                        DEBUG += "NAME: " + rs.getString("NAME") + " | ";
                        users.setSurname(rs.getString("SURNAME"));
                        DEBUG += "SURNAME: " + rs.getString("SURNAME") + " | ";
                        users.setBirthDay(rs.getDate("BIRTHDAY"));
                        DEBUG += "BIRTHDAY: " + rs.getDate("BIRTHDAY").toString() + " ---------- ";
                        usersList.add(users);
                   rs.close();
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   throw new Exception(e.toString() + DEBUG);
    //          throw new Exception(new Integer(usersList.size()).toString() + DEBUG);
    when use it:
         AllUsers AllU = new AllUsers();
    //     AllU.setConnection(myJdbc.getConnection());
         wdContext.nodeAllUsers().bind(AllU);
         wdContext.currentAllUsersElement().setConnection(myJdbc.getConnection());
         try {
              wdContext.currentAllUsersElement().modelObject().execute();
         } catch (Exception e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    Hope can help.
    Bye

  • Error while importing a Adaptive RFC Model

    Experts,
    I am trying to import an Adaptive RFC Model. Before importing I need to speciy the connection parameters in the import wizard. I am using the single server method to connect and have specified all the parameters correctly. I have not specified a SAP router as I am using a test system. when I click next on the Model import wizard I get an error.
    The trace shows-
    [code]ConnectionFailed Exception : com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed
    Connect_PM  GWHOST=test833, GWSERV=sapgw00, ASHOST=test833, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner not reached (host 10.3.82.177, service 3300)
    TIME        Fri Jun 29 08:54:18 2007
    RELEASE     640
    COMPONENT   NI (network interface)
    VERSION     37
    RC          -10
    MODULE      nixxi_r.cpp
    LINE        8715
    DETAIL      NiPConnect2
    SYSTEM CALL SiPeekPendConn
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUN
         at com.sap.ide.jcb.core.service.connection.internal.ConnectionManager.connect(ConnectionManager.java:220)
         at com.sap.ide.jcb.core.service.connection.internal.ConnectionManager.connectToSingleServer(ConnectionManager.java:206)
         at com.sap.ide.jcb.core.wizardpages.SAPLogonPage.internalConnectToServer(SAPLogonPage.java:1769)
         at com.sap.ide.jcb.core.wizardpages.SAPLogonPage.access$2300(SAPLogonPage.java:46)
         at com.sap.ide.jcb.core.wizardpages.SAPLogonPage$9.run(SAPLogonPage.java:1730)
         at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
         at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:98)
         at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1999)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1733)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:136)
         at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:261)
         at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:758)
         at com.sap.ide.jcb.core.wizardpages.SAPLogonPage.connectToServer(SAPLogonPage.java:1699)
         at com.sap.ide.jcb.core.wizardpages.SAPLogonPage.performFinish(SAPLogonPage.java:1805)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelWizard.initializeReimporter(ModelWizard.java:1410)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelWizard.performPostSapLogonPageForReimport(ModelWizard.java:1433)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelDialog.nextPressed(ModelDialog.java:85)
         at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:316)
         at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
         at org.eclipse.jface.window.Window.open(Window.java:563)
         at com.sap.ide.webdynpro.modeleditor.ModelEditorCallback.reimportModel(ModelEditorCallback.java:218)
         at com.sap.ide.webdynpro.service.modeleditor.ModelService.reImportModel(ModelService.java:207)
         at com.sap.ide.webdynpro.service.modeleditor.ServiceWithUI.reImportModel(ServiceWithUI.java:120)
         at com.sap.ide.webdynpro.tsmodel.application.actions.ReimportModelAction.run(ReimportModelAction.java:11)
         at com.sap.ide.webdynpro.projectbrowser.actions.PBReimportModelAction.run(PBReimportModelAction.java:77)
         at com.sap.ide.webdynpro.projectbrowser.actions.PBDevelopmentObjectAction.runInternal(PBDevelopmentObjectAction.java:80)
         at com.sap.ide.webdynpro.projectbrowser.actions.PBDevelopmentObjectAction.run(PBDevelopmentObjectAction.java:61)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:224)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1407)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed
    Connect_PM  GWHOST=test833, GWSERV=sapgw00, ASHOST=test833, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner not reached (host 10.3.82.177, service 3300)
    TIME        Fri Jun 29 08:54:18 2007
    RELEASE     640
    COMPONENT   NI (network interface)
    VERSION     37
    RC          -10
    MODULE      nixxi_r.cpp
    LINE        8715
    DETAIL      NiPConnect2
    SYSTEM CALL SiPeekPendConn
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUN
         at com.sap.mw.jco.rfc.MiddlewareRFC$Client.nativeConnect(Native Method)
         at com.sap.mw.jco.rfc.MiddlewareRFC$Client.connect(MiddlewareRFC.java:1125)
         at com.sap.mw.jco.JCO$Client.connect(JCO.java:3138)
         at com.sap.ide.jcb.core.service.connection.internal.ConnectionManager.connect(ConnectionManager.java:216)[/code]
    Can someone tell me problem..
    Thanks in advance,
    Vineeth

    In service file if entry is not there... give the enty like
    <b>sapgw<Inst.No>       33<Inst.No>/tcp
    sapgw<Inst.No>s      48<Inst.No>/tcp</b>
    where <Inst.No> = System Number of your R/3 system(00 or 01...)
    In host file....
    ip of the server                            name of the server....

  • Problem while importing a web service model.

    Hi
    I am building a simple send email application using a web service.
    While creating a new model i am using following options.
    step 1 - Select "Import Adaptive web service model"
    step 2 - Select Wsdl Source
    2.1 - Local file system or URL
    Step 3 - No logical destination
    step 4 - choose wsdl file from file system.
    Process successfully done and model created.
    BUT
    when i am trying to run this application it is throwing file not found exception. i.e. not able to locate wsdl file.
    java.io.FileNotFoundException: C:\AbysalEmail.wsdl (The system cannot find the file specified)
    I am using remote network connection to access NWDS. and in remote drive C: itself i have saned my file.
    Then Why it is not able to locate my file.
    Please Help me out.
    Thanks.

    Hi
    I have provided in J2EE Engine visual administrator under
    Web Services Security -> Dynamic web services proxies
    following configuration.
    I have created a new Dynamic web service proxie.
    And in it under connection settings -> URL i have specified
    http://<host>:<port>/
    Above is host name and potr from where my WebDynpro application runs.
    But my file is located in C:\
    I think i am unable to set mapping configuration
    from
    http://<host>:<port>/
    to
    C:\
    Where shall i ten keep my WSDL file.!!!
    Thanks.
    Edited by: Saurabh Agarwal on Jul 30, 2008 1:34 PM

  • Import/Export of XMI models to/from the EMFStore

    Hi,
    Is there a way to import/export the EMF model in XMI format into/from the EMFStore?
    Appreciate any response!
    Thank you!

    Hi Yuri,
    have you already tried to read the XMI file via a resource, get its
    contents and add them via ESLocalProject.getModelElements().
    Cheers,
    Edgar
    > Hi,
    > Is there a way to import/export the EMF model in XMI format into/from
    > the EMFStore?
    >
    > Appreciate any response!
    >
    > Thank you!
    >
    >
    Edgar Mueller
    Get Professional Eclipse Support:
    http://eclipsesource.com/en/services/developer-support/

  • Export and import change document for user master data

    Dear Gurus,
    I have two queries on change document for user master data:
    1. Are there any approaches to export and import change document for user master data?
    We often do system copy from PRD to QAS for UAT and troubleshooting. Before system copy we export the user master data from QAS and then import after the copy process. We would like to keep the change document for user master data on QAS from being refreshed from PRD for security reason.
    2. Change document for Role change in QAS
    When the role is created or modified in DEV and then transported to QAS, the role change document doen't include this change log. The role change document in QAS only records those role changes directly made in QAS.
    Could you advise this is by SAP design or are there any approaches to record this transported role change  in the role change document in QAS?
    Thanks
    YBY

    1. Perhaps you want to consider a system copy to a "virtual system" for UAT?
    2. Changes in QAS (as with PROD as well) will give you the delta. They should ideally be clean... You need to check the source system.
    Another option is to generate the profiles in the target system. But for that your config has to be sqeaky clean and in sync, including very well maintained and sync'ed Su24 data.
    Cheers,
    Julius

  • Crashes when changing editing data model

    Reports 6i crashes (My windows (Unix) disappears) often when I am changing the data model (i.e removing and adding columns). I did figure out one thing and that is you when you delete a column that has a data link without removing the data link first it will not remove the column and the report will crash when you attempt to make an additional changes to that query that was changed. Any additional reasons?

    Kathy,
    Suggest you log a TAR with Oracle Support on this issue. The builder should not be crashing and I did not find any bugs logged. They will need to reproduce the problem and log a bug if necessary. You will need to supply them with the specific version of Reports and the operating system.
    Regards,
    The Oracle Reports Team jls

  • How import relations of a model in Web Dynpro project

    I am importing a bean as model in my webdynpro project.
    This bean is having a List(customerList) and a currosponding getter method. This List will become a relation. Can anybody tell me how to use this relation in my Webdynpro project when I import this bean as a model to my project?

    Hi
    I am having both the TestBean and HelperBean in the same package. Below is the code of TestBean. This bean is in turn calling HelperBean ,which is returning a List. I am importing both these beans in model but still I am getting an error while creating model -
    <b>[Error]:     There are one or more relations unresolved. Importing the model without resolvoing the relations might result in erratic output.</b>
         public class TestBean implements Serializable{
         private List customerList= null;
         HelperBean helper = new HelperBean();
              public void execute(){
              try{
                                            customerList = (ArrayList)helper.getCustomerList();
                   catch(Exception ex){
                        ex.printStackTrace();
          * @return
         public List getCustomerList() {
              return customerList;
          * @param list
         public void setCustomerList(List list) {
              customerList = list;
    Please inform if there is some solution.
    regards,
    Sujit

  • Problem during import of Adapative WS Model in 2004s SP09

    Hi,
    I try to import a Adaptive WS Model and I have this error in error log file:
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. Could not load web service model. See nested exception for details.
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:149)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:49)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:71)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:411)
         ... 53 more
    Caused by: java.lang.ClassCastException: com.sap.engine.services.webservices.jaxrpc.encoding.primitive.Array11SD
         at com.sap.engine.services.webservices.espbase.client.dynamic.types.impl.MetadataLoader.LoadMetaData(MetadataLoader.java:260)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.initServiceBase(DGenericServiceImpl.java:176)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:147)
         ... 56 more
    I open my WSDL in xmlSpy to test its syntax but it's ok !
    Did you have this problem ?
    Thanks a lot.
    My IDE is NW2004s SP09.

    run 'ls -lrta' in /tmp/sapinst_instdir/.... (whatever the lowest path is there, where all the log files are).  You should see something like sap<something>.tsk and sap<something>.log.  Look at the most recently updated sap<something>.log file for the specific error.  One problem I've seen is that if you configure the advanced oracle config to turn off AUTOEXTEND on the tablespaces, the abap load will bomb because it runs out of space.  Also, make sure your SYSTEM tablespace has at least 500M.
    Posting the relevant contents of the log with the detailed error description would help us provide a better answer as well.
    Rich

  • Error when  Hana cube are imported in SAP Hana models management

    Hello
    I trying to import 2 or more cubes in the module SAP Hana models management and i cannot do it, the message error says that a model exists with the same name but the name of my  model is different.  I checked my Info.xml and the tag of name  is different. How can i import more than one model in this module?
    Thank you.

    Hi San Xu,
    I am working with SAP 9.0 PL:10 hot fix1 and i can´t see which is the IA tag or you refered   B1AVersions tag,   this is the code for my info.xml 
    <?xml version="1.0" encoding="utf-8" ?>
    - <HANAModelPackageForB1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" defaultLanguage="English"> 
    <Name>Cubo circulo bizarro</Name>  
    <Author>Agasys S.A. de C.V.</Author>  
    <ModelVersion>1.1</ModelVersion>  
    - <HANAVersions> 
    <Version />  
    </HANAVersions>
    - <B1Versions> 
    <Version />  
    </B1Versions>
    - <B1AVersions> 
    <Version />  
    </B1AVersions>
    <Description />  
    - <Metadata> 
    <CreatedAt>03/06/2014 01:47:11 p.m.</CreatedAt>  
    <ChangedAt>03/06/2014 01:47:11 p.m.</ChangedAt>  
    <ChangedBy />  
    </Metadata>
    - <ModelList> 
    <Model name="SYS_AT_PCLIENTES" type="AttributeView" />  
    <Model name="SYS_AT_PDEVOLUCIONES" type="AttributeView" />  
    <Model name="SYS_AT_PSUCURSALES" type="AttributeView" />  
    <Model name="SYS_AT_PTRANSACCIONES" type="AttributeView" />  
    <Model name="SYS_CA_PCIRCULOBIZARRO" type="CalculationView" menu="SYS_CA_PCIRCULOBIZARRO" />  
    </ModelList>
    </HANAModelPackageForB1>
      Thanks

  • Import of ERwinR8 data models into Oracle SQL Developer Data Modeler

    Hi!  My site want to move off ERwin R8 and use Oracle SQL Developer Data Modeler.  When will Oracle SQL Developer Data Modeler support the import of ERwin R8data model xml?
    Thanks very much,  Patty

    Hi,
    You can add the classic SCOTT schema with EMP/DEPT tables to a 10g Express Edition DB by running this script as SYSTEM:
    C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\ADMIN\scott.sql
    Also, you may wish to upgrade to the current version of SQL Developer:
    http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
    As for importing a .dmp file, you import it to the database, not SQL Developer. Please post that question to the appropriate forum.
    Regards,
    Gary Graham
    SQL Developer Team

  • Error Importing ECT Odata BDC Model to Sharepoint Online BCS

    Hi, 
    When I try to import the BDC model (of Odata Service with anonymous authentication) to sharepoint 2013 online, got the
    error "Application definition
    import failed. The following error occurred: Unable to connect to the remote server  Error was encountered at or just before Line: '63' 
    If I import the same BDC model to a Sharepoint 2013 on premise it works!.
    Any idea about how to fix it?
    Thanks!
    Norberto

    Hi,
    According to your post, my understanding is that you encountered with an error when importing BDC to SharePoint Online.
    Before you begin this procedure, make sure you have the following:
        • The .bdcm file that you extracted in
    Extract an external content type to a BDCM file for the Business Connectivity Services hybrid Scenario.
        • An account with administrative rights to your SharePoint Online tenancy and administrative rights to the BDC Metadata Store.
    In addition, please make sure you import BDC to SharePoint Online correctly.
    For more information, you can refer to:
    Import the BDCM file into SharePoint Online BDC Metadata Store for the Business Connectivity Services hybrid scenario
    Manage Business Connectivity Service Applications - SharePoint Online for enterprises
    How to Import a BDCM File Into SharePoint 2013 Online BDC Metadata Store
    Regarding SharePoint Online, for quick and accurate answers to your questions, it is recommended that you initial a new thread in Office 365 forum.
    Office 365 forum
    http://community.office365.com/en-us/forums/default.aspx
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Is it good idea to change Simple Recover Model into Bulk-Logged on ETL system?

    We are having an ETL process which inserts lots of data into tables. This database is set to Simple Recovery Model and the transaction log is growing a lot. I was thinking that would it help to set this database into Bulk-Logged Recovery Model? We are
    taking full backups on daily basis. So is there some operations which are not logged in Bulk-Logged Recovery Model compared to Simple Recovery Model?

    Hi bugarilenet,
    Since this is SQL Azure database forum, so we need to verify if you want to change the recovery model on SQL Azure database. If yes, it will fail when change the recovery model to
    Bulk-logged, or Simple from Full
    model. In Windows Azure SQL database, the Recovery model is set when the master database is created and cannot be modified because the ‘master’ database is read only for anyone but Microsoft. For more information, see:
    http://alexandrebrisebois.wordpress.com/2013/02/27/windows-azure-sql-database-cannot-be-set-to-simple-recovery-model/
    In addition, if it is on premise SQL database, in simple and bull-logged recovery models some operations can be minimally logged, For example in Simple the older non-active transactions are overwritten when SQL reaches the end of the transaction log, however,in
    bulk-logged and full you need to back up the older non-active transactions before the older records can be overwritten. There is more detail about Database Recovery Models in SQL Server, you can review this article.
    http://www.sql-server-performance.com/2008/database-recovery-models-in-sql-server/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Importing and Oracle Designer Model

    Hi,
    Is the "Importing an Oracle Designer Model" functionality enabled ? I seem to be able to test the connection (successful) but the next screen "Selct WorkArea" doesn't seem to be working?
    -Tom

    Your right!!
    build 525 has a problem with importing Designer. A Bug has been generated. and it is internal.
    The earlier build works.

Maybe you are looking for