V12 export to V11 server?

Hi,
The "how to" upgrade article at http://azure.microsoft.com/en-us/documentation/articles/sql-database-preview-plan-prepare-upgrade/ claims that export/import to V12 is now supported (the comments seem to suggest that this was previously _not_
supported and now is).  However, it is unclear what this actually means....
I have a V11 server that I've migrated to the S2 performance tier.  I'd like to move to S3, but S3 is only supported in V12.  That said, I have a bunch of non-production servers still running web/business tier on V11 and I would _not_ like to upgrade
them to V12 since it would dramatically increase my costs.  We have do full exports of our production DB quite and then import them into the non-production DB quite often for testing.  If I move my production server to V12, can I still do that?  That
is, can I export a V12 database to a bacpac, and then import this bacpac to a V11 server?
Thanks!

Hi MattLuum,
Import/Export is fully supported for V12 servers. You can export a database on a V12 server and import it into a non-V12 server. Export and Import on V12 behave the same as they do in the previous version.
Be sure to check out our
What's new in V12 servers page. As some new features with V12 servers are not compatible with non-V12 servers. 

Similar Messages

  • SSL export for loadbalancing server

    Hi
    I dont find any way to export load balancing Portal server certificate. Lets say, the server PER1.domain.net and PER2.domain.net are load balanced to PER.domain.net. I have successfully exported the certificate of PER1.domain.net and PER2.domain.net but I don't find any way to export load balancing server certificate (i.e PER.domain.net). My portal version is 7.3. We are using Web dispatcher for load balancing
    Please advise

    Hi
    Try to find .pse files on file system.
    SECUDIR environment variable can help you.
    Default place is: /usr/sap/<SID>/<INSTANCE>/sec
    Execute command for export:
    sapgenpse export_own_cert -o <output_file> -p <PSE_name> [-x <PIN>]
    Regards
    Przemek

  • Importing the dump into 10g which exported from 11g server

    hi
    can i import the dump into 10g which exported from 11g server?
    thanks
    nidhi

    knidhi wrote:
    hi
    can i import the dump into 10g which exported from 11g server?
    thanks
    nidhiHi Nidhi,
    No, if you want to use an 11g export dump and import it using 10g utilities to a 10g database.
    Yes, if you use 10g export utility to extract 11g database data, and use 10g import utility to import in 10g database.
    For more information on export/import compatibility, please check:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/exp_imp.htm#
    HTH
    Regards,
    Z.K.

  • Export settings within Server Admin doesn't really

    So I've had a whootin good time with a migration. Situation was a dual g4 died on me, right after I'd imaged it to a mac mini. I have another mac mini that I wanted to setup as a backup machine/tester. I tried one time to export all the server settings and admin settings and that didn't work at all, so I decided to export say...just my firewall settings, then import just the firewall settings back in. That worked, but didn't have all my firewall settings (ended up having to copy ipfw.conf.apple over). I then tried the same with just dns settings, but that didn't work..I'd import in, the zones would flash up on the zone list, then vanish. Has anyone ever successfully exported and imported settings? So far it's seemed like kind of a waste of time if it's not gonna copy everything over. I dunno...maybe it's the g4 imaged to the macmini that I'm exporting from. All of these are on 10.5.6 using the latest build of Server Admin

    Have a look at the following:
    http://support.apple.com/kb/TS3960

  • Data Pump - Trying to Export to *Another Server* Gives Error

    hi experts,
    I'm using 10.2.0.4 on Windows.
    I want to create a Scheduler job to periodically refresh my test database from my production database which resides on a different Windows server.
    Using the Database Control GUI to create the Export job, if I specify a Directory that is on the other server, the job fails to create and I get this error:
    Export Submit Failed
    Errors: ORA-39002: invalid operation ORA-39070: Unable to open the log file. ORA-29283: invalid file operation ORA-06512: at "SYS.UTL_FILE", line 488 ORA-29283: invalid file operation Exception : ORA-39002: invalid operation ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79 ORA-06512: at "SYS.DBMS_DATAPUMP", line 2953 ORA-06512: at "SYS.DBMS_DATAPUMP", line 3189 ORA-06512: at line 2
    But if I use a local directory ie one that is on the same server that the export will run on.... no problem - job is created and it executes fine.
    ?? What is required to be able to export to a non-local destination?
    Thanks, John

    Thanks for the replies and ideas.
    This is what the GUI generated:
    declare
    h1 NUMBER;
    begin
    begin
    h1 := dbms_datapump.open (operation => 'EXPORT', job_mode => 'SCHEMA', job_name => 'DP_EXPORT_SSU', version => 'COMPATIBLE');
    end;
    begin
    dbms_datapump.set_parallel(handle => h1, degree => 1);
    end;
    begin
    dbms_datapump.add_file(handle => h1, filename => 'EXPSSU.LOG', directory => 'DP_FROMULTRAPRD', filetype => 3);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    end;
    begin
    dbms_datapump.metadata_filter(handle => h1, name => 'SCHEMA_EXPR', value => 'IN(''SSU'')');
    end;
    begin
    dbms_datapump.add_file(handle => h1, filename => 'EXPSSU%U.DMP', directory => 'DP_FROMULTRAPRD', filetype => 1);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'DATA_ACCESS_METHOD', value => 'AUTOMATIC');
    end;
    begin
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    end;
    begin
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    end;
    begin
    dbms_datapump.detach(handle => h1);
    end;
    end;
    After I finally got the job to execute (by specifying a local path), the export completed successfully.... BUT the job does not appear as a Scheduler Job. I expected to see it there. In reading it seems that, to execute a DP job, you first have to attach it, then run dbms_datapump.start_job - is that correct?
    ** How can I see the data pump jobs that exist?
    I will create a database link and tweak my tnsnames file.
    Steve, I prefer to drive this from the Production server so I will use a Network Export from that server going to dump files on the Test server.
    ** But I'm confused by your statement saying "in either case, the job will run on the test server". ??
    2 years from now, when I have forgotten about all of this, I want to only have to look at the scheduled jobs on the Production server to determine all the jobs that depend on that server.
    I'll post back with the results of my little "experiment". Thanks for your suggestions.
    John - Memphis TN USA
    Edited by: user629010 on Dec 23, 2008 3:08 PM

  • DRM export from SQL Server view

    Hi
    We are using v11.1.2.1.
    Is it possible to import master data from a SQL Server view? We only seem to be able to extract from a table.
    Regards

    Yes You can but you have to write sql queries to export in section wise. I mean properties, property categories, node types, validations etc..

  • Problem with premiere and encore export, Adobe QT32 Server (Not Responding)

    I could help.
    When exporting to Encore or Premiere, the program block.
    In the Activity Monitor shows me these two errors:
    Adobe QT32 Server (Not Responding)
    PPro Headless (Not Responding)
    Technical Specifications:
    MAC OS X 10.9.5
    Adobe Suite CS6
    graphics card: AJA KONA LHi
    Can you help me please
    Thank You

    Have you checked out this post from Adobe?  I know it says for After Effects but it definitely applies to Premiere too.  We have some AJA cards whose components in /library/QuickTime were causing similar Adobe QT32 server hangups; removing them solved our issue but also broke compatibility with older apps like FCP 7.

  • Export/import login server and user grup security

    Hi,
    I followed the instructions to export Login server, user group
    security using the ssoexp.csh, secexp.csh. Then I imported the
    login server, and user group security using the ssoimp.csh,
    secimp.csh .
    I then logged into Portal and check the users, all the users are
    imported properly. However, I didn't see any group that are
    supposed to be imported. Do I missing anything?
    The syntax to run the secimp is as follows:
    secimp.csh -s portal30 -p portal30 -o portal30 -m reuse -d
    sec.dmp -c target_database
    The import finished w/o error. How can I see the groups in the
    new portal instance that I tried to import objects in?
    I noticed that the wwsec_group$ in the source area is over 3000,
    and in the target the count is only 10, which is the number of
    group I have before the import. But during the export, I don't
    see the wwsec_group$ table being exported, is that the problem?
    P.S. versions are: 9iAS 1.0.2, portal version 3.0.9.8 on solaris.
    Thanks;
    Kelly.

    This question is best suited to the Oracle9iAS SSO and Portal Security forum.
    Thanks

  • InDesign PDF export to network server becomes invisible

    Hi,
    Just upgraded to InDesign CS5. When I export a PDF document and post onto network server, it becomes invisible. I only know this because when I export onto my desktop and then drag into the network folder, it gives me an error message that it can't replace an invisible file. So I found a way to view the invisible file, trashed it, then dragged the one on my desktop into the network folder. Worked fine. I'd prefer not to have to do this EVERY time I export to PDF. Anyone have any experience with this issue? Help?

    I'd vote a dodgy server. I've had no issues with Mac OS X 10.5.x 10.6.x or Windows 2000, 2003, 2008 or Windows 7 shares.
    InDesign has been known to work over the network. I think a patched version of CS 5 has little to no issues working on network shares that I've heard of.
    Print Professional is a reasonably vague term that doesn't necessarily mean there is an amazing network setup. The difference between having a clean network setup with collision domains that are not congested and a packet dropping nightmare isn't always apparent. One can have a 60 dollar switch or a 2000 dollar switch and that can make all the difference. Similarly a file store can be a fibre channel beast or a NAS with a gigabit connection. Both can throw out the term gigabit and terabyte and be accurate, but the difference between SOHO grade junky with shakey firmware. What you'll get out of the CISCO Catalyst or HP Proliant in comparison to LinkSys and an HP MediaSmart are worlds apart.

  • Oracle 10g DB Export for SQL Server 2008

    I'm having a hard time exporting my database Primavera P6 Project Management for SQL Server 2008, in fact I need to do this so I can export to a future program in Visual Studio 2010. But contiue with the Oracle Database Enabled
    Thank you.
    Edited by: 898987 on 25/11/2011 01:59

    Hi,
    Thanks for the translation.
    You say you are having a hard time exporting my database Primavera P6 Project Management for SQL Server 2008. Could you give details of exactly what you are using for the export and what problems you are having ?
    Is this an export from an Oracle database or a SQL*Server 2008 database ?
    Regards,
    Mike

  • Encrypt Excel Export from SQL Server Reporting Services prior to attaching to e-mail

    Does SSRS 2012 have a secure e-mail Delivery Extension that would allow the Excel document to be encrypted?
    Or is there sample code?
    Or is the best approach to consider a Microsoft Partner product such as Database Potential, Inc.'s "Secure Delivery Pack for SQL Server Reporting Services"?
    http://www.databasepotential.com/product-p/sdp.htm
    Thanks in advance for any thoughts or feedback regarding this topic.
    Boyd

    Hi Boyd,
    Currently, it’s not supported a delivery extension that encrypts documents before sending them in Reporting Services. If you have the SQL Server Integration Services (SSIS) environment, you can use the following workaround:
    1. Using SSIS Script Task to encrypt the report before exporting it to the Excel file.
    2. Add a Send Mail Task to send the Excel files to the recipients.
    For the details, please refer to the document below:
    http://microsoft-ssis.blogspot.in/2011/10/encrypt-files-in-ssis.html
    In addition, we can try to use .NET API approach. In this scenario, we need capture the Excel file using the WQL Query of FileWatcher, and then encrypt the file, finally email the Excel File.
    For the details, please refer to the blog as shown below:
    http://microsoft-ssis.blogspot.in/2010/12/continuously-watching-files-with-wmi.html
    If you need more assistance, please feel free to contact me.
    Regards,
    Heidi Duan
    If you have any feedback on our support, please click
    here.
    Heidi Duan
    TechNet Community Support

  • Exporting files to server

    Hi All,
    We are migrating from essbase 6.5.4 to 7.1.6.7.
    When we exported data from production server, we found the essbase database to be 54 GB. We also found the files in multiple numbers comprising to 54 GB.
    We then loaded the exported file to development server in free form.
    What we want to know is that is free-form the only way to load the exported file into development server.
    If not then please suggest the other ones and explain the same in steps.
    Thanks in advance.
    Balakrishnan
    Edited by: user11091956 on Nov 11, 2009 4:02 AM

    Hi Cameron,
    Following process were followed for exporting data:
    1. Created a new application in development server (name same as in production).
    2. Created a new database (as in production)
    3. Stop the services in dev and production servers.
    4. Removed the db folder created in dev.
    5. copied the db folder from the prodn server to dev server at the respective paths.
    We Could not open the application. (Problem faced by us)
    6. Stopped the services of devp and prdn servers.
    7. Removed tct,ess,ind,pag files.
    8. Started the services again.
    9. Exported the data at 'All Level' from prodn server
    10. Loaded the generated export flat file db on dev server using Free rule.
    11. Started the application successfully.
    12. checked the data retrieved prior migration from prodn server with the data retreived from dev server at same intersection point.
    Note: We have made templates in excel for matching prior and post migration data.
    Problems found:
    a. Small Database which generates single export flat file:
    Data retrieval as mentioned in point 12 matched successfully.
    b. Large Database ( > 10GB) which generated multiple export flat files:
    Data retrieval as mentione in point 12 did not match completely.
    A doubt arises in our mind whether the method chosen by us (Free load) and the generation of multiple files is responsible for the debacle.
    Appreciate if you could suggest to solve the above issue.
    Thanks in advance
    Regards
    balakrishnan

  • Using OpenHub Unix to export to SQL Server

    Hi,
    I have SAPBW 3.1(DB2 database) on a Unix machine and I need to export data to a SQL Server database on Windows.  There are general issues with accessing SQL Server from a Unix machine (ODBC drivers), but what I would like to know is, does this apply using OpenHub?
    Any assistance is greatly appreciated.
    Kind Regards,
    Lee.

    Hi Lee,
    You have a good point but I think it should be ok if you take care with the reads/writes. SAP does not encourage non-SAP programs to directly read or write to tables for numerous reasons: performance impact, read consistency, locking, change management, DDIC consistency, etc.
    As long as your program can ensure the above, I personally would not see an issue. Because of the above most people use some ABAP code to copy or move the table entries. The ABAP code could then be integrated into the Process chains to ensure the execution at the right time.
    Just some thoughts,
    Mike.

  • CUUC: DB Export on clustered server fails

    I am doing a CUUC - Combined Ugrade & Unicode Conversion.  On a single server - DEV - this works fine.  Now I'm doing it on a cluster and it is failing.  SAPINST is not recognizing the database server name.
    I am at the at the stage where I use SAPINST to do the database copy of the source system.
    Error message is: "SQL Server does not exist or access denied"
    Problem is that SQL is on a virtual name "serverdb" and sap is on a virtual name "serversap".  SAPINST cannot authenticate against the server "serversap".  If I change SAPINST to use the server "serverdb" then SAPINST does not run the db export steps.
    I'm using SAPINST 701.06.3 - sql 2005 - win 2003 - going to ECC 6.0
    Please help.

    Hello
    If you logon to the server "serversap" - this is the MSCS system that is the active node - logon as <SID>adm and then try opening sqlcmd.
    The syntax will be something like sqlcmd -S serverdb -E
    -E is for trusted logon - this is what SAPInst will try to do.
    You may find you need to update the SQL client or adjust the permission on the database.
    sqlcmd should give you some useful error message or output.
    Thanks
    N.P.C

  • UPK v11 Server installation

    Hi,
    I am attempting to install UPK v11 developer server on a developer machine, but during the installation when asked to select the database server the list is empty and stays empty when I click "browse".
    A MySQL Server is running on the machine (community server 5.1), and I have verified that the database server itself is configured properly and running.
    Any help would be greatly appreciated.
    Sincerely,
    Jens

    Hi Jens,
    Further to Alex's comments, just be cognisant of the version of DB software that you wish to install.
    The UPK 11 Technical Specifications only talk to the following DB software:
    1. Oracle 10.1, 10.2, 11.1 and 11.2
    2. Oracle 11gR2 Express Edition
    3. SQL Server 2005 (SP3 or SP4)
    4. SQL Server 2008 (SP1, R2, SP2, R2 SP1)
    I have not personally used Microsoft SQL Express, and it isn't mentioned in the tech documents, but may be worth a try if you do not have any of the above at your disposal.
    Good luck!
    Regards,
    Greig

Maybe you are looking for

  • Opening c4d files in Photoshop CC 2014

    In Photoshop CC I was able to open a C4d file to create UV maps for use in Element 3d plugin for After Effects. I have just tried to the same in Photoshop CC 2014 and a message is displayed that Photoshop does not recognise this type of file. Does an

  • Finder does not display external devices

    Today when I woke up, and turned on my macbook, and connected my time machine and 'general use' disk, they didn't appear on the desktop. Not in the finder under devices either. According to terminal they're both mounted. Other programs can access fil

  • How can I find out what's running in the background?

    Hi All - This has been happening for quite some time and I just can't seem to figure it out. It seems as though my machine is constantly processing something.  I can hear it "chugging away".  Even when no applications are running.  So far I have trie

  • I have the set home page screen in the center of my montior and can't clear or remove it. Why?

    I had to re-download Firefox and the message appeared then.

  • PREMIERE CS 5 Single

    Hello! Would like to know which are programs really included in the bundle of cheapest version of PREMIERE CS5. (that one of about $800). I´m in doubt if it comes (or not) with Encore DVD and OnLocation. Every shops I've asked don't know it clearly..