How to make an entire Oracle Schema View Only ?

Lets say I have a schema called "scott" in oracle database.
Now I created a new user called "john".
I wanted "john" user to fully access "scott" schema in view only mode.
Can this be done easily, if YES how.
Please give me the steps.

CKPT wrote:
you have to spool all the objects in this case...No all objects only scots tables ,that is good way!
what do you say on grant select any table to user;..The purpose is giving only select privilege on scots all tables/views to jhon user.If you give select any table to jhon then jhon will select any schema!.That is wrong

Similar Messages

  • Hi, I am going to an exhibition where there is no internet access but would like to show people around my website. I have added "scrapbook" but cannot work out how to 'save' an entire site for viewing off-line.

    Hi, I am going to an exhibition where there is no internet access but would like to show people around my website. I have added "scrapbook" but cannot work out how to 'save' an entire site for viewing off-line. I thought there was a way to specify 1/2/3 clicks from home page etc. Please help. DAVID

    OK, solved my own problem, but am posting here in case someone else has the same problem. It totally does not make sense, especially considering that it stopped after I reinstalled Lion, but the good thing is I have my files back.
    I scoured the web and found a lot of other people are having the same problem. Most of them didn't have a clue how to fix it. This discussion was the most helpful to me: https://discussions.apple.com/thread/2569766?start=30&tstart=90
    So, I went to the WD page and followed the instructions. The first suggestion was to plug it directly into a wall, because it may not be getting enough power from a power cord. I did this and it fixed the problem. Who would have guessed?
    Anyway, if anyone else is having this problem, go to your manufacturer's website for help. Here's WD's help: http://wdc.custhelp.com/app/answers/detail/a_id/1164/related/1/session/L2F2LzEvd GltZS8xMzI2MzIzMjUwL3NpZC82dmo0blZOaw%3D%3D

  • How to make the entire project in the project server 2013 reschedule؟

    How to make the entire project in the project server 2013 reschedule ?
    Because item %compelet related to reschedule
    In this photo it is known there are no items update project

    Hi,
    In PWA, you do not have the feature to update the project plan in one click, meaning marking as completed the work before the status date or reschedule after the status date the remaining work. Either you have to use Project Pro, or edit individually the
    assignments with the actual work (if not comming from timesheets) and remaining work.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How to make Adobe as your default viewer for all your PDF file instead of the Preview given? Thanks

    How to make Adobe as your default viewer for all your PDF file instead of the Preview given? Thanks

    you need to "Get Info" on the file first. Select it, right click and select 'Get Info' in the menu.
    In the window that pops up, near the bottom, the "Open With" drop down menu needs changed. If the drop down menu does not present the one you want, select "Other" and find it.

  • How to make connection to ORACLE 7.1.6

    Hi,
    May I have suggestions on how to make connection to ORACLE 7.1.6 on UNIX box?
    Thank you very much for help!
    Jane

    Oracle 7.1.6 hasn't been supported by Oracle in many years. I don't believe that any Oracle product is currently certified to connect to a 7.1.6 database.
    You really need to consider upgrading your database. At least if you went to the 7.3.4 patchset, you'd have a fighting chance. This was the terminal Oracle7 patchset, so most products were still certified against it 12-18 months ago. If you're lucky, they'll still work, though they won't be certified.
    If you need a certified combination, you'll have to upgrade to 8i or 9i.
    Justin

  • How to make the same code that works only?

    how to make the same code that works only?
    code:
    Form2.Close = Me.Enabled = true
    effect such as this code

    I have this code:
    Public Class Form1
    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
    Form2.Show()
    Me.Enabled = False
    End Sub
    Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
    Form3.Show()
    Me.Enabled = False
    End Sub
    End Class
    he wants to after closing Form2 and Form3 unblocked the whole form1
    it means that:
    when I click the button, displays the himself form2 and blocks himself form1" and after closing Form2 , unlocks himself Form1"
    the same with Form3

  • How to Make an explicit oracle connection  to a default.

    Hi Users ,
    (Pro*C code)
    I have 2 connections to oracle db using connection identifier. At one point of time, i would like to make one of the explicit connection as default, which means further along i do not want to use the "AT" clause, instead queries should default to default connection. 
    Referring to below url, it only speaks about 2 distinct explicit connections, does not mention how to convert one of the explicit connection as default. 
    [ora11 guide|http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28427/pc_03dbc.htm#auto Id13]
    Is there a way to do so ? 
    Looking at google, i found a reference to a url, ora7. In section, 17.2.5, It does say how to make a connection default - by using EXEC SQL SET CONNECT connection_name. However it seems , its not supported anymore. 
    [ora7 guide|http://starlet.deltatelecom.ru/rdb$doc/oraclerdb/gsp7/gus_pro_create_conn.html]
    Antony
    Edited by: user11952222 on Sep 1, 2011 3:16 PM

    I figured it out for myself.
    So, does that mean I get the 10 points?
    fd

  • How to make timestamp in oracle 8.1.7?

    Hi,
    How can I store timestamp thing (not just yyyy-Mon-dd, but include time) to oracle 8.1.7? What kind of datatype it will be?
    Thanks.
    David

    David,
    This is why in your post asking about date and timestamp conversion from DB2 to Oracle I wrote:
    I assume the DB2 timestamp column will go into an Oracle date column? For timestamps since the Oracle date column
    only supports time down to the seconds from DB2 you'll have to something like:
    From DB2 to get the timestamp into the text file:
    select substr(char(timestamp_column),1,19) from table
    which would give you a value like: 2002-03-08-13.17.56
    You would then need to insert this value into Oracle using:
    insert into table values(to_date('2002-03-08-13.17.56','YYYY-MM-DD-HH.MI.SS'))
    The substr 1,19 will get the DB2 timestamp down to the seconds which is the best Oracle 8.1.7 can do. I've read that Oracle
    9i supports time down to fractions of a second but I'm not sure if it goes to .000001 seconds like DB2 does. If you need
    that precision in 8.1.7 you might have to store the fraction in another column(number data type?) and concat the two columns
    together or store the entire timestamp in a varchar2 column. This could raise other issues on how to do any kind of date
    manipulation though.

  • How to get information from Oracle's views

    Hi,
    I need to get information from Oracle's views about:
    * in which table's column is set index
    * what type of index is on this column
    * name of a trigger which exist on a table
    * type of trigger (before, after etc)
    * trigger status (enable, disable)
    Thanks for help.

    Hi..
    One of the best way to know which views to use is doing select * from dict where table_name like 'xxx';
    For example in your case you needed to know about the indexes and triggers so
    SQL> select * from dictionary where table_name like 'DBA_IND%';
    TABLE_NAME                     COMMENTS
    DBA_INDEXES                    Description for all indexes in the database
    *DBA_IND_COLUMNS                COLUMNs comprising INDEXes on all TABLEs and CLUSTERs*
    DBA_IND_EXPRESSIONS            FUNCTIONAL INDEX EXPRESSIONs on all TABLES and CLUSTERS
    DBA_INDEXTYPES                 All indextypes
    DBA_INDEXTYPE_COMMENTS         Comments for user-defined indextypes
    DBA_INDEXTYPE_ARRAYTYPES       All array types specified by the indextype
    DBA_INDEXTYPE_OPERATORS        All indextype operators
    DBA_IND_PARTITIONS
    DBA_IND_SUBPARTITIONS
    DBA_IND_STATISTICS             Optimizer statistics for all indexes in the database
    10 rows selected.
    SQL> select * from dictionary where table_name like 'DBA_TRI%';
    TABLE_NAME                     COMMENTS
    DBA_TRIGGERS                   All triggers in the database
    DBA_TRIGGER_COLS               Column usage in all triggers
    Reading the comments you can know which view to use, then  describe the view and use what you need

  • How to make an entire word spin/rotate?

    Is it possible to make an entire text word spin round.
    Moreover, can I zoom the word in whilst spinning?

    apply Spin behavior to Text
    apply Dolly behavior to cam =>
    text spinning, 'zooming' into word.
    Like that?
    (for sure, you could keyframe the cam's focal length to create a 'real' zoom ... )

  • How do you restrict web browsing to view only specified sites for business use?

    Hello, I need to restrict the use of Firefox and Internet Explorer to only specified websites that we use for business use.
    I have a problem with a number of employees using unauthorized and dangerous websites that have put my business computers at risk.
    Since it is impossible to police the employees viewing habits in real time, I need to restrict the viewing. How do I set up a list of only allowed sites that can only be overridden by admin privileges despite user accounts?

    You will have to block such unwanted sites in a firewall or router or proxy and only allow access via that proxy.<br />
    All other ways can easily circumvented, by starting Firefox in [[Safe mode]] if it is an extension or by using a portable Firefox version.
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r45
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • How to make the Pager for table view as non editable?

    Hi,
    I am using an HTMLB pager for my table view .
    It appears as Page '1' of 2 for examle.
    But '1' is dispalyed in an input field.
    How do I make this input field as disabled.
    I just want to use the Vertical and horizontal indicators to traverse through the pages of the table view.
    I do not want the user to enter the page number ..
    Thanks,
    Sachin

    Look at SBSPEXT_XHTMLB sample, pages pager.bsp and pagerX.bsp.
    If you use the external pager, then you can specify a format where a text string will only be displayed without an inputfield for editing.

  • How to install and use oracle schemas

    Hi,
    I am trying to prepare for Oracle PL/SQL Developer Associate Exams. I need to download and use Oracle sample schemas like oe, etc. and I don't know how.
    I have the following on my PC:
    Oracle® Database Express Edition 10g Release 2 (with the HR schema)
    Oracle Sql Developer 2.1.0.63 (already connected to the HR schema)
    Oracle Developer Suite 10.1.2 (mainly used to connect to work databases )
    Can someone please guide me here....
    Thank you....

    Did you check what are the existing schema you have other than HR from Enterprise Management Console?
    If you install your DB in default with sample DBs - you should have these schema already into your machine. They may be locked. That's why you are unable to use them.
    Unlock the schema and try it again.
    From sys,
    alter user oe account unlock;
    alter user oe identified by oe;This should work for you.
    Regards.
    Satyaki De.

  • How to make published calendar show month view by default?

    I have a published calendar that I put into an iframe on a website. Unfortunately, it comes up in week view by default. I know that if you click on month view, it gives you a new URL that you could copy and use, but that URL is specific to a month and so when we get to April, for instance, the default calendar view would be month, but would still display March's calendar. Is there something else I can put in the URL to make the default view to the actual, current month?

    Hi,
    What I have learned from the Internet is the same as yours, we can replace RD Web Access remoteapp icons, but we cannot increase their displaying size.
    Here are some related blogs below:
    Change a RemoteApp Program icon in Windows 2012 R2 RD Web Access
    https://msfreaks.wordpress.com/2014/01/08/change-a-remoteapp-program-icon-in-windows-2012-r2-rd-web-access/
    How to change the Remote Desktop icon and description in RD Web Access. 
    http://blogs.catapultsystems.com/mdowst/archive/2012/02/14/how-to-change-the-remote-desktop-icon-and-description-in-rd-web-access-.aspx
    I would suggest you contact Microsoft Customer Support and Services where more in depth investigation can be done so that you may get a solution to this.
    You may find phone number for your region accordingly from the link below:
    Global Customer Service phone numbers
    https://support.microsoft.com/en-us/gp/customer-service-phone-numbers/en-au
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to make some fields of a view non editable

    Hi experts,
    I need to make some fields like system user, system time and system date of a view non editable and after saving values for all other editable fields, the system should fill the values for the non editable fields as well.
    Kindly help in this regard.

    I am assuming that you created a maintenance view for your table. Under view fields there is a column called 'Maintenance Attribute for view field' (one character field with 'P' in the column. Set that column value to 'H' for the fields that you want to hide.
    You then have to go to SE54, give your maintenance view name, in the menu, 'Environment-->Events' create an event 01 with your own code to fill in those hidden fields. Look with key words 'Table Events' in this forum and you will get a lot of examples.

Maybe you are looking for

  • How to  get formated value from query

    i get value from query use the follow method Object obj1 = dataAccess.getValue(i,j,DataMap.DATA_UNFORMATTED); Object obj1 = dataAccess.getValue(i,j,DataMap.DATA_FORMATTED); the first method retrun a value '1666.0', the second method return a value nu

  • Wipe Handheld - Upgrading Phone

    I am trying to wipe all of the data and apps off of my Blackberry Curve 9330 3G phone.  I completed the "Wipe Handheld" feature but it still is requiring a password.  I used to get my work email pushed to my BB via the Blackberry Enterprise Exchange

  • Dynamic text for checkbox

    I am displaying a selection screen a checkbox  and a select-option in the same line the code is like this: SELECTION-SCREEN BEGIN OF LINE. PARAMETERS: p_check AS CHECKBOX MODIF ID bk1. SELECTION-SCREEN COMMENT 2(9) text-100 FOR FIELD p_check. SELECTI

  • Web Service Wizard in R/3

    If this is the wrong forum for my question, kindly indicate which forum would be best suited. IN SAP CRM 5.0 there is a tranasction WS_WZD_START to launch a wizard to create web services from RFC BAPI"s is there such a transaction available in R/3? I

  • CS5 AS3 MovieClip errors.

    I'm having an issue in scripting a MovieClip to play within a MovieClip. The outer MovieClip is a "Page" and on the page, you must click a button to play the second MovieClip, which is planned to remove the activating button, and play the MovieClip,