Grant for to use DBMS_PROFILER

Hi
What are grants that I must to have for to use DBMS_PROFILER ?
I tried to use , and no work
exec dbms_profiler.start_profiler('teste_fatorial');
ERROR at line 1:
ORA-06528: Error executing PL/SQL profiler
ORA-06512: at "SYS.DBMS_PROFILER", line 123
ORA-06512: at "SYS.DBMS_PROFILER", line 132
ORA-06512: at line 1

EXECUTEEXECUTE on DBMS_PROFILER is granted to PUBLIC by default. And if user would not have EXECUTE the error would be
PLS-00201: identifier 'DBMS_PROFILER.START_PROFILER' must be declared
In order to run procedure version of dbms_profiler.start_profiler script ?\rdbms\admin\proftab.sql must be run in schema executing dbms_profiler:
SQL> exec dbms_profiler.start_profiler('teste_fatorial');
BEGIN dbms_profiler.start_profiler('teste_fatorial'); END;
ERROR at line 1:
ORA-06528: Error executing PL/SQL profiler
ORA-06512: at "SYS.DBMS_PROFILER", line 123
ORA-06512: at "SYS.DBMS_PROFILER", line 132
ORA-06512: at line 1
SQL> @?\rdbms\admin\proftab.sql
drop table plsql_profiler_data cascade constraints
ERROR at line 1:
ORA-00942: table or view does not exist
drop table plsql_profiler_units cascade constraints
ERROR at line 1:
ORA-00942: table or view does not exist
drop table plsql_profiler_runs cascade constraints
ERROR at line 1:
ORA-00942: table or view does not exist
drop sequence plsql_profiler_runnumber
ERROR at line 1:
ORA-02289: sequence does not exist
Table created.
Comment created.
Table created.
Comment created.
Table created.
Comment created.
Sequence created.
SQL> exec dbms_profiler.start_profiler('teste_fatorial');
PL/SQL procedure successfully completed.
SQL> SY.

Similar Messages

  • OEM - do I need a license for home use?

    Guys
    I installed Oracle 10.1 on Solaris 10 x86.
    Whenever I try to load http://localhost:5500/em, I get a permission denied error.
    01. This is for home use (learning). Do I need a license?
    Thanks in advance

    A few things to check:
    1. Check the installation Manual to ensure the owner(installer) of the software has all the required privilege granted to it and that the dbconsole is started by that user (instead of root).
    2. Check that you are accessing the correct port. It is not always in port 5500. Check the file $ORACLE_HOME/install/portlist.ini to ensure you are entering the right port.
    3. Check that you are using the correct host name. Use the name of the Server instead of localhost. Also if at install time you used the Long Servername (e.g ugoserver.ugonic.com.ng), you will have permission problem when /etc/hosts file has only the entry for the Short Servername (e.g ugoserver). So check and append the long Servername to the end of the line.
    4. Remember to have a look at emca.log file for more error message details

  • Reviewing Windows NT Rights and Privileges Granted for SQL Server Service Accounts

    Hi Folks,
    I am an experienced .NET apps developer who has been tasked with writing a bunch of technical controls for all the SQL Server instances on a domain.
    So for the last month I have been diving in the deep end learning Powershell, dba and infrastructure tasks. This is still a work in progress, so be kind to me.. ;o)
    So the task I am stuck on is described in the section on 'Reviewing Windows NT Rights and Privileges Granted for SQL Server Service Accounts' http://technet.microsoft.com/en-us/library/ms143504(v=sql.105).aspx
    I have not been able to find cmdlets that gives me this information. I have found some exes which come frustratingly close like NTRights.exe. This lets me specify a computer name which is great, but only seems to let you set or deny permissions, not just
    list them!
    Any help with this would be very much appreciated as I am firmly stuck. As per comments above also bear in mind that up until around 1.5 months ago I had never used powershell / knew very much at all about SQL server admin etc. Feeling much more comfortable
    with them now, but much less so with Active Directory/ windows permission structures etc so please can I ask anyone kind enough to reply to try and keep the acronyms down as much as humanly possible.. ;o)
    Cheers 
    Kieron

    Hi Kieron,
    Take a look at this module, it makes permissions much easier to work with than what's currently available:
    https://gallery.technet.microsoft.com/scriptcenter/PowerShellAccessControl-d3be7b83
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Custom login module error: Login permission not granted for myapp (myuser)

    I have developed a custom login module for my application. I have followed the steps outlined in security guide and other postings. I could not log into the application when I access EJBs from an RMI client. I get the following error.
    Login permission not granted for myapp (myuser)
    I did grant the login permission to myuser.
    I am using OC4J 10.1.3.1.0
    Here are the steps I followed and the configuration files. Can anybody help me out?
    1. Created a custom login module and packaged it in EAR along with other classes. In the commit method, I added my user into principals of subject. Here is the code,
    ==================================================================
    public boolean commit() throws LoginException {
    try {
    if (!loginOk) {
    return false;
    Set<Principal> principals = subject.getPrincipals();
    principals.add(user);
    loginOk = true;
    } finally {
    // Some audit logs are written here.
    return loginOk;
    ===============================================================
    2. Added custom login module in orion-application.xml. Here are the relevant portions of orion-application.xml
    ===============================================================
    <jazn provider="XML">
    <property name="role.mapping.dynamic" value="true" />
    <property name="custom.loginmodule.provider" value="true" />
    <property name="role.compare.ignorecase" value="true" />
    </jazn>
    <jazn-loginconfig>
    <application>
    <name>myApp</name>
    <login-modules>
    <login-module>
    <class>com.test.myServerLoginModule</class>
    <control-flag>required</control-flag>
    <options>
    <option>
    <name>maxRetries</name>
    <value>3</value>
    </option>
    <option>
    <name>debug</name>
    <value>true</value>
    </option>
    </options>
    </login-module>
    </login-modules>
    </application>
    </jazn-loginconfig>
    <namespace-access>
    <read-access>
    <namespace-resource root="">
    <security-role-mapping name="myUser">
    <group name="users"/>
    <group name="oc4j-app-administrators"/>
    </security-role-mapping>
    <security-role-mapping name="esp_operator">
    <group name="users"/>
    <group name="oc4j-app-administrators"/>
    </security-role-mapping>
    </namespace-resource>
    </read-access>
    </namespace-access>
    ===============================================================
    3. After the application is deployed on the EAR, I can see the custom login module in system-jazn-data.xml. The command line jazn admin tool lists my custom login module for my application.
    4. I have an RMI client, the client JNDI properties are
    ==============================================================
    java.naming.factory.initial=oracle.j2ee.naming.ApplicationClientInitialContextFactory
    java.naming.factory.url.pkgs=oracle.j2ee.naming
    ==============================================================
    The value for java.naming.provider.url is constructed dynamically and it is ormi://myserver:23791/myapp
    java.naming.security.principal is set to the user who is trying to login, myuser, in this case.
    java.naming.security.credentials is set to the password entered by myuser, password in this case.
    5. I used jazn admin tool to grant login permission to my user.
    ===============================================================
    a. Added user
    java -jar jazn.jar -user oc4jadmin -password welcome -adduser jazn.com myuser password
    b. Grant roles
    java -jar jazn.jar -user oc4jadmin -password welcome -grantrole users ja
    zn.com myuser
    java -jar jazn.jar -user oc4jadmin -password welcome -grantrole oc4j-app
    -administrators jazn.com myuser
    c. Grant RMI permission
    java -jar jazn.jar -user oc4jadmin -password welcome -grantperm jazn.com
    -user myuser com.evermind.server.rmi.RMIPermission login
    ===============================================================
    After the permission is granted, the folowing piece of XML is added to system-jazn-data.xml.
    ===============================================================
         <grant>
              <grantee>
                   <principals>
                        <principal>
                             <realm-name>jazn.com</realm-name>
                             <type>user</type>
                             <class>oracle.security.jazn.spi.xml.XMLRealmUser</class>
                             <name>jazn.com/esp_administrator</name>
                        </principal>
                   </principals>
              </grantee>
              <permissions>
                   <permission>
                        <class>com.evermind.server.rmi.RMIPermission</class>
                        <name>login</name>
                   </permission>
              </permissions>
         </grant>
    ==============================================================
    My principal class is not of type, oracle.security.jazn.spi.xml.XMLRealmUser. Hence, I changed system-jazn-data.xml to include com.test.MyUser instead of oracle.security.jazn.spi.xml.XMLRealmUser. Either way, I get Not Authorized and Login permission not granted for myapp (myuser).
    Can anybody help me out, please?
    Thank you,
    Sri
    Message was edited by:
    user532586

    I finally got it to work. But I have a problem granting RMI Permission "login", if the depth of my Principal class within the inheritance hierarachy is more than one. My hierarachy of my principal class is
    Object --> ObjectA --> ObjectB --> ObjectC --> ObjectD
    ObjectD is my principal class. ObjectB implements java.security.Principal. ObjectA has implementations for methods equals, hashcode and toString. ObjectB has implementations for getName.
    When I try to grant RMI permission for ObjectD, I get an error that says null.
    If I override the methods, equals, hashcode, toString, and getName in ObjectD and provide implementations, I still could not grant permission using jazn tool. I get error that says null. If I update the system-jazn-data.xml with the following grant tag, I could get into the application without any errors.
         <grant>
              <grantee>
                   <principals>
                        <principal>
                             <class>com.test.ObjectD</class>
                             <name>developers</name>
                        </principal>
                   </principals>
              </grantee>
              <permissions>
                   <permission>
                        <class>com.evermind.server.rmi.RMIPermission</class>
                        <name>login</name>
                   </permission>
              </permissions>
         </grant>
    If I create a new class, myPrincipal that implements java.security.Principal, I donot have any problems. I can grant permission and access application.
    Any ideas why I could not use ObjectD as my principal class for granting RMI permission?
    Message was edited by:
    user532586

  • Licensing XML libraries for commercial use...

    After reading the license terms for the XML parser for 'C', I am confused. The license document embedded in the download package, says you need to contact Oracle to license the library for commercial use. However, the click-wrap license for the OTN says you can use the technologies in commercial products. These totally contradict each other. I called Oracle and asked the following question, and after talking with 3 people, nobody knew a difinitive answer.
    Here is the question: If I use the Oracle XML parser for 'C' library in the construction of a commercial application that I am selling, do I need purchase a license from Oracle to do this? If so, who do I contact?
    Thanks,
    - Ted
    null

    It doesn't matter to me as much that the two agreements are different. What I am most concerned with is that BOTH say that I cannot build commercial/for-sale products using the kit without paying for a license. Who do I contact to get a license to use?
    I called the number on the agreement and spoke to people who had no idea what I was talking about, nor who I could talk to.
    Also, since you asked, I have attached the two different sections from the two license agreements below.
    Thanks,
    - Ted
    [email protected]
    DEVELOPMENT ONLY LIMITED LICENSE: Oracle grants Customer a nonexclusive, nontransferable limited license to use the Programs for development purposes only in the indicated operating environment identified by Oracle for a single developer user (one person) on a single computer. Customer may not use the Programs for internal data processing operations or any other commercial or production use. If Customer desires to use the Programs for any use other than the development use allowed under this Agreement, Customer must contact Oracle, or an Oracle reseller, to obtain the appropriate licenses. Customer may make one copy of each licensed Program for backup. No other copies shall be made without Oracle's prior written consent. Customer shall not: (a) remove any product identification, copyright notices, or other notices or proprietary restrictions from Programs; (b) use Programs for commercial timesharing, rental, or service bureau use; (c) transfer, sell, assign or otherwise convey
    Programs to another party without Oracle's prior written consent; (d) cause or permit reverse engineering, disassembly, or decompilation of Programs, except to the extent required for interoperability or to the extent that the foregoing restriction is expressly prohibited by law; or (e) disclose results of any benchmark tests of any Program to any third party without Oracle's prior written approval. This Agreement does not authorize Customer to use any Oracle name, trademark or logo.
    ----->
    II. PROGRAM DISTRIBUTION RIGHTS: Oracle grants to Customer a nonexclusive, nontransferable right to copy and distribute the Programs to third party users ("User(s)") under the terms specified herein, provided that such distribution is free of charge. Prior to distributing the Programs for use by Users, Customer shall require Users to execute a written agreement binding Users to contractual provisions identical to those contained in Section I, III-XI inclusive, a provision specifying that Users shall have no right to distribute the Programs, and a provision specifying Oracle as a third party beneficiary of the User Agreement to the extent permitted by applicable law ("User Agreement"). Customer agrees that it is Customer's responsibility to obtain User Agreements

  • Is it FREE for commercial use?

    Dear all,
    Has been using Skype for the past few years, and mostly for my personal usage.
    Just to clarify something about Skype Licensing, is it FREE for commercial use? For example, I myself and my current/ex colleagues are using Skype for working related purposes, be it just texting or calls or video calls. Do we need to purchase licenses/subscription for commercial use? For your reference, we're from Malaysia.
    Appreciate if anyone there care to explain on this matter.
    Regards,
    Edmund

    I would start by looking at Oracle information - while we can provide hints and give guidance, Oracle is the only legal source for license information.
    My suggestion in general is to use the Oracle site and the Oracle docs, and take a hard copy of that information as backup in case of legal challenges.
    That said, the intent for XE is to provide a 'no license fee to put into production' version of Oracle Database Server. It has limited functionality (no Java in DB, limited storage and memory) so it is not generally a worry for Oracle. The supporting references are
    http://www.oracle.com/technetwork/database/express-edition/overview/index.html - which says "It's free to develop, deploy, and distribute; ..." and
    "Oracle Database XE is a great starter database for:
    Developers working on PHP, Java, .NET, XML, and Open Source applications
    DBAs who need a free, starter database for training and deployment
    Independent Software Vendors (ISVs) and hardware vendors who want a starter database to distribute free of charge
    Educational institutions and students who need a free database for their curriculum
    as well as http://docs.oracle.com/cd/E17781_01/license.112/e18068/toc.htm, in which we read
    "License Rights
    We grant you a nonexclusive, nontransferable limited license to use the programs for: (a) purposes of developing, prototyping and running your applications for your own internal data processing operations; (b) you may also distribute the programs with your applications; (c) you may use the programs to provide third party demonstrations and training; and d) you may copy and distribute the programs to your licensees provided that each such licensee agrees to the terms of this Agreement. You are not permitted to u...'
    YOU ARE ENCOURAGED TO HAVE YOUR LEGAL TEAM LOOK AT THAT LICENSE DOC.

  • Giving grant for creating temporary table only

    hi...
    i want to give grant for creating only temporary tables to a schema.
    no other grants should not be there strictly...
    I have created the following user widout any grants...plss suggest me how can i give the grants for creating only temporary tables..
    create user user_name
    identified by password
    default tablespace table_space
    temporary tablespace TEMP
    profile DEFAULT
    quota unlimited on table_space;
    grant select on V_$SESSION to user_name;
    thanks...
    Edited by: user12780416 on Mar 25, 2011 8:32 AM

    As has been pointed out, it would be **extremely** unusual to want to have a user that could create global temporary tables but not permanent tables. I'm very hard-pressed to imagine a scenario where that would make sense.
    However, if you grant the user the CREATE TABLE privilege but do not grant the user quota on any permanent tablespace, they would be unable to create permanent tables but should be able to create global temporary tables. You'll have to make sure that you don't grant the user UNLIMITED TABLESPACE which would give them unlimited quota on all tablespaces. If you are using 11g and you have enabled deferred segment creation, the users would actually be able to create tables in tablespaces they have no quota on though they would not be able to insert any data in those tables.
    Justin

  • Can i use free VMWare ESXi for commercial use.?

    Hi,
    I know that this question have come up before but I can't find any
    definitive answers. Can i use free VMWare ESXi for commercial use. We
    would like to host
    several customers on a machine running  VMWare ESXi. I want a clear answer so we can do it without any further discussion.
    Thank you all in advance,
    LNN

    If you plan on renting out a VM, then you need to look at the hosting programs - http://www.vmware.com/solutions/hosting/index.html.   The base EULA for ESX and ESXi do not allow for the rental of VMs but I believe it may be possible to get an exemption to that.
    http://communities.vmware.com/message/1016993#1016993
    VMware grants you a nonexclusive, non-transferable license, without rights to sublicense, to  install or have installed a single instance of the Software and each Licensed Additional Module on a single Server, unless permitted to have multiple instances on a single Server or to have multiple instances on multiple Servers by the payment of applicable license fees (whether such fees are based on a per Processor, a per Virtual Machine, a per user or any other VMware approved licensing model); (ii) use the Software and each Licensed Additional Module solely for information processing and computing purposes, including the hosting of computer application-based services from a Virtual Machine and provision of such services via an internal or external network, provided such services may not consist of services to a third party that provide primarily computing or processing power (such as utility computing or grid computing) or any computer application-based service that is traded, rented, leased or sold on a Virtual Machine basis; and (iii) use and reproduce the VMware Virtual Infrastructure Client Software or VMware WebAccess (in object code form only) for the purposes of installation and operation on an unlimited number of your own internal computers or terminals solely for the purpose of accessing the Server on which the Software is installed.

  • How to Modify Search for Leads using Date types in the Assgmnt Block Date

    Hello Experts,
    I have a requirement to modify the search for Leads using Dates in the Assignment Block Dates and using the Posting Date of the transaction.
    Any ideas?
    Thank you in advance,
    Justin

    If you look at the grants, you'll see that there are over 170 objects from the FLOWS_030000 granted to PUBLIC:
    SQL> select count(*) from dba_tab_privs where owner= 'FLOWS_030000' and grantee = 'PUBLIC';
    173
    If we were go grant these privileges to a role, called APEX_APP_RU, and grant this role to APEX_PUBLIC_USER and any schemas an application is linked to (Workspace to Schema), would that be a workable solution?
    The only problem I see right off hand that this might not work is that PUBLIC has synonyms created for the FLOWS_030000 objects. If we revoke the underlying privileges, because of the synonyms, this might not work.
    SQL> select COUNT(*) from dba_synonyms where table_owner = 'FLOWS_030000' and owner = 'PUBLIC';
    176
    Does anyone else have any ideas?

  • IPad Grants for Autistic Children

    i have a friend who has an autistic child who is using the ipad in school and she is seeing a huge improvemnt since he has started using the ipad. She wants to to get an ipad so her child can also use benefit from the ipad's "uniqueness" at home, but price is concern.
    are there grants for special needs children out there that she can take advantage of to help cover the cost or at least help offset the cost of an ipad? also what are the risks of buying a refurbished ipad off the apple store?

    Apple does not have any such programs - you might want to contact a local foundation, or an Autism support group, to find someone who might provide such a grant.
    The refurbished ones are as good as the ones sold new - some claim better, because they've been more thoroughly gone over as part of the refurbishing process than the mass production in the factories.

  • Oracle XE, is it really free for commercial use?

    Hi All,
    I have tried to read and understand the licensing terms of Oracle XE.
    Still want to ask experts,
    Is it free for commercial use?
    If I develop a product and distribute Oracle XE packaged with my product, charging the customer for my product, but not paying anybody for XE, is that legal?
    If I want to develop and use a in-house application in XE is that legal as well?
    Thoughts please.
    Thanks in advance

    I would start by looking at Oracle information - while we can provide hints and give guidance, Oracle is the only legal source for license information.
    My suggestion in general is to use the Oracle site and the Oracle docs, and take a hard copy of that information as backup in case of legal challenges.
    That said, the intent for XE is to provide a 'no license fee to put into production' version of Oracle Database Server. It has limited functionality (no Java in DB, limited storage and memory) so it is not generally a worry for Oracle. The supporting references are
    http://www.oracle.com/technetwork/database/express-edition/overview/index.html - which says "It's free to develop, deploy, and distribute; ..." and
    "Oracle Database XE is a great starter database for:
    Developers working on PHP, Java, .NET, XML, and Open Source applications
    DBAs who need a free, starter database for training and deployment
    Independent Software Vendors (ISVs) and hardware vendors who want a starter database to distribute free of charge
    Educational institutions and students who need a free database for their curriculum
    as well as http://docs.oracle.com/cd/E17781_01/license.112/e18068/toc.htm, in which we read
    "License Rights
    We grant you a nonexclusive, nontransferable limited license to use the programs for: (a) purposes of developing, prototyping and running your applications for your own internal data processing operations; (b) you may also distribute the programs with your applications; (c) you may use the programs to provide third party demonstrations and training; and d) you may copy and distribute the programs to your licensees provided that each such licensee agrees to the terms of this Agreement. You are not permitted to u...'
    YOU ARE ENCOURAGED TO HAVE YOUR LEGAL TEAM LOOK AT THAT LICENSE DOC.

  • I was not warned that audiobooks are a one time download only for those using iCloud to backup. As a result I've lost my audiobook when switching to a new iPhone after the previous phone was damaged. Will Apple refund me for the audio book?

    I was not warned that audiobooks are a one time download only for those using iCloud to backup. As a result I've lost my audiobook when switching to a new iPhone after the previous phone was damaged.
    Will Apple refund me for the audio book?
    the irony of this is that the lost audio books is Steve Jobs biography!
    Starting to wonder about the benefits of Android :-/

    If you haven't been keeping a backup of your downloads (none of your iTunes downloads are included in an iCloud backup, apps, music etc are only redownloadable whilst they remain in your country's store) then you can try contacting iTunes support and see if they will grant you a redownload : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Units for RUN_TOTAL_TIME in DBMS_Profiler

    Hi
    I have run a procedure using DBMS_profiler package
    example
    DECLARE
    l_result BINARY_INTEGER;
    BEGIN
    l_result := DBMS_PROFILER.start_profiler(run_comment => 'do_something: ' || SYSDATE);
    do_something(p_times => 100);
    l_result := DBMS_PROFILER.stop_profiler;
    END;
    I got example
    SELECT runid,
    run_date,
    run_comment,
    run_total_time
    FROM plsql_profiler_runs
    ORDER BY runid;
    RUNID RUN_DATE RUN_COMMENT RUN_TOTAL_TIME
    1 21-AUG-03 do_something: 21-AUG-2003 14:51:54 131072000
    I am not understanding units for RUN_TOTAL_TIME is it in milli sec?
    Thanks in Advance

    It should be same for Mintime or Max time right
    SELECT u.runid,
    u.unit_number,
    u.unit_type,
    u.unit_owner,
    u.unit_name,
    d.line#,
    d.total_occur,
    (d.total_time),
    d.min_time,
    d.max_time
    FROM plsql_profiler_units u
    JOIN plsql_profiler_data d ON u.runid = d.runid AND u.unit_number = d.unit_number
    WHERE u.runid = 4;

  • HT1424 Is VPN really needed for home use?

    Is VPN really needed for home use on the iPad 2?

    I don't have one. The only times I've seen a need for a VPN is when we've had employees that need to access the work network from home, so need to have a connection that meets the work's security to be granted access to the network (our network is inaccessible outside the building without a VPN)

  • What steps do I need to take once Verizon unlocks my sim card for international use on another carrier

    Hi, I am traveling to Romania in a few days. I called Verizon Global Support and had them unlocked my sim card for the 4s.
    They told me there was some steps I had to take after they unlocked it and I will find these steps on the Apple website.
    Well I cant find what they are talking about and my search on the internet is not giving what I want.
    I see things about Sprint 4s and that u must connect your phone to Itunes to complete the unlock process is this the same for verizon ?
    The Verizon Rep told me I will be able to use a Internation Sim but I had to connect my phone to a computer after replacing the International sim and go threw a whole process of Restoring and resetting my phone threw Itunes. Is there true ?  I dont not have a internation sim with me is there any other way to see if its unlock and how the process is ? Do i need to set my phone to only run on GSM when I get there or will the International sim automatically switch the band ?
    I know its alot of question all at once but i just want to get to the point.
    Thanks any help will be appericated

    This is the only thing I could find but it does not answer my question or even what I was told by the Global Support Rep.
    Verizon has confirmed (here and here) they WILL unlock the SIM on the iPhone 4S, allowing for use of local SIM cards while traveling abroad (no word yet on whether this will allow for use on AT&T and T-Mobile.) This is different than the jailbreak unlocking method; SIM unlocking through Verizon is permanent and will not affect your warranty in any way.
    1. Meet the following requirements:
    * Must be a Verizon Wireless customer.
    * The iPhone 4S being unlocked must be active on a Verizon Wireless line of service.
    * The line of service must be active at least 60 days.
    * The line of service must be in good standing for the past 60 days.
    * Only one SIM Unlock per line every 10 months.
    If you don't meet one or more of the above requirements, call anyway. You may still get lucky.
    2. Insert a foreign SIM into the SIM card slot on the side of your phone (only required to confirm that the unlock is successful.)
    3. Call 1-800-711-8300 (Verizon Global Support) and ask the representative for a SIM unlock. Occassionally a representative may not know exactly what you are referring to; make sure you are not transferred to a different department. You are in the right place. Explain that they should have a walkthrough on how to do this, and that it allows for the use of local, non-Verizon SIM cards while traveling abroad.
    4. Get confirmation from the rep that the unlock has been applied to your account, then check your phone to make sure it recognizes your SIM and can connect (if successful it will roam on AT&T, assuming you are calling from the USA.) You will NOT see an unlock confirmation in iTunes as that is for a factory-applied unlock only.
    5. Enjoy your new unlocked iPhone 4S!

Maybe you are looking for