Permission to create objects under different USER

Hi there,
I´d like to know what privileges are used to allow a user to create objects (tables, indexes, triggers, procedures) under another user.
Example: I´m logged with user TOM and want to be able to run the following DDL:
CREATE TABLE MAT.TEST_TABLE (
FIELD1 NUMBER,
FIELD2 VARCHAR2(50)
Thanks a lot,
Bruno

With user SYS
Grant connect,resource to tom;With user TOM
CREATE tom.TEST_TABLE (
FIELD1 NUMBER,
FIELD2 VARCHAR2(50)
);Edited by: Salim Chelabi on 2009-01-15 10:31

Similar Messages

  • How can I see the Query view created for a different user

    Hi All,
    How can a user see the View of a query created for a different user??
    I would like some info about how to give access ( if it is a access problem) or tell me the steps to do that.
    Regards, Federico

    Hi all,
    Maybe I didn't explain me as i should or maybe you dont know what is a Query View. Lets try again, showing you the steps to open a "Query view".
    This way is from Bex Analyzer (Excel)
    I open the Bex Analyzer and connect to the system -> Open query -> Under "Type" choose "Query View"...this is just a different view of the original query (more or least columns/rows).
    This way is from Bex Web:
    Once you open/execute the query, you have a ComboBox to choose the view (previously saved)
    The problem that we have is that the views created for a user, can NOT be found by other user. The only user who can is the owner.
    Could it be an authorization problem? or is ther any configuration possible to see it?
    Thanks in advance, Federico

  • DSC powershell xwindowsprocess to execute batch file under different user account

    DSC powershell run under "NT AUTHORITY\SYSTEM".
    I am trying to execute a batch file under different user account using xwindowsprocess in DSC resource kit.
    I created a custom dsc resource with 3 parameters namely Exepath, Arguments, Credential.
    I received those parameter values in settargetresource method.
    CallPInvoke
    [Source.NativeMethods]::CreateProcessAsUser(("$ExePath "+$Arguments), $Credential.GetNetworkCredential().Domain, $Credential.GetNetworkCredential().UserName, $Credential.GetNetworkCredential().Password)
    I tested it by invoking a batch file and writing username under which it executes to a text file.
    After executing, the output text file still contains the "Systemname$".

    Configuration Sample_xService_ServiceWithCredential
    param
    [string[]]
    $nodeName = 'localhost',
    [System.String]
    $Name,
    [System.String]
    [ValidateSet("Automatic", "Manual", "Disabled")]
    $StartupType="Automatic",
    [System.String]
    [ValidateSet("LocalSystem", "LocalService", "NetworkService")]
    $BuiltInAccount="LocalSystem",
    [System.Management.Automation.PSCredential]
    $Credential,
    [System.String]
    [ValidateSet("Running", "Stopped")]
    $State="Running",
    [System.String]
    [ValidateSet("Present", "Absent")]
    $Ensure="Present",
    [System.String]
    $Path,
    [System.String]
    $DisplayName,
    [System.String]
    $Description,
    [System.String[]]
    $Dependencies
    Import-DscResource -Name MSFT_xServiceResource -ModuleName xPSDesiredStateConfiguration
    Node $nodeName
    xService service
    Name = $Name
    DisplayName = $DisplayName
    Ensure = $Ensure
    Path = $Path
    StartupType = $StartupType
    Credential = $credential
    $Config = @{
    Allnodes = @(
    Nodename = "localhost"
    PSDSCAllowPlainTextPassword = $true
    #Sample Scenarios
    $credential = Get-Credential
    Sample_xService_ServiceWithCredential -ConfigurationData $Config -Name "Sample Service" -DisplayName "Sample Display Name" -Ensure "Present" -Path "C:\DSC\TestService.exe" -StartupType Automatic -Credential $credential
    ¯\_(ツ)_/¯

  • Problem with background job using SUBMIT under different user

    Hi All,
    I am submitting a background job under different user name. I am submitting this job by using JOB_OPEN , SUBMIT report and JOB_CLOSE. But submit statement is returning sy-subrc 8, becuase of this the job_close is failed. Can you please help me to solve this problem.
    Thanks in advance.
    Tjgupta

    Hi,
    The user is having all authorizations. is there any difference with user types?
    This user is having  user type " as communication data".
    Thanks,
    Tjgupta

  • Can you use home share where there are 2 itunes on the same computer but under different user profiles?

    Can you use 'Home Share' where there are 2 itunes on the same computer, but under different user profiles?

    check out method one from this support article -> How to use multiple iPods, iPads, or iPhones with one computer

  • Node Manager starting managed servers under different users

    Hi all,
    I have multiple domains running on the same server.
    Is it possible to get node manager to start managed servers from different domains under different users?
    Default is the user under which node manager was started originally.
    Thanks
    Arnaud

    Oracle documentation is still in confussion state for Unix platform nodemanager.
    NodeManager Admin Guide had chapter 3 for General configuration of nodemanger. Chapter 5 is for script based nodemanager.
    In chapter 5 there is clear way defined for " Starting a node manger for Unix machine".
    chapter 3 is mess there is clear-cut direction to reach the remote startup of servers.
    Why we have so many types of nodemanager for connect. howbout start them?
    Can someone expert in Oracle WebLogic please respond to this.
    *Nodemanagers are NOT meant for multiuser development env.
    They are defined for production env and for HA, FailOver.*
    Edited by: PavanBhavanishekhar on Jan 6, 2010 9:10 PM

  • Merge transports under different users

    Hi All,
    My requirement is to merge two transports under different user.
    Please let me know how can I do this.
    Regards,
    Shahu

    Hi,
    First change the owner of the Request to the other person, such that both the requests are under single owner.
    Then release them and merge using SE09 SE10 T codes:
    select the request and right click-> Merge requests.
    Regards,
    Anji

  • I log in under different user and can not use our pictures on iPhoto, how can i use them under different user?

    After creating and signing in under a different user on imac, how can i use iphoto pictures?

    If you want to access the same library from different user accounts on your Mac put the library on an external hard drive connected to the iMac and make sure it's formatted OS X Extended (journaled) with ownership set to be ignored.
    OT

  • Is it posible to create objects with different names dinamically?

    Hi,
    I'm creating an app that manages different wireless nodes in a network and I was thinking that I could create a class called Node which would have a constructor that every time I created an object Node, I would pass the address and some other data about the Node and the constructor will save all that data and also create a unique ID for every Node object.
    Now the problem is that I need to be able to discover all the nodes in my network every time the user clicks a Ping button. So every time the users clicks Ping I need to do a ping and create as many Node objects as nodes I have in my network. The thing is I don't know how to make it create the node objects with different names so after I've created all the nodes objects I can refer to one of them.
    Something like this.
    int Id=0;
    id++;
    Node node+Id = new Node();
    I think its not possible to do something like that. If it isn't how can I do to refer to one of the objects I've created?
    Thanks.

    Twistx77 wrote:
    Thanks to both of you. I'll check out the Link and if I can't find the solution there I'll make the array , I don't know how I didn't think about doing that. There are two collections you should study specifically:
    First you have the ArrayList which in essense is a growable array. This means you don't have to decide in advance how big it can be.
    Second there's the HashMap. It's sometimes called an associate array. Such an array doesn't have fixed position indexes like an ordinary array. Instead each index (called key) is associated with a value but the keys don't have any particular order. Still, given a certain key, finding the corresponding value in a HashMap is almost as fast as an array access.

  • Execute process (shell script) under different user

    Hi,
    is it possible to use the ProcessBuilder oder .exec()-method to execute a shell script under a JVM-different user? I need to start shell scripts for different system users and I don't want to use SUDO or a wrapper script to switch to the required user. I would like to define the user at java level. Is this possible?
    Best regards,
    Thomas

    looking for something like this too.
    currently i am relying on a script in which i have to set the user as:
    "su username -c java_program"
    the problem with this approach is that if youre not running as root, then su asks for a password, thereby halting execution. (tried input redirects and here-docs, (some popular linux tricks), they did not work)
    so you have to be root for the script option to work.
    if anyone can suggest a more "java based" way of executing a process as a different user , thatll be awesome.

  • Starting WebLogic under different user ID

    I have my Weblogic servers that were built in a Windows 2000 server environment. They were built with the user ID of "Administrator". The servers have been since rebooted and started under my user ID. I am an "Administrator user" It appears there may be a "cache" problem because I cannot get the service to run correctly unless the server is started as "Administrator". Would I be able to correct this be copying the Administrator profile over mine? Any other suggestions aside from starting the server each time as “Administrator”? I appreciate any help available.

    Hi,
    Go through the following link,In that you will get exact information on this issue.
    http://e-docs.bea.com/wls/docs90/server_start/overview.html#1068948
    Regards
    Anilkumar kari

  • Permission to Create Objects

    Hello-
    I would like to create objects for my PL/SQL routines but when I try the following:
    <code_snippet>
    CREATE OR REPLACE TYPE phone_t AS OBJECT(
    m_type CHAR;
    m_number VARCHAR(10);
    m_extension VARCHAR(8);
    CONSTRUCTOR FUNCTION phone_t(a_type CHAR, a_number VARHCAR(20), a_extension(10))
    RETURN SELF AS RESULT
    </code_snippet>
    I get:
    <error>
    SQL> @phone.pks
    CREATE OR REPLACE TYPE phone_t AS OBJECT(
    ERROR at line 1:
    ORA-01031: insufficient privileges
    </error>
    I have the following permissions:
    CREATE SESSION     
    CREATE TABLE     
    CREATE SYNONYM     
    CREATE VIEW     
    CREATE SEQUENCE     
    CREATE DATABASE LINK     
    CREATE ROLE     
    CREATE PROCEDURE     
    CREATE TRIGGER     
    What do I need to ask for?
    Thanks for your help,
    Greg Lindstrom
    NovaSys Health
    Little Rock, Arkansas (USA)

    You need to have "CREATE TYPE" granted to you for creating Object types.

  • Sharing files on same iMac under different users

    i have two different user accounts set up on my iMac and i want to be able to have the files from both accounts open to each other or either just merge them together.does anybody know how to help one way or the other?

    Transferring files from one User Account to another

  • Firefox 14 crashes on start up, in safe mode, trying to create new profile, after complete removal and reinstall, when run under different user

    AdapterDeviceID: 0x2a02
    AdapterVendorID: 0x8086
    Add-ons: {972ce4c6-7e08-4474-a285-3208198ce6fd}:14.0.1
    BuildID: 20120713134347
    CrashTime: 1342625511
    EMCheckCompatibility: true
    Email: (email removed)
    FramePoisonBase: 7ffffffff0dea000
    FramePoisonSize: 4096
    InstallTime: 1342622791
    Notes: AdapterVendorID: 0x8086, AdapterDeviceID: 0x2a02GL Context? GL Context+ GL Layers? GL Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 1909
    StartupTime: 1342625464
    Theme: classic/1.0
    Throttleable: 1
    Vendor: Mozilla
    Version: 14.0.1
    This report also contains technical information about the state of the application when it crashed.
    Deleted all of these and reinstalled
    /Users/<user_acct>/Library/Application Support/Firefox/
    /Users/<user_acct>/Library/Caches/Firefox/
    /Users/<user_acct>/Library/Preferences/org.mozilla.firefox.plist
    I have tried rebooting, running Disk Utility and repaired permissions, and checked I have admin privileges.
    I have Reset Launch Services in Snow Leopard.
    I have created a test account
    System Preferences > Users & Groups create a "Test Account"
    then tried launching FF from there = crash
    I have installed FF 13.0.1
    AdapterDeviceID: 0x2a02
    AdapterVendorID: 0x8086
    Add-ons: {972ce4c6-7e08-4474-a285-3208198ce6fd}:13.0.1
    BuildID: 20120614114901
    CrashTime: 1342642579
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 7ffffffff0dea000
    FramePoisonSize: 4096
    InstallTime: 1342642540
    Notes: AdapterVendorID: 0x8086, AdapterDeviceID: 0x2a02GL Context? GL Context+ GL Layers? GL Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 26
    StartupTime: 1342642569
    Theme: classic/1.0
    Throttleable: 1
    URL: http://www.mozilla.org/en-US/firefox/13.0.1/firstrun/
    Vendor: Mozilla
    Version: 13.0.1
    I have installed version 12 and
    AdapterDeviceID: 0x2a02
    AdapterVendorID: 0x8086
    Add-ons: {972ce4c6-7e08-4474-a285-3208198ce6fd}:12.0
    BuildID: 20120420145725
    CrashTime: 1342643047
    EMCheckCompatibility: true
    FramePoisonBase: 7ffffffff0dea000
    FramePoisonSize: 4096
    InstallTime: 1342643035
    Notes: AdapterVendorID: 0x8086, AdapterDeviceID: 0x2a02GL Context? GL Context+ GL Layers? GL Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    StartupTime: 1342643035
    Theme: classic/1.0
    Throttleable: 1
    URL: http://www.mozilla.org/en-US/firefox/12.0/firstrun/
    Vendor: Mozilla
    Version: 12.0
    no crash ids since this is version 3.6, the only version that doesn't crash, and I have to use Firefox for work stuff.
    I have submitted over a hundred crash reports and included my email, but no one has ever contacted me with any help. This has been going on for weeks. I have been forced to use an outdated version of FF because no one has bother to get back to me. I would be happy to update to 14 and start the crash cycle again if someone wants to give me some suggestions I haven't tried already.
    BTW, no font conflicts or RAM problems, (someone else's issue)

    Maybe you did't understand my previous statement. There are no crashes in FF 3.6, There is no previous evidence FF 14 was ever here, I completely uninstalled all trace of Firefox, no app data, no preferences, no cache. I will upgrade to FF14 so I can send IDs,
    so here ya go.
    Crash ID: bp-fa9da320-92dc-47f7-afff-33e702120718
    AdapterDeviceID: 0x2a02
    AdapterVendorID: 0x8086
    Add-ons: {972ce4c6-7e08-4474-a285-3208198ce6fd}:14.0.1
    BuildID: 20120713134347
    CrashTime: 1342655269
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 7ffffffff0dea000
    FramePoisonSize: 4096
    InstallTime: 1342655256
    Notes: AdapterVendorID: 0x8086, AdapterDeviceID: 0x2a02GL Context? GL Context+ GL Layers? GL Layers+
    ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384}
    ProductName: Firefox
    ReleaseChannel: release
    StartupTime: 1342655256
    Theme: classic/1.0
    Throttleable: 1
    URL: http://www.mozilla.org/en-US/firefox/14.0.1/whatsnew/?oldversion=rv:1.9.2.13
    Vendor: Mozilla
    Version: 14.0.1
    This report also contains technical information about the state of the application when it crashed.

  • Uanble to create connection for different users

    Hi everyone,
    I Have created several users in security manager and created a profile and assigned this profile to all users. However, I am unable to connect to the designer with these users. I have given the master repository info and the userinfo correctly. I am getting the following error. Does anyone have a solution?
    CONNECTION FAILED UNKNOWN WORK REPOSITORY
    java.lang.ArrayIndexOutOfBoundsException: 0 >= 0
    regards
    Babu

    Here are the basic steps
    After logging into Security Manager - Go to Users Tab
    Right Click any where to Insert User ( or) on the Tab you will find user Icon with plus , click on it to Insert a new User.
    Provide the UserName and Password and in Notes make sure you provide the Complete Name of the User as it would be easy to find in future .
    At the end you will find Supervisor Access Privileges and check mark Supervisor . Supervisor users have highest priviledge and can over ride any sub profiles if any assigned to them , so make sure you are giving it to the right users.
    Assigning Profile
    In the Profile tab , drag in the required profile and drop under the individual USER option profile and this way you can assign the required profiles. Keep doing for what ever profile you want to do so for any number of users.

Maybe you are looking for

  • Custom authorization object and check logic

    Hi gurus, we need to apply additional authorization check in our custom reports. so i created a custom fields & object, and put the statement       AUTHORITY-CHECK OBJECT 'ZHR_APP01' FOR USER uname                ID 'ZROLEID' FIELD '03'              

  • Nokia arte 8800 contacts saved but no name appears...

    i have all my contacts saved with numbers in my phone, but when i receive a call or text only the number appears not the name? phone nokia arte 8800 can any1 please help

  • Iframe in bc app html page rendering empty

    I have created a very basic bc app, which works on my partner site (where it was developed), but does not work on the client site I copied it to and authorized it (thanks to Mihai). The app is simple a menu item with an html page that includes an ifr

  • Jnlp with jasper report

    hi ia have one java Frame in which i enter the no.and according to number it ghenereate report from data base.using jasper report i have one test.jar and one test.jrxml file for jasper report how can i start jasper report with jnlp

  • User exit in ob28

    Hi gurus I need a explanation how the user exit work in the ob28, this is the first time that i deal with this, and i need to apply the 650827 and it involve a user exit. i dont know what to fill out in prerequisites and check area when in using a ex