Can I migrate from sql azure business database edition (old) to sql azure standard database edition (new in preview)?

I have an export .bacpac file from a sql azure business database edition and I want import that file to sql azure standard database edition.
I have tried through Azure but I think that is not supported yet.
I have also tried through Microsoft SQL Server Management Studio 2012 but Wizard only shows me old editions "web" and "business" for destination database and it is incompatible...
Thanks.

I've done this today.
You'll need to restore your database onto Azure as a Business/Web addition. Either use your existing or New > SQL Database > Import.
Then you need to sign up to the SQL Preview https://azure.microsoft.com/en-us/services/preview/.
Once you've done that, in the Azure portal under DB > Scale, you'll have Web, Business, Basic, Standard and Premium to choose from.
Obviously this is still in preview mode.

Similar Messages

  • How can i migrate Power Builder 8.0 Function into oracle PL/SQL

    Hi Oracle Experts...
    How can i migrate Power Builder 8.0 Function into oracle PL/SQL.. I had migrate some of the coding from PB to PL/SQL. But i don't know how can i convert PB structure(here structure is a data type) into oracle PL/SQL.
    Instead of structure what is the equivalent in oracle plsql
    Below i pasted my POWER BUILDER FUNCTION:
    Long ll_perd,ll_lnperd,ll_mon,ll_effmon,ll_instno,ll_odno
    Decimal{5} ldl_actual,ldl_diff,ldl_inst
    Datetime ldt_first,ldt_exp,ldt_oddt, ldt_lastprod
    String ls_instmode,ls_inst
    str_batch lstr_od //Structure to store odamt and oddate
    Select pay_c_final,lon_d_expiry, lon_d_lastprod
    Into     :ls_inst,:ldt_exp, :ldt_lastprod
    From      loan_mast
    Where branch_c_code = :gs_branch and
              act_c_type      = :as_actype and
              act_c_no           = :as_acno;
    If Sqlca.Sqlcode = -1 Then
         f_message('FT-0189',Sqlca.Sqlerrtext)
         lstr_od.batchslno = -1
         Return lstr_od
    End If
    If adt_prodt > ldt_exp Then
         Select Ceil(months_between(:adt_prodt,:ldt_exp)) Into :lstr_od.batchslno From dual;
         lstr_od.cheqdt = ldt_exp
         lstr_od.batchslno = DaysAfter(Date(ldt_lastprod), Date(adt_prodt))
    Else
         If ls_inst = 'N' Then
              If adt_prodt > ldt_exp Then
                   Select Ceil(months_between(:adt_prodt,:ldt_exp)) Into :lstr_od.batchslno From dual;
                   lstr_od.cheqdt = ldt_exp
              Else
                   lstr_od.batchslno = 1
              End If
         ElseIf ls_inst = 'Y' Then
              Select first_d_due,lon_c_instperd,lon_n_perd
              Into     :ldt_first,:ls_instmode,:ll_lnperd
              From     loan_mast
              Where branch_c_code = :gs_branch and
                        act_c_type      = :as_actype and
                        act_c_no          = :as_acno;
              If Sqlca.Sqlcode = -1 Then
                   f_message('FT-0189',Sqlca.Sqlerrtext)
                   lstr_od.batchslno = -1
                   Return lstr_od // Return Structure
              End If
              Select Ceil(months_between(:adt_prodt,:ldt_first)) Into :ll_mon from dual;
              If ll_mon > 0 Then
                   Select Nvl(ln_n_balance,0),Nvl(ln_n_instlamt,0),Nvl(ln_n_instlno,0)
                   Into     :ldl_actual,:ldl_inst,:ll_instno
                   From     loan_inst_sch
                   Where act_c_type = :as_actype and
                             act_c_no     = :as_acno and
                             ln_d_effdate = (Select Max(ln_d_effdate)
                                                           From     loan_inst_sch
                                                           Where act_c_type = :as_actype and
                                                                     act_c_no     = :as_acno and
                                                                     ln_d_effdate < :adt_prodt);
                   If Sqlca.Sqlcode = -1 Then
                        f_message('FT-0224', Sqlca.Sqlerrtext)
                        lstr_od.batchslno = -1
                        Return lstr_od
                   ElseIf Sqlca.Sqlcode = 100 Then
                        lstr_od.batchslno = 1
    *                    Return lstr_od*
                   End If
                   If adl_bal > ldl_actual Then
                        If ldl_inst > 0 Then
                             lstr_od.batchslno = (adl_bal - ldl_actual) / ldl_inst
                        End If
                   Else
                        lstr_od.batchslno = 1
                   End If     
                   If lstr_od.batchslno = 0 Then lstr_od.batchslno = 1
                   //For full OD
                   If ll_mon > ll_lnperd Then
                        lstr_od.batchslno = (ll_mon - ll_lnperd) + lstr_od.batchslno
                   End If
                   If ls_instmode = 'Q' Then
                        lstr_od.batchslno = lstr_od.batchslno * 3
                   ElseIf ls_instmode = 'H' Then
                        lstr_od.batchslno = lstr_od.batchslno * 6
                   ElseIf ls_instmode = 'Y' Then
                        lstr_od.batchslno = lstr_od.batchslno * 12
                   End If
                   Select :adt_prodt - :lstr_od.batchslno Into :lstr_od.cheqdt From dual;
                   If ls_instmode = 'M' Then
                        ll_odno = ll_instno - lstr_od.batchslno // To get OD Date
                        Select ln_d_effdate
                        Into     :lstr_od.cheqdt
                        From     loan_inst_sch
                        Where act_c_type = :as_actype and
                                  act_c_no     = :as_acno and
                                  ln_n_instlno = :ll_odno;
                        If Sqlca.Sqlcode = -1 Then
                             f_message('FT-0224', + Sqlca.Sqlerrtext)
                             lstr_od.batchslno = -1
                             Return lstr_od
                        End If
                   End If
              Else
                   lstr_od.batchslno = 1
              End If
         End If
    End if
    Return lstr_od
    Thanks in adance
    Arun M M

    What are you going to return the structure to? What I would normally use here if the code was going to be used by other PL/SQL would be a PL/SQL object type.
    However, if PowerBuilder is still in the equation (you're moving the logic to PL/SQL but keeping PowerBuilder for the GUI ), then you'll have to return something else, because PowerBuilder doesn't understand PL/SQL object types. Perhaps passing a REF CURSOR as a OUT argument and populating it from the procedure. PowerBuilder could then retrieve the result of the procedure using a stored procedure based DataWindow.

  • How can i Migrate from EJB Application to Hibernate

    Hi ,
    i have developed web services using EJBs. can i create web services for my hybernate application. can anybody please help me for that??
    please advice me how can i Migrate from my EJB Apps to Hibernate.
    thanks & Regards,
    nagalaxmi

    Hi
    Check this link
    http://www.devx.com/Java/Article/27954
    Sameer

  • I can't migrate from a time machine Back up. I select my TC and it says "some backups can't be opened." My HD failed and I'm Trying to get everything back... Can anyone make a suggestion?

    I can't migrate from a time machine Back up. I select my TC and it says "some backups can't be opened. Make sure that all of your network devices are connected and turned on. It appears that some backups are already in use. If you don't see the backup you need, make sure it is not currently mounted by another machine and try again."
    My HD failed and i installed a new one... I'm Trying to get everything back... Can anyone make a suggestion?

    Read the section E about restore issues.
    http://pondini.org/TM/Troubleshooting.html
    But you should be able to mount the sparsebundle and backup the major items if they are not damaged. You might also do a disk verify to see if the corruption can be repaired.
    Have a look here also for restore of selected items.
    http://pondini.org/TM/FAQ.html

  • Can I migrate from WCS 7.0 to PI 1.2. If so, what are the guidelines for migration?

    Can I migrate from WCS 7.0 to PI 1.2. If so, what are the guidelines for migration? Do we have any Instructions/steps?

    Migration from WCS 7.0 to PI 1.2 can be  performed. If the customer wants to migrate data you need to first upgrade to  NCS 1.1.1  You can download NCS 1.1.1 from Cisco.com if you have a valid service  contract.
    For the migration step involving NCS an evaluation license is  sufficient.  You can obtain an NCS evaluation license from http://www.cisco.com/go/license >  Get Demo > Network Mgmt Products > Cisco Prime NCS Evaluation License.  
    Instructions for migrating data from WCS 7.0 to NCS 1.1.1 are available in  NCS 1.1.1 Release Notes.  Do not upgrade to NCS 1.1.2 as this release is not  upgradeable to Prime Infrastructure 1.2.  If you are ordering a Cisco Prime  physical appliance (PRIME-NCS-APL-K9) be sure to select the NCS 1.1 image which  you can later upgrade to Prime Infrastructure 1.2 after you have migrated your  WCS data.
    There is a post in the support forum which can be refered.
    https://supportforums.cisco.com/docs/DOC-26972

  • HT3231 Can I migrate from a power PC G4

    Can I migrate from a power PC G4 to a new Macbook Pro?

    Read the information in the article - Intel-based Mac: Some migrated applications may need to be updated

  • Can I migrate from mavericks to mavericks server. Have tried using a hard drive but the but the sever does not find the migration backup when it's searches. Any help out there?

    Can I migrate from mavericks to mavericks server. Have tried using a hard drive but the but the sever does not find the migration backup when it's searches. Any help out there?

    Is the HDD in the 2009 15" MBP dead?  (The original source of your data)  If not, you might want ot take it out and put it in an enclosure.
    You might try spotlight on know files to see if that gives you any clues where your data is located.
    You might down load from the Internet OmniDiskSweeper (free) and open it.  It should show you all of the files you have on your MBP and enable to locate them.
    Ciao.

  • Can I migrate from PowerBook g4 to a new MacBook Air

    I have a non intel PowerBook g4 Can I migrate from PowerBook g4 to a new MacBook Air

    A Basic Guide for Migrating to Intel-Macs
    The Knowledgebase article Intel-based Mac: Some migrated applications may need to be updated refers to methods of dealing with migrating from PowerPC chips to Intel with the Migration Assistant safely. The authors of this tip have not had a chance to verify this works in all instances, or that it avoids the 10.6.1 and earlier Guest Account bug that caused account information to get deleted upon use of the Migration/Setup Assistant. However, a well backed up source that includes at least two backups of all the data that are not connected to your machine will help you avoid potential issues, should they arise. In event it does not work, follow the steps below.
    If you are migrating a PowerPC system (G3, G4, or G5) to an Intel-Mac be careful what you migrate.  Keep in mind that some items that may get transferred will not work on Intel machines and may end up causing your computer's operating system to malfunction.
    Rosetta supports "software that runs on the PowerPC G3, G4, or G5 processor that are built for Mac OS X". This excludes the items that are not universal binaries or simply will not work in Rosetta:
      1. Classic Environment, and subsequently any Mac OS 9 or earlier applications
      2. Screensavers written for the PowerPC System Preference add-ons
      3. All Unsanity Haxies Browser and other plug-ins
      4. Contextual Menu Items
      5. Applications which specifically require the PowerPC G5 Kernel extensions
      6. Java applications with JNI (PowerPC) libraries
    See also What Can Be Translated by Rosetta.
    In addition to the above you could also have problems with migrated cache files and/or cache files containing code that is incompatible.
    If you migrate a user folder that contains any of these items, you may find that your Intel-Mac is malfunctioning. It would be wise to take care when migrating your systems from a PowerPC platform to an Intel-Mac platform to assure that you do not migrate these incompatible items.
    If you have problems with applications not working, then completely uninstall said application and reinstall it from scratch. Take great care with Java applications and Java-based Peer-to-Peer applications. Many Java apps will not work on Intel-Macs as they are currently compiled. As of this time Limewire, Cabos, and Acquisition are available as universal binaries. Do not install browser plug-ins such as Flash or Shockwave from downloaded installers unless they are universal binaries. The version of OS X installed on your Intel-Mac comes with special compatible versions of Flash and Shockwave plug-ins for use with your browser.
    The same problem will exist for any hardware drivers such as mouse software unless the drivers have been compiled as universal binaries. For third-party mice the current choices are USB Overdrive or SteerMouse. Contact the developer or manufacturer of your third-party mouse software to find out when a universal binary version will be available.
    Also be careful with some backup utilities and third-party disk repair utilities. Disk Warrior, TechTool Pro , SuperDuper , and Drive Genius  work properly on Intel-Macs with Leopard.  The same caution may apply to the many "maintenance" utilities that have not yet been converted to universal binaries.  Leopard Cache Cleaner, Onyx, TinkerTool System, and Cocktail are now compatible with Leopard.
    Before migrating or installing software on your Intel-Mac check MacFixit's Rosetta Compatibility Index.
    Additional links that will be helpful to new Intel-Mac users:
      1. Intel In Macs
      2. Apple Guide to Universal Applications
      3. MacInTouch List of Compatible Universal Binaries
      4. MacInTouch List of Rosetta Compatible Applications
      5. MacUpdate List of Intel-Compatible Software
      6. Transferring data with Setup Assistant - Migration Assistant FAQ
      7. OS X Lion: How to use Migration Assistant to transfer files from another Mac
    Because Migration Assistant isn't the ideal way to migrate from PowerPC to Intel Macs, using Target Disk Mode, copying the critical contents to CD and DVD, an external hard drive, or networking will work better when moving from PowerPC to Intel Macs.  The initial section below discusses Target Disk Mode.  It is then followed by a section which discusses networking with Macs that lack Firewire.
    If both computers support the use of Firewire then you can use the following instructions:
      1. Repair the hard drive and permissions using Disk Utility.
      2. Backup your data.  This is vitally important in case you make a mistake
          or there's some other problem.
      3. Connect a Firewire cable between your old Mac and your new Intel Mac.
      4. Startup your old Mac in Transferring files between two computers using FireWire.
      5. Startup your new Mac for the first time, go through the setup and
           registration screens, but do NOT migrate data over. Get to your
           desktop on the new Mac without migrating any new data over.
    If you are not able to use a Firewire connection (for example you have a Late 2008 MacBook that only supports USB:)
    1. Set up a local home network: Creating a small Ethernet Network.
    2. If you have a MacBook Air or Late 2008 MacBook see the following:
      a. MacBook (13-inch, Aluminum, Late 2008) and MacBook Pro (15-inch,
          Late 2008) - What to do if migration is unsuccessful;
      b. MacBook Air - Migration Tips and Tricks;
      c. MacBook Air - Remote Disc, Migration, or Remote Install Mac OS X and
          wireless 802.11n networks.
    Copy the following items from your old Mac to the new Mac:
    In your /Home/ folder: Documents, Movies, Music, Pictures, and Sites folders.
    In your /Home/Library/ folder:
    /Home/Library/Application Support/AddressBook (copy the whole folder) /Home/Library/Application Support/iCal (copy the whole folder)
    Also in /Home/Library/Application Support (copy whatever else you need including folders for any third-party applications)
    /Home/Library/Keychains (copy the whole folder) /Home/Library/Mail (copy the whole folder) /Home/Library/Preferences/ (copy the whole folder) /Home /Library/Calendars (copy the whole folder) /Home /Library/iTunes (copy the whole folder) /Home /Library/Safari (copy the whole folder)
    If you want cookies:
    /Home/Library/Cookies/Cookies.plist /Home/Library/Application Support/WebFoundation/HTTPCookies.plist
    For Entourage users:
    Entourage is in /Home/Documents/Microsoft User Data Also in /Home/Library/Preferences/Microsoft.
    Credit goes to Macjack for this information.
    If you need to transfer data for other applications please ask the vendor or ask in the  Discussions where specific applications store their data.
    5. Once you have transferred what you need restart the new Mac and test to make sure the contents are there for each of the applications.
    Written by Kappy with additional contributions from a brody.Revised 5/21/2011

  • How can i migrate from oracle 10gR2 Linux x68 to SPARC Solaris 10?

    Hi friends...
    I have a 30GB database and need to migrate from Linux x86 to Solaris 10 SPARC.
    Solaris 10 SPACR come this monday, then it's clean.
    How i proceed?
    Rod.

    Hi, good article Citrus, also you can read the next documentation for some detail and technical information about Transportable Tablespaces.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/tspaces.htm#sthref1322
    Regards.

  • Migration from SAS to Business Objects Data services

    Hello,
    Does anybody have any guide / help links or anything of that sort which can give me some insights regarding migration process
    from SAS to Business objects ?
    I am looking for these information.
    1. Comparisons between both the technologies
    2. Advantages of BO over SAS
    3. Migration process / Guide / methodology
    Not sure whether this is the right forum to place this question, but nevertheless...
    regards,
    Karthik

    Hello,
    im not aware of any helpfull documents in that case. I would more recommend you get in touch with your local Consulting Services Department from SAP.
    Regards
    -Seb.

  • Need step by step instructions on migrating from MCS to Business Edition 6000

    My plans are the following:
    1. Acquired spare mcs 7825 server 
    2. Perform DRS restore from an up to date mcs cluster
    3. Upgrade the 7825 to 8.x
    4. Perform a DRS Backup
    5. Restore the DRS back up onto the new pub?
         *Step by step on getting the 6k built so that I can do step 5

    If you migrating from  MCS to UCS this link might be useful
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/virtual/CUCM_BK_CF3D71B4_00_cucm_virtual_servers.html
    DRS for 8.6
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/drs/8_6_1/drsag861.html
    if you have an HP 7825 you will need a 16GB USB drive in order to upgrade
    These release notes are based on following software versions:
    •Unified CM: 8.6.1.10000-43
    Pre-Upgrade Tasks
    •If you are upgrading software on HP7825H3 or HP7828H3 hardware, ensure that you have a 16GB USB device available to migrate your data to the new system. For Unity Connection and Business Edition 5000, a 128GB external USB device is required.

  • How can I migrate from Outlook 2011 to iCal and Apple Address Book in Mavericks now that synching is no longer possible?

    Now that I am on Mavericks and no longer able to sync between my iPhone/iPad and Outlook 2011 on my MacBook Pro, I'm finally taking the leap (which I should have done long ago) and abandoning Outlook 2011 all together (doesn't help that Outlook now prompts me to rebuild by Identity multiple times per day). I am hoping to export from Outlook to iCal, Address Book, etc, but I would love it if someone could check my steps.
    Delete iCal and Apple Address Book content -- Because I have old data in iCal and Address Book (that was synched before I upgraded to Mavericks), I planned to delete this data as follows:
    Manually deleting my multiple calendars in the iCal app
    Go to Go>Home>Library>Calendars and drag "Calendar Cache" to trash
    Go to Go>Home>Library>Caches and drag "com.apple.iCal" and "com.apple.AddressBook" to the trash
    Go to Go>Home>Library>Application Support and drag "Address Book" to the trash
    Export Outlook 2011 Calendars to iCalIs there a file format that I can use to export from Outlook 2011 and then import into iCal? I will use this file format to individually export each of my calendars from Outlook 2011 and import them into iCal.
    Export Outlook 2011 Contact List to Apple Address BookIs there a file format that I can use to export from Outlook 2011 and then import into Apple Address Book?
    Suggestions would be greatly appreciated.

    Hi acs4055,
    As per your query I found a relevant solution for resolving this,  actually I haven’t tried the steps you wrote here in your query.  But I found a solid key answer for exporting from Mac OS X Mavericks (10.9.1) Outlook 2011 to iCal for Apple mail. This is possible through Drag and Drop method via this you can undoubtedly migrate Outlook 2011 Calendar to ical format.
    Hope it will assist you and you will be able to attain a desired solution.

  • How can I migrate from one user to another within the same computer?

    My main user account in my desktop is becoming buggy after to many migrations from different computers and long time usage. I would like to migrate from one user to another user within the same computer to see if this improves my current problems.
    How can I do it in a reasonably safe and quick way?
    Thank you very much, cheers, Rui
    iMAC, OS 10.6.8... and yes, I love Snow Leopard light and handy... and all my programs work on it...

    Move small groups of files to the /Users/Shared/ folder or another location and see if the problems disappear. Moving everything to a new user account will in all probability transfer the problems.
    (119885)

  • Can I migrate from an external hard drive to new Macbook Pro?

    Can I migrate my Macbook 13" Aluminum Late model 2008 data from it's external hard drive to my new Macbook Pro?  I have a complete back up of my old Macbook on that drive, but there is no way to connect that to the new Macbook Pro (no firewire etc on old Macbook).
    Thanks for any help!

    Yes; if it's an USB drive, you can just plug it in, and there are adapters to connect a FireWire drive to a Thunderbolt port. You'll be given the option to migrate data from it when setting up the new computer or by launching the Migration Assistant in the /Applications/Utilities/ folder.
    (113054)

  • Can i migrate from a corrupt OS

    I'm trying to prepare my current Macbook (late 2008) to migrate to a new Macbook I just purchased.  Both macs will have Yosemite 10.10.2.
    My current macbook seems to have a corrupt OS somewhere in that it won't boot under normal conditions.  It hangs during the book process.  The only way I can get a successful boot is booting in Verbose mode.  I've tried numerous ways to fix this, including reinstalled the OS on my current Mac, reseting the PRAM, and a couple other attempts.  Nothing worked.  With the mac booted under verbose mode, I turned off FileVault and backed up onto an external drive using Time Machine.
    While I'm not necessarily interested in trying to fix my current macbook, I just want to know if I'll be safe to use Migration Assistant on my new macbook when it arrives, restoring from either my Time Machine backup, or directly from my old macbook through ethernet?  I'd prefer to not have to manually copy everything over, I'd like to pretty much like to keep everything "as-is" and just pick up as if I'm on the same computer (hence, wanting to use Migration Assistant).  This is my first mac migration, and I've been upgrading my old macbook for the past 7 years in terms of OS.
    What kind of items will migrating from Migration Assistant NOT copy over? What will copy over?  What will happen to apps downloaded from app store? Will all the settings within my apps copy over? Will Time Machine continue to backup from where it left off as if it was the same computer?  Any issues or extra work I should expect?
    Any helps/tips would be greatly appreciated, I travel a lot and only get 2 days at home each week, and I'd like to be prepared to get as much "migrating" done as I can during those two days before I leave with a computer that isn't restored yet.
    Thanks in advance!

    Yes you will be able to accomplish what you describe. The fact they are both running Yosemite almost guarantees there will be no surprises.
    Migration Assistant (or its equivalent that runs during initial setup - Setup Assistant) will migrate what you specify. In your circumstance I recommend you do not select "Computer and Network Settings" or "Other files and folders". De-select those choices. For some reason when Setup Assistant seems to take forever or stops progressing, it stalls on one of those, both of which are easy to create anew and copy manually, respectively, should you need to.
    When you get your new Mac, do yourself a favor and migrate your existing account during setup. In other words don't create any users. Ideally, let Setup Assistant do that for you. Less ideal would be to create a temporary account with a throwaway name that you intend to discard later, and use Migration Assistant - which is identical to Setup Assistant, except that it's performed on a system that has already been configured for a user. The problem you want to avoid is creating an account with a name identical to the existing user account you want to migrate. If you were to do that you'll have to rename it. Migration Assistant would inform you of that need ("this user needs attention") but some people don't understand its ramifications until later.
    For the fastest migration use an Ethernet cable directly connected between the two Macs. If it is more convenient for whatever reason, connect both Macs to your wired LAN and turn Wi-FI "off" on one of them to limit the connection exclusively to Ethernet. It may still take a few hours. Wireless could take days.
    Respectively,
    What kind of items will migrating from Migration Assistant NOT copy over? What will copy over?  What will happen to apps downloaded from app store? Will all the settings within my apps copy over? Will Time Machine continue to backup from where it left off as if it was the same computer?
    Operating system, and what you exclude from the choices explained above.
    Your chosen User accounts. Not printers and scanners; I recommend you create those entries anew, using their most recently available drivers. For some reason printers don't always transfer properly. You're welcome to try it though.
    Purchased apps will be migrated, along with their data. You won't have to pay for anything you already purchased.
    Yes... although depending on your Time Machine backup device's remaining capacity, you might elect not to do that. If it has sufficient remaining capacity to keep at least one complete copy of your old Mac's contents, plus at least one complete copy of your new Mac's contents, it will be seamless. After you ascertain that your new Mac is configured to your satisfaction, you might consider erasing the backup so that more space will be available for your new Mac's exclusive use.

Maybe you are looking for

  • T Code for Viewing Customer Deliveries by Warehouse?

    Hello All, I am trying to find out if there is a Transaction Code which will list a specific region's customers by Warehouse.  We do not have any PA reports.  In its absence, I am trying to see if I could run any transaction code where I can put in w

  • Change Cost Center Group - Error

    Good day all We are trying to change the cost center group for a cost center. We get the following error message: "Change range must cover complete existance period". How do we fix this? Thank you in advance. Kind regards Lu.

  • 2.1 RC1 templates converted to lowercase ?

    In 2.1 RC1 I have correctly recovered my templates from 1.5, which are using a mix of lower/uppercase. It is important for me because I have some templates for such things as: call connect_me_to_some_place("IdentiFier MixIng CAseS"); When I auto-comp

  • FCE file sharing with FCP...?

    I am considering purchasing FCE (and a macbook pro), but need to know a few things from users who have experience with it. First, is FCE totally compatible in terms of file sharing with FCP? I'm a beginer and need to learn editing. I just completed p

  • PDF Redaction tool

    How to find an app for PDF Redaction function on ipad?