Run job from another user

Hi, first of all, sorry for my pour english.
I'm system in a db, and i need to run a job from another user. I don't have the password. Theres a way to run this job?
It's a oracle db 10g enterprise.
Thanks in advice.

I have the permissions, and I can't change the user password or application may stop. There's a way, but I just can't remember:
PRIVILEGE
ANALYZE ANY
UNLIMITED TABLESPACE
CREATE TABLE
ALTER TABLESPACE
ALTER DATABASE
GLOBAL QUERY REWRITE
CREATE MATERIALIZED VIEW
SELECT ANY TABLE
8 linhas selecionadas.
Decorrido: 00:00:00.21
PRIVILEGE
FLASHBACK
DEBUG
QUERY REWRITE
ON COMMIT REFRESH
REFERENCES
UPDATE
SELECT
INSERT
INDEX
DELETE
ALTER
FLASHBACK
DEBUG
QUERY REWRITE
ON COMMIT REFRESH
REFERENCES
UPDATE
SELECT
INSERT
INDEX
DELETE
ALTER
FLASHBACK
DEBUG
QUERY REWRITE
ON COMMIT REFRESH
REFERENCES
UPDATE
SELECT
INSERT
INDEX
DELETE
ALTER
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
SELECT
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
EXECUTE
SELECT
SELECT
EXECUTE
EXECUTE
EXECUTE
WRITE
READ
WRITE
READ
WRITE
READ
69 linhas selecionadas.
Decorrido: 00:00:00.48
GRANTEE GRANTED_ROLE ADM DEF
SYSTEM MGMT_USER NO YES
SYSTEM TRIPOA_READ YES YES
SYSTEM DBA YES YES
SYSTEM TRIPOA_WRITE YES YES
SYSTEM AQ_ADMINISTRATOR_ROLE YES YES
SYSTEM TRIPOA_EXEC YES YES
SYSTEM PRIV_DML_STUDENTSLOG YES YES
SYSTEM PRIVILEGE_ALL_TRIPOA YES YES
8 linhas selecionadas.

Similar Messages

  • Question re: JDS/gnome/X and running smc as another user

    Running Solaris 10 on Sun VirtualBox, have one user account in 'Staff' where I want to administer some aspects of my system for the time being as part of best practice for administration. I login to my user account, open a terminal, su - root and then run smc&. I get an error in the terminal window about DISPLAY environtment variable not being set. echo $DISPLAY reveals that it is null, so I export DISPLAY=hostname:0 and then try to run again and I still get the message. I am able to execute smc& from the shell prompt if I am logged into the root session. The only change I have made to the system operations at this point was to move /export/home to a different disk/slice and that mounts fine so and should not have caused an error anyway. If I execute xauth as root and list I get something like this:
    hostname:0 {encryption type} {RANDOM}
    hostname/unix:0 {encryption standard} {RANDOM}This is to say it would appear to be that this is set correctly. [This example|http://docsun.cites.uiuc.edu/sun_docs/C/solaris_9/SUNWabe/ADVOSUG/p33.html#NETWORKAPP-88347] leads me to believe that a null DISPLAY should still allow programs to process by the Xserver/gnome .
    My question then is:
    - How can I run smc from another users session or must I log into a session as root?
    - If DISPLAY is incorrectly set, how can I configure my system to create accounts with the correct settings?
    I should note that *xhost +*, while it disables the access control, has no affect on the outcome of executing smc&.

    Running Solaris 10 on Sun VirtualBox, have one user account in 'Staff' where I want to administer some aspects of my system for the time being as part of best practice for administration. I login to my user account, open a terminal, su - root and then run smc&. I get an error in the terminal window about DISPLAY environtment variable not being set. echo $DISPLAY reveals that it is null, so I export DISPLAY=hostname:0 and then try to run again and I still get the message. I am able to execute smc& from the shell prompt if I am logged into the root session. The only change I have made to the system operations at this point was to move /export/home to a different disk/slice and that mounts fine so and should not have caused an error anyway. If I execute xauth as root and list I get something like this:
    hostname:0 {encryption type} {RANDOM}
    hostname/unix:0 {encryption standard} {RANDOM}This is to say it would appear to be that this is set correctly. [This example|http://docsun.cites.uiuc.edu/sun_docs/C/solaris_9/SUNWabe/ADVOSUG/p33.html#NETWORKAPP-88347] leads me to believe that a null DISPLAY should still allow programs to process by the Xserver/gnome .
    My question then is:
    - How can I run smc from another users session or must I log into a session as root?
    - If DISPLAY is incorrectly set, how can I configure my system to create accounts with the correct settings?
    I should note that *xhost +*, while it disables the access control, has no affect on the outcome of executing smc&.

  • Can not see running jobs from, package

    I have a problem with processing parallely runing jobs:
    I am creating another immediately runned jobs in a main job. Those two parallel jobs (2 loads from different databases) have to be finished before I run next operation (working out loaded data). Problem is that, after starting those 2 parallel jobs, I can not see them by select from ALL_SCHEDULER_RUNNING_JOBS that is executed immediately after I create those jobs in a package. If I take a look into ALL_SCHEDULER_RUNNING_JOBS from anonymous statement I can see all my running jobs. Let's sum it up:
    1/ Start of main job
    2/ Running 2 immediately created jobs (load data)
    3/ Checking in loop if jobs created in step 2 are still running
    3.1/ Jobs are running (ALL_SCHEDULER_RUNNING_JOBS check) - sleep for a
    while - It never happens - can't see any running jobs from select executed in
    package but can see them in
    anonymous statement
    3.2/ Jobs finished - start processing loaded data
    Can somebody help me with this task?
    Thanks alot!
    Jakub

    Hi,
    There is no reason a job should be visible from an anonymous block but not from inside a job. There are two things that may be happening here.
    - jobs scheduled to run immediately my not start running as soon as they are created/enabled, you may need to wait a bit before they start running (they will appear in all_scheduler_jobs immediately but maybe not all_scheduler_running_jobs immediately)
    - you may be running into privilege issues. Is the user that executes the anonymous block the same as the user that the job is running as (the job's schema) ? If not maybe the job user does not have privileges to see the job (you can grant alter on the job to the user to ensure this).
    Can you see the jobs in the all_scheduler_jobs view from within the job with status RUNNING ? If you can see jobs in all_scheduler_jobs as RUNNING but not in all_scheduler_running_jobs then this is a bug of some sort.
    Thanks,
    Ravi.

  • Running jobs as different users

    The job I am creating in the Job Scheduler needs to run SQL as several different users. I have heard that 11g will allow this. However I am wondering whether there is any way to do it in 10gR2. I have tried to embed a CONNECT user/password within the PL/SQL block as EXECUTE IMMEDIATE and stand alone. Nothing seems to work. Does anyone have any suggestions on a way to do this before 11g?

    Hi,
    The Scheduler can run stored procedures and pl/sql blocks but it runs all PL/SQL as the job owner. The limitation of not being able to run different SQL as different users is a PL/SQL limitation.
    There is a workaround however. For each SQL that needs to run as a particular user create a PL/SQL stored procedure in that user's schema . By default (do not use the authid current_user clause) these stored procedures run with the privileges of their owner. Then grant execute on these stored procedures to the job owner. Now the job owner can call any of these procedures when he needs to run SQL as another user.
    One thing to watch out for is that stored procedures do not use role privileges , so do not rely on role privileges in your SQL statements.
    This should do what you need.
    Hope this helps,
    Ravi.

  • Need to run midlet from another midlet

    Need to run midlet from another midlet
    How to do it?
    In my midlet user get link to web-page, and i want to start mobile browser with this page.

    Hi,
    In order to run midlet from another midlet you may use push registry. Go through the API of that I am not sure but as far as I know push registry is the only solution to that
    Sunil
    Software Developer - J2ME

  • Running jobs as severent users

    The job I am creating in the Job Scheduler needs to run SQL as several different users. I have heard that 11g will allow this. However I am wondering whether there is any way to do it in 10gR2. I have tried to embed a CONNECT user/password within the PL/SQL block as EXECUTE IMMEDIATE and stand alone. Nothing seems to work. Does anyone have any suggestions on a way to do this before 11g?

    Hi,
    The Scheduler can run stored procedures and pl/sql blocks but it runs all PL/SQL as the job owner. The limitation of not being able to run different SQL as different users is a PL/SQL limitation.
    There is a workaround however. For each SQL that needs to run as a particular user create a PL/SQL stored procedure in that user's schema . By default (do not use the authid current_user clause) these stored procedures run with the privileges of their owner. Then grant execute on these stored procedures to the job owner. Now the job owner can call any of these procedures when he needs to run SQL as another user.
    One thing to watch out for is that stored procedures do not use role privileges , so do not rely on role privileges in your SQL statements.
    This should do what you need.
    Hope this helps,
    Ravi.

  • Can you run fcsvr_client from another machine?

    has anyone tried running fcsvr_client from another machine:
    eg: fcsvr_client --host 10.1.1.1 --user Username --pass Password search /projects
    can't seem to figure out what they want for a user and pass. i keep getting the following error:
    CODE = E_LOGIN, DESC = no valid user identified for this action, SRC_FILE = PmsTask_SearchEntity.C, SRC_LINE = 189
    ideas?

    This post here will get were you want: http://discussions.apple.com/thread.jspa?threadID=1502389&tstart=200
    In summary in can access the db only from localhost BUT you CAN use ssh tunneling to access the remote fcsvr computer and get access to the db (in your case fcsvr_client).
    Good luck

  • How to change sheduled jobs from one users to other user?

    Hi,
    I want to change shoulded jobs from one users to other user.
    Is there any way that we change job from one user to other user.
    apart procedure with sm37: single job selecting with copy option.
    Regards,
    Gianluca Vinco

    Hi,
    Please try the folloiwng for changing the User of a Scheduled job:
    1. Go to transaction SM37, select the 'Scheduled' Job by checking the check box and then use the menu path Job -
    > Change
    2. You may reach the Change Job xxx screen. Here, click on the Step button
    3. You may reach the Step List Overview screen
    4. Here select the step in the list and click on the Change icon to make the User change in the pop up Edit Step window
    I hope this helps you in your work.
    Best Regards
    Sitaraman

  • To get data from another user?

    Hi,
    I am in "scott" user. I need to use the data from another user for example user "sys". i know the database name(i.e.user@database), but i dont know the password of that user.
    I think by using dblink it is possible. If it is correct then Is there any other way for this? If dblink is not correct way then please reply the correct way.
    Thanks & Regards,
    Shyam

    You only need to use a database link if the data is in another database instances.
    If you want to query data in another users schema on the same database you just need to have rights to do so. You either need to have
    select any table system privilage granted to the user (not recommended for security reasons)
    be granted select privalage on the object from the user
    be granted a role that has select privelges on the object you want to query.
    If you log in as system to the database you can grant select on the object to scott
    sql> grant select on <schema>.<table> to scott;
    now logged in as scott you can select from the table
    sql> select * from <schema>.<table>
    where <schema> is the other user and <table> is the name of the table that you want to select from.

  • HT3787 If you accidentally eject that local file (plain white disk image) from another user, can you get it back?

    If you accidentally eject local file from mobile me from another user, how can you get it back? Or is it stored somewhere else????
    My website was saved on there. And I need it!!
    I didn't realize that was the idisk since mobileme has been gone for so long.

    That's what I was hoping.  I use Time Machine to back up the entire computer.  But I'm assuming it was a disk image, and that wouldn't be saved on the backup?  Or where could I find it?

  • Connect to Oracle 9i from another User

    I have Oracle 9i Installed on my machine and works fine.
    But I can not connect to to it from another user on the same machine (That has a domain other than my machine)
    How I can solve this?
    (Both users have Adminstrator rights)

    One post please.
    Limited Info would lead me to respond that you should try the:
    . oraenv script in a bash shell. But there could be many other problems...

  • Can't see dmd file from another user

    I just installed SDDM v3.1 and tried to open a dmd file from another user (I have used it to create my own model, saved it and can open it later). The log says "Open Design: 'filename'", then "Open Design: OK". But I don't see anything in the Logical (Logical Model) window. If I try to Import the same file, I get an error message that says look at the log file for details. Except that the log file has no entries in it. Is there an issue with what version the other file was saved under or some other format? Thanks for any help on this.

    Hi,
    There is now a forum specifically for Data Modeler topics: SQL Developer Data Modeler
    I assume that you are using the latest version (3.1.3.709).
    Provided the model includes some Entities, they should show up in the Logical Model window.
    The log file is normally in file datamodeler.log in folder datamodeler\datamodeler\log (unless some other location has been set in the Environment/Log page of the Preferences (accessed from the Tools menu).
    The log should at least contain a line like
    2012-10-19 11:03:18,457 [main] INFO ApplicationView - Oracle SQL Developer Data Modeler 3.1.3
    for each time you start a Data Modeler session.
    It is possible that the log is in a read-only location, and so Data Modeler cannot write to it.
    In this case I would recommend that you update the Preferences to use a writable location.
    David

  • How do I import an address book from another user on same iMac?

    How do I import an address book from another user on same iMac?

    David...
    Try here >   Share one Address Book among multiple users

  • HT2476 I got my Macbook Pro from another user (different apple id) and now i'm not able to update iPhoto and iMovie. What can i do?

    I got my Macbook Pro from another user (different apple id) and now i'm not able to update iPhoto and iMovie. What can i do?

    You need to contact Apple and transfer that computer, the serial number, into your name and your Apple ID. Then you should be able to update the included Apple Apps from the App store. No need to Re-buy them again.
    Caveat to the above.
    If your Mac did not originally come with Lion Preinstalled, early releases of early 2011 models and older, and originally had Snow Leopard installed the original owner should of supplied the Mac OS X System Discs with the system. If that person didn't you should order them from Apple at a small fee, and don't lose them.

  • Run procedure as another user

    Hi all,
    how do I run procedure as another user?

    Just connect as that 'another user' and run the procedure?
    If that isn't what you're looking for then explain in more details (database version, etc) please.
    See:
    {message:id=9360002}
    edit
    In addition to the other mentioned options:
    You might want to check out CURRENT_SCHEMA.
    "The CURRENT_SCHEMA parameter changes the current schema of the session to the specified schema. Subsequent unqualified references to schema objects during the session will resolve to objects in the specified schema. The setting persists for the duration of the session or until you issue another ALTER SESSION SET CURRENT_SCHEMA statement.
    This setting offers a convenient way to perform operations on objects in a schema other than that of the current user without having to qualify the objects with the schema name."
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_2013.htm#SQLRF53050
    Edited by: Hoek on Mar 4, 2013 1:44 PM

Maybe you are looking for

  • Problem in showing worksheet of discoverer in portal

    Hi All, I have created a worksheet in an user called BI. I have logged into Portal using user orcladmin. I have registered the portal provider. I have added the portlet in the portal page. I can see the public connect in the edit page. When i click n

  • IPhone is freezing ever since iOS7 update.

    Anytime I type (entering passcode or using keyboard) my iPhone freezes for 5-10 seconds. This started happening immeadiatly after the iOS 7 update. I've rebooted it and the problem persists. Any ideas on how to fix this?

  • I can open audio files but can't find them with Finder or Spotlight.

    Hello! I wanted to delete a few songs and found that by searching in Finder or Spotlight they couldn't be found.  I can open the files in Finder by opening iTunes, ctrl clicking the song and selecting 'view in Finder'. If I then 'get info' on the fil

  • Socket communication error

    I am facing a problem in presentation server . When i am using AGO date functions i have encountered an error named as.: nQS Error:12002 : Socket Communication error at call=recv (number=10054) I have goggle'd it but cannot understand thier explanati

  • Changing tab page name

    In the web client, How do you go about changing tab page names.  For instance, the tab page default on complaints transaction has a heading called technical analysis.  I want to change it to just analysis.  I looked in the tab groups I see the event