12c : privileges required to create a pdb

I am trying to craete a PDB as a non-sys user
CDB1>sho con_name
CON_NAME
CDB$ROOT
CDB1>select con_id, name, open_mode from v$pdbs;
    CON_ID NAME                                               OPEN_MODE
         2 PDB$SEED                                           READ ONLY
         4 PDB3_COPY                                          READ ONLY
CDB1>create user c##sys identified by oracle;
User created.
CDB1>grant connect, resource to c##sys;
Grant succeeded.
CDB1>grant create pluggable database to c##sys;
CDB1>grant dba to c##sys;
CDB1>conn c##sys/oracle@cdb1
Connected.
CDB1>sho user
USER is "C##SYS"
CDB1>create pluggable database pdb1 from pdb3_copy;
create pluggable database pdb1 from pdb3_copy
ERROR at line 1:
ORA-01031: insufficient privileges
What all minimum privileges are required to create a PDB?
Regards

user12288492 wrote:
I am trying to craete a PDB as a non-sys user
CDB1>sho con_name
CON_NAME
CDB$ROOT
CDB1>select con_id, name, open_mode from v$pdbs;
    CON_ID NAME                                               OPEN_MODE
         2 PDB$SEED                                           READ ONLY
         4 PDB3_COPY                                          READ ONLY
CDB1>create user c##sys identified by oracle;
User created.
CDB1>grant connect, resource to c##sys;
Grant succeeded.
CDB1>grant create pluggable database to c##sys;
CDB1>grant dba to c##sys;
CDB1>conn c##sys/oracle@cdb1
Connected.
CDB1>sho user
USER is "C##SYS"
CDB1>create pluggable database pdb1 from pdb3_copy;
create pluggable database pdb1 from pdb3_copy
ERROR at line 1:
ORA-01031: insufficient privileges
What all minimum privileges are required to create a PDB?
Regards
You can connect as SYSDBA to make it work but based on what you posted you haven't granted SYSDBA to user C##SYS.
If you run your query now as user c##sys:
>
select con_id, name, open_mode from v$pdbs;
>
you should find that it returns no rows. That is also why your CREATE statement fails. Grant SYSDBA to the user and then run that query and you should now see the same PDBs you saw when you connected as SYS.
Also, be careful when you make grants. By default the grant ONLY applies to the current container.
So your 'grant connect to c##sys' only allows that user to connect to the ROOT. The 12C GRANT statement uses a CONTAINER clause whose default is CURRENT. If you want c##sys to be be able to connect to the new PDB either use CONTAINER=ALL or switch to the new PDB and, as SYS, do the grant again for that specific PDB.
You don't need to grant the DBA role to make this work by the way.
May as well mention also that if you use a tool like Toad that isn't 12c aware you are going to see a mess when you look at things like grants since there may appear to be multiple grants of exactly the same type. For instance your CONNECT grant could appear 5 times if the user has the grant for 5 different containers. An older tool won't show you which container the grants are for since they won't be 'container aware'.
See CREATE PLUGGABLE DATABASE in the SQL Reference doc
http://docs.oracle.com/cd/E16655_01/server.121/e17209/statements_6009.htm
That doc lists the prerequisites
>
Prerequisites
You must be connected to a CDB and the current container must be the root.
You must have the CREATE PLUGGABLE DATABASE system privilege.
The CDB in which the PDB is being created must be in READ WRITE mode.
To specify the create_pdb_clone clause:
  If src_pdb_name refers to a PDB in the same CDB, then you must have the CREATE PLUGGABLE DATABASE system privilege in the root of the CDB in which the new PDB will be created and in the PDB being cloned.
  If src_pdb_name refers to a PDB in a remote database, then you must have the CREATE PLUGGABLE DATABASE system privilege in the root of the CDB in which the new PDB will be created and the remote user must have the CREATE PLUGGABLE DATABASE system privilege in the PDB to which src_pdb_name refers.
>
Did you notice that part about having CREATE PLUGGABLE DATABASE in 'the PDB being cloned'? You haven't done that.
The doc also has an example of cloning:
>
Cloning a PDB From an Existing PDB: Example The following statement creates a PDB newpdb by cloning PDB salespdb. PDBs salespdb and newpdb are in the same CDB. Because no storage limits are explicitly specified, there is no limit on the amount of storage for newpdb. The files are copied from /disk1/oracle/salespdb/ to /disk2/oracle/newpdb/. The location of all directory object paths and paths contained in certain parameters associated with newpdb are restricted to the directory /disk2/oracle/newpdb/.
CREATE PLUGGABLE DATABASE newpdb FROM salespdb  FILE_NAME_CONVERT = ('/disk1/oracle/dbs/salespdb/', '/disk1/oracle/dbs/newpdb/')  PATH_PREFIX = '/disk1/oracle/dbs/newpdb'; 
>
Note in particular the use of the FILE_NAME_CONVERT clause to tell Oracle how to name and where to put the new files.
The common reasons for your use case
1. the CDB is not open in READ WRITE
2. the CREATE PLUGGABLE DATABASE role was not created in the PDB being cloned or that role is not a DEFAULT role for your user.
3. the PDB you are cloning has not been opened READ ONLY
4. the user is not connected as SYSDBA (only needed if the grants are not done individually and manually)
NOTES: you opened the source DB in READ ONLY mode BEFORE you created the common user c##sys and granted the privileges. That prevented Oracle from creating that user in the source DB. When you create a common user Oracle will also create that user automatically in any PDB that is already opened READ WRITE.
The same goes for the grants when you use CONTAINER = ALL; that only creates the grants if the PDB is writeable. You need to be VERY CAREFUL when you create common users and issue grants to them to make sure you know which containers (PDBs) are open or you may have similar issues in the future. The only way you can correct those problems later is to connect to reissue the grants from the ROOT after the previously closed PDBs are open or to connect to the PDB and manually create the user and grants.
Also your c##sys user won't be able to drop that PDB because you didn't grant that privilege. And if you do drop the PDB and use INCLUDING DATAFILES the directory itself won't be deleted.
You can get a mess on your hands real quick if you don't create an architecture document ahead of time that identifies what the structure should be for the different containers.
And just a reminder - we can't tell you HOW things are supposed to work in 12c. At best we can try to tell you how they DO work. So I have NO IDEA if Oracle intended PDB creation to require being connected as SYSDBA rather than just having the DBA role but that is how it works for me if you don't grant CREATE PLUGGABLE DATABASE in the PDB being cloned.

Similar Messages

  • SELECT PRIVILEGES required on Materialized View Logs

    Hi,
    I have a scenario where in Base table exists in one database and Materialized View on other.
    The Materialized View is created with FAST REFRESH option.
    I have created Materialized View Log in database where master table exists.
    Also I have given Select priv on master table to the user(where MV is created).
    I want to know how will i Grant SELECT PRIV on Materialized View Log so that FAST refresh happens.
    Both databases are Oracle 10g R2.
    I have read following on oracle site:
    The owner of the materialized view must have the CREATE TABLE system privilege. The owner must also have access to any master tables of the materialized view that the schema owner does not own (for example, if the master tables are on a remote database) and to any materialized view logs defined on those master tables, either through a SELECT object privilege on each of the tables or through the SELECT ANY TABLE system privilege.
    Please tell me the command to GRANT SELECT to the user who has created MV.
    Thank You,
    Niranjan.

    Hi,
    The privileges required to create a materialized view should be granted directly rather than through a role
    To create a materialized view in your own schema:
    1- Grant CREATE MATERIALIZED VIEW system privilege and either the CREATE TABLE or CREATE ANY TABLE system privilege.
    2-You must also have access to any master tables of the materialized view that you do not own, either through a SELECT object privilege on each of the tables or through the SELECT ANY
    TABLE system privilege.
    To create a materialized view in another user's schema:
    1-You must have the CREATE ANY MATERIALIZED VIEW system privilege.
    2-The owner of the materialized view must have the CREATE TABLE system privilege. The owner must also have access to any master tables of the materialized view that the schema owner does not own (for example, if the master tables are on a remote database) and to any materialized view logs defined on those master tables, either through a SELECT object privilege on each of the tables or through the SELECT ANY TABLE system privilege.
    To create a refresh-on-commit materialized view (ON COMMIT REFRESH clause), in addition to the preceding privileges, you must have the ON COMMIT REFRESH object privilege on any master tables that you do not own or you must have the ON COMMIT REFRESH system privilege.
    see this link
    http://download.oracle.com/docs/cd/B12037_01/server.101/b10759/statements_6002.htm

  • Privileges require for a user to create CONTEXT indexes

    Hi all,
       RDBMS: 11.2.0.3
       SO.......: OEL 6.3
       What are the necessary privileges that have to be granted to a user to be able to create CONTEXT Indexes, for example. I have granted the CTXAPP to my user, but when i tryied to create the CONTEXT Index with the command bellow, i got an "insufficient privilege" error message.
       CREATE INDEX USR_DOCS.IDX_CTX_TAB_DOCUMENTOS_01 ON USR_DOCS.TAB_DOCUMENTOS(DOCUMENTO) INDEXTYPE IS CTXSYS.CONTEXT PARAMETERS ('SYNC (ON COMMIT)');

    It depends on whether the user is trying to create the index on his own table in his own schema or on somebody else's table in somebody else's schema.  The following demonstrates minimal privileges (quota could be smaller) for user usr_docs to create the index on his own table in his own schema and for my_user to create the index on usr_docs table in usr_docs schema.
    SCOTT@orcl> -- version:
    SCOTT@orcl> SELECT banner FROM v$version
      2  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0    Production
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    5 rows selected.
    SCOTT@orcl> -- usr_docs privileges:
    SCOTT@orcl> CREATE USER usr_docs IDENTIFIED BY usr_docs
      2  /
    User created.
    SCOTT@orcl> ALTER USER usr_docs QUOTA UNLIMITED ON users
      2  /
    User altered.
    SCOTT@orcl> GRANT CREATE SESSION, CREATE TABLE TO usr_docs
      2  /
    Grant succeeded.
    SCOTT@orcl> -- my_user privileges:
    SCOTT@orcl> CREATE USER my_user IDENTIFIED BY my_user
      2  /
    User created.
    SCOTT@orcl> GRANT CREATE SESSION, CREATE ANY INDEX TO my_user
      2  /
    Grant succeeded.
    SCOTT@orcl> -- user_docs:
    SCOTT@orcl> CONNECT usr_docs/usr_docs
    Connected.
    USR_DOCS@orcl> CREATE TABLE tab_documentos (documento  CLOB)
      2  /
    Table created.
    USR_DOCS@orcl> INSERT ALL
      2  INTO tab_documentos VALUES ('test data')
      3  INTO tab_documentos VALUES ('other stuff')
      4  SELECT * FROM DUAL
      5  /
    2 rows created.
    USR_DOCS@orcl> CREATE INDEX USR_DOCS.IDX_CTX_TAB_DOCUMENTOS_01
      2  ON USR_DOCS.TAB_DOCUMENTOS(DOCUMENTO)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  PARAMETERS ('SYNC (ON COMMIT)')
      5  /
    Index created.
    USR_DOCS@orcl> DROP INDEX usr_docs.idx_ctx_tab_documentos_01
      2  /
    Index dropped.
    USR_DOCS@orcl> -- my_user:
    USR_DOCS@orcl> CONNECT my_user/my_user
    Connected.
    MY_USER@orcl> CREATE INDEX USR_DOCS.IDX_CTX_TAB_DOCUMENTOS_01
      2  ON USR_DOCS.TAB_DOCUMENTOS(DOCUMENTO)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  PARAMETERS ('SYNC (ON COMMIT)')
      5  /
    Index created.

  • What are the minimum db user privileges required for CDC?

    What are the minimum privileges required for the source data server user in order to to successfully implement CDC
    Currently I'm getting an "Insufficient privileges" error when trying to start a CDC journal on a model. The error is happening on the step that creates a trigger on the table in the source schema.
    Here's the situation:
    The data server uses the user "ODI_TEMP" for its connection. ODI_TEMP has been granted select privileges on the desired tables in the source schema. When starting the CDC journal on the model for the source schema, ODI tries to create a trigger on the source tables. This fails since the ODI_TEMP user can't create triggers on anything outside of it's own schema. For obvious fundamental security reasons, we cannot give the ODI_TEMP user the CREATE ANY TRIGGER system privilege on the data source.
    Journalizing is set up using JKM Oracle Consistent. ODI is 11g, DB is 11g.

    Hi,
    You can go for this
    Grant CREATE ANY TRIGGER system privilege to ODI_TMP
    Start the Journal , it will create triggers in ODI_TMP schema for the tables present in your source schema.
    Now revoke CREATE ANY TRIGGER system privilege from ODI_TMP.
    It will continue to work .. only when you are restarting the journal (due to adding or removing some tables in CDC) , you will be requiring CREATE ANY TRIGGER privilege.
    Thanks,
    Sutirtha

  • Error when creating Oracle12c PDB using DBCA response file in silent mode

    I am getting an Oracle dbca NullPointerException when trying to create a PDB (Pluggable Database) usingdbca response file in silent mode.
    I have a Oracle 12c CDB up and running, listener is also up, $ORACLE_HOME and $ORACLE_SID are also set correctly.
    After database install and creating CDB using response files, I am now trying to create a PDB using dbca response file. Contents of dbca.rsp -
    [GENERAL]
    RESPONSEFILE_VERSION = "12.1.0"
    OPERATION_TYPE = "createPluggableDatabase"
    [CREATEPLUGGABLEDATABASE]
    SOURCEDB = "orcl"
    PDBNAME = "dev"
    CREATEPDBFROM = "DEFAULT"
    PDBADMINUSERNAME = "oracle"
    PDBADMINPASSWORD = "oracle"
    CREATEUSERTABLESPACE = "true" 
    I tried following commands:
    dbca -silent -responseFile /<file path>/dbca.rsp dbca -silent -createPluggableDatabase -responseFile /<file path>/dbca.rsp
    Both give same error:
    ---- Begin output of /u01/app/oracle/product/12c/db_1/bin/dbca -silent -responseFile /<file path>/dbca.rsp
    STDOUT:
    STDERR: Exception in thread "main" java.lang.NullPointerException
    at oracle.sysman.assistants.dbca.backend.CommandLineArguments.processResponseFile(CommandLineArguments.java:6885)
    at oracle.sysman.assistants.dbca.backend.CommandLineArguments.process(CommandLineArguments.java:4544)
    at oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:110) at oracle.sysman.assistants.dbca.Dbca.main(Dbca.java:184)
    However when I pass exact same parameters as command line arguments, dbca works absolutely fine and PDB is created: Following command runs succefully.
    dbca -silent -createPluggableDatabase -sourceDB orcl -pdbName dev -createPDBFrom default -pdbAdminUserName oracle -pdbAdminPassword oracle -createUserTableSpace true
    My environment need installation using response files only. I had used a dbca response file with "createDatabase" option for CDB and it worked fine. Error is observed only when I run it with OPERATION_TYPE as "createPluggableDatabase".
    There is an option to create PDBs along with CDB creation when OPERATION_TYPE is "createDatabase". But Oracle does not give flexibility to name PDBs in this option. If I ask Oracle to create 3 PDBs, it will name them itself like PDB01, PDB02, PDB03 and so on. This doesn't work in my deployment because of applications compile time dependencies on specific PDB names.

    Yes, I am pointing to correct response file. I have two of these. One for "createDatabase" and another one for "createPluggableDatabase".
    While the first one works absolutely fine, the one which creates PDBs always gives error.
    I tried renaming the response file like dbca_dev.rsp for PDB install but same error message. I read in another forum that rename dbca.rsp is not a good idea.
    So I kept it as dbca.rsp but built it using PDB template.
    When I try after removing -silent, it tries to launch a UI installer. Since I am in Amazon AWS platform, my instance is CentOS based which doesn't support Xwindows display.
    I am stuck with -silent install only. When I try with -progressOnly, I get exactly same error.
    Also tried removing some parameters but still get exact same error message.
    Tried same trick with "createDatabase" response file, now I see parameters missing error message.
    It seems like Oracle doesn't like response file install for "createPluggableDatabase".

  • Privileges required for database backup with RMAN

    Hello,
    We have 10g R2 on Solaris box. We use RMAN for backup and use the SYS account on the database to connect and take the backup.
    Are there specific privileges that are required to take the database backup , so that I do not use the SYS account or the syspassword in the RMAN script.
    I want to create an account and give only the privileges required to take the database backup and recover .
    Thanks

    I think RMAN needs the SYSDBA privilege, so you won't gain much by switching from SYS to another user.
    You don't need to store sys/password in a script. You can just :-
    rman target / catalog xxx/yyy@catalog

  • Privileges required to access full list of EPM shortcuts

    Hi,
    I have suffering the next issue:
    Two weeks ago we installed all Hyperion EPM 11.1.1.3 platform using a domain admin account that also belonged to local admin account group (user A). Installation was succesfull. Some day after it was required to create a different user in server machine for dev purposes. This user (user B) also belongs to local admin account group and also exists in the domain with less privileges that the user used in the install. To my surprise when a user is logged in server as user B it does not see the same shorctuts in the Oracle EPM System folders that are usuarlly available. For instance: The Shared Service Console shortcut does not appear.
    Do you know which are the right privileges required in a windows user to access all installed stuff?
    Alfons

    forgot to mention,... this is for SQL Developer 1.5, although if there is a list for 2.1 EA, that would also be helpful (assuming there are additions in 2.1).

  • How to make metadata fields required when creating folders

    Hello all....
    Related issue with SR 3-6472229431 and SR 3-6471130611.
    We're using DIS 11.1.6 64-bits (2011_11_29 (rev 9756) 11.1.6.97) in a Windows 7 64-bits workstation (with UCM 11.1.1.5 in a Linux machine). The check-in of images to UCM goes fine.
    I'm trying to make some metadata fields required when creating a folder. These fields are required when making a check-in, but not when creating folders.
    Folders_g is enabled. DesktopTag too.
    EDIT: Patch: 14695303 - WCC 11.1.1.5.0 BUNDLE ( MLR 16 ) NOV 6 2012 applied.
    Is it possible?
    Thanks for all.
    Edited by: fgomes on 22/11/2012 03:24

    After reading your response and rereading the original question a bit closer, the metadata prompting feature does not apply to creating new folders, only content.
    Again, though, I think the focus here is in the wrong place. The metadata applied to a folder is intended to be ultimately applied to the content. You can build global rules that fire on submission of content to check if a field has a value, and throw an error if the value is empty.
    If you expect users to create folders (and actually apply any metadata to the actual folder itself), you will be disappointed. Experience shows that users are not interested in that level of detail when creating content, let alone folders. Letting typical users create folders is a bad idea anyway, as they tend to create the same inefficient folder structures they previously created in file shares within Content Server.
    If you need to tightly control folder attributes, you'll be better served by locking down the ability to create new folders. Otherwise you're looking at some type of customization. Keep in mind that you won't be able to customize the right click behavior of DIS. Any changes to DIS would have to be an enhancement request.

  • What is the system privilege required to grant "Analytic Privilege" to a user

    Hi SCN,
    I have the user with following privileges:
    SYSTEM Privileges: CATALOG READ,CREATE STRUCTURED PRIVILEGE,DATA ADMIN,STRUCTUREDPRIVILEGE ADMIN,USER ADMIN
    PACKAGE Privileges: SECURITY
    OBJECT Privileges: _SYS_BI,_SYS_BIC and REPOSITORY_TEST
    Am able to create a AP, but not able to assign to a user.  Checked different threads and documents, Am able to add with "SYSTEM" user but not with the generic user i have
    I can't do tracing as it is disabled in the client system
    Am i missing something here? Can someone help me please?
    Regards,
    Krishna Tangudu

    Thank you so much Raj.
    I was expecting this kind of privilege under SYSTEM PRIVILEGE.
    So other privileges which i mentioned are fine right?
    Regards,
    Krishna Tangudu

  • Steps required to create apps to implement various web parts functionality

    I have office 365 E3 a/c.
    For a site we have to create few apps whoose required functionality is like
    1. Newsfeed Webpart
    2. Blog webpart (source is library)
    3. CQWP
    4. Carousel web part
    5. Calendar control
    Please tell all steps required to create apps for above mentioned functionality.
    What will be steps and plan for this?

    Hi,
    According to your post, my understanding is that you want to create apps to implement various web parts functionality.
    You can use CQWP in the SharePoint Online. You can refer to:
    When to use the Content Query Web Part or the Content Search Web Part in SharePoint - SharePoint Online for enterprises
    In addition, there are some great articles about other web part for your reference:
    Data Viewer App for SharePoint Online
    Corporate News App
    Creating a SharePoint Cloud Business App Step by Step!
    Blog - Deploy A LightSwitch Application To Office 365 / SharePoint Online (Provider Hosted)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Files required when creating add-on installer exe

    Dear All Gurus/Experts,
    I couldn't find out and almost give up to create installer of add-on. The add-on created using VB6. It is UI API addon (I know it based on answers to several add-on topic posted to this forum).  When I want to create installer exe, I use 3 files : application.exe (vb exe), AddOnInstallAPI.dll and EndInstall.exe (vb exe). In the installer software, there is a feature named include installer that could be tick or not.  Is this correct ? is it only application file required to create the installer ?
    I appreciate your answers. TIA
    Rgds,

    You can use B1DE setup wizards also for addons built with VB6 or any other
    language. It just takes the name of your addon files (executables / dll / etc) and
    builds for you a B1 addon setup. Just as easy.
    Regarding your thoughts about easiness of producing addons. This is exactly the
    objective of B1DE. It contains several wizards to generate automatically code (in
    C# or VB.NET) for your addons and shield you from all the needed mechanics
    related to SDK.
    And the tools do not stop only with development. You can download from here
    also certification tools, profilers, browsers, test automation, etc etc etc. Go
    under Business One SDK tools and download them. Several thousands of SDNers
    already did.

  • Authorization required for creating new Organizational units

    Hi all,
    How can we give authorization required for creating new Organizational units (IMG – CRM – Master Data – Organizational Management – Organizational Model – Create Organizational Model) to a particular user?
    Thanks and Regards,
    Archana

    the basis guy should be able to help.
    at a higher level: you need to set authorizations to the roles assigned, the transaction code is pfcg.
    you may create a new role with the required authorization and assign to the relevant users.
    hope it helps..
    regards
    RH

  • Authorization required for creating new Organizational units in CRM

    Hi all,
    How can we give authorization required for creating new Organizational units (IMG – CRM – Master Data – Organizational Management – Organizational Model – Create Organizational Model) to a particular user?
    Thanks and Regards,
    Archana

    Hi archana,
    U can Create a role through Transaction PFCG.
    Just create a role and assign the tcode PPOCA_CRM if u want to give the user just only this authorization otherwise u can select the menu list from sap menu and assign this role to that user.
    Another way is if that user already exist in that system then just assign that particular transaction codr with that user.
    Hope it will help u
    Regards
    Subhash

  • Requirement to create a Tcode ZF2KEE

    Hi Gurus,
    I have requirement to create a Tcode ZF2KEE by copying the TCODE 2KEE.
    I have to add Cost Center in the Selection Screen and also show the Cost Center at the output Corresponding to the Profit Center comes at the output.
    My Question is that from Which database table i can get the get the Values of Cost Centers Corresponding to the  Profit Centers at the output.

    Hi Sandipan,
    This may not be that straightforward.
    The 2KEE report is based out of GLPCT Tables which is a summary table and doesn't have cost center in it. The cost center is present in the GLPCA (line item table) only.
    Report KE5Z is a line item level report and has cost center in the output. Maybe you can check with your user if they can use KE5Z and then filter on the cost center in the output, then you may not need to create a custom report.
    Regards

  • What permissions require to create CASES (Service Module). Creating new role.

    Hi All,
    Can you please suggest me what permission require to create new case from service module. Steps is below i followed to create case and assigned to user.
    1- Created new blank role.
    2- Went in service module.
    3- Given the Create, Read, Write, Append & Append To permission to CASE entity on organization Level.
    4- Assigned this role to user.
    After assigning this role login into crm online and trying to create case. Its giving message "Insufficient Permission".
    Kindly suggest me the steps i am missing here. Want to assigned single custom created role.
    Thanks in Advance

    Hello,
    Recheck following article -
    http://www.powerobjects.com/blog/2015/02/13/access-denied-identify-fix-security-role-issue/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+PowerobjectsMicrosoftCrmBlog+%28PowerObjects+Microsoft+CRM+Blog%29
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

Maybe you are looking for

  • Error Message when opening Apps in PSE10

    I don't have any issues opening external Apps such as IPhoto, PSE Organizer, ACDSee outside of PSE10.  All of my photo's and elements are stored on these three programs and work fine on their own. However when I open PSE10 and try to open and access

  • All the printing sent to 8500A is seen as a fax therefore no printing

    Hi, My 8500 will not print because it sees all printing as a fax,  it will not print any thing.  I have renamed printer and reset its default status but it still won't print. Cotuitim

  • Junk displayed on screen

    new to firefox 19.0... have windows xp and ie8 and have no problem reading news paper via link sent in e-mail... Started using e-mail on fire fox... I do get some ads with jibberish.. I dont care... but cant read the newspaper when I use the link via

  • AirTunes Remote Speaker Problem

    Since updating iTunes to version 7.1 [and then 7.1.1] I've been unable to connect to my Airport Express remote speaker via iTunes. The speaker show up on the list but states that: "The Remote speaker ___ is not compatible with this version of iTunes.

  • How to stop broadcasted jobs

    Hello Experts, We have to stop the broadcasted jobs and un schedule the jobs for the time being. How to unchedule the broadcasting jobs? Thanks in advance, Venkay