Oracle 10.2 RENAME command broken ..

Hello all,
I did the following to rename a file:
"alter database rename file [DATA_FILE_1] to [DATA_FILE_2]'
But ..
When I do:
"select name from v$datafile"
I see BOTH [DATA_FILE_1] --- AND --- [DATA_FILE_2]
To me, I should only see [DATA_FILE_2] :-|
When I try to do the following command to correct the problem,
"alter database datafile [DATA_FILE_1] offline",
I get the following error:
ORA-01145: offline immediate disallowed unless media recovery enabled
I also did :
"alter database backup controlfile to trace" and saw that BOTH
[DATA_FILE_1]
--- AND ---
[DATA_FILE_2]
were listed
Yikes!
What happened? Why did the software work this way? How can I solve this problem?
TIA

10.2.what?
Post your actual DDL not a simplified version of it.
Post the result of this query:
SELECT file_name, file_id, status, online_status
FROM dba_data_files;Do not change anything. Do not do a shutdown. Leave everything alone until we can figure out what you are looking at.

Similar Messages

  • How to find memory taken by Oracle processes using top command

    I wanted to know how to find the memory taken by Oracle processes using top command. The output of the top command is as follows as an example:
    Mem: 16436072k total, 16215708k used, 220364k free, 395128k buffers
    Swap: 25165816k total, 1168288k used, 23997528k free, 13366520k cached
    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    27281 oraprod 15 0 6705m 1.3g 1.3g S 0.0 8.6 61:44.71 oracle
    27383 oraprod 15 0 6702m 1.2g 1.2g S 0.0 7.7 2:22.75 oracle
    5199 oraprod 16 0 6745m 1.1g 1.0g S 0.0 6.8 2:51.23 oracle
    The different Oracle processes could be Oracle database, Oracle listener, Oracle enterprise manager etc.
    I hope, my question is clear as to how to find the memory taken by a process using top command.
    Please revert with the reply to my query.
    Regards

    a short and correct answer would be: you can't.
    As oracle uses a fair amount of shared memory, and that shared memory is attached to most of the oracle processes, the same memory appears a number of times.
    you should rephrase your question / what is it you want to achieve?
    you can ask oracle how much memory is assigned to it, v$sga, v$sgastat, v$process (for PGA). moreover, you as DBA are the one who configured that.
    you can look at major an minor faults per process to see what is causing the paging (if you have any).
    you can also look at the /proc/pid/statm pseudofilesystem for your oracle pids.

  • Problem with rename command in ftp_command

    hi all ,
    i am facing a problem in renaming a file by rename command...
    this is how i am calling the fm ftp_command
    CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = g_handle
          command       = 'RENAME l_templine_file l_templine_file1'
        TABLES
          data          = l_i_temp_line
        EXCEPTIONS
          tcpip_error   = 1
          command_error = 2
          data_error    = 3
          OTHERS        = 4.
      IF sy-subrc <> 0.
    here l_templine_file   - dev00227.header.tmp  
    l_templine_file1 - dev00227.header.txt
    the fm is failing that the error meassage is FTP subcommand  error
    can u suggest where i am going wrong in this...

    hi,
    May be the command you are passing is incorrect syntax..
    Pass the values like this..
    l_templine_file =  'c:\dev00227.header.tmp' " this should be with path'
    l_templine_file1 = 'dev00227.header.txt'" this is just the name of file
    If not worked..then Try writing in small letters//
    write
    command = 'rename l_templinefile l_templine1'.
    rewards if useful
    Hope this solves..
    regards,
    nazeer
    Message was edited by:
            nazeer shaik
    Message was edited by:
            nazeer shaik
    Message was edited by:
            nazeer shaik

  • Browser batch rename command question.

    PS7 - OS 10.4.11 - 1.33 Ghz PowerPC G4
    I was looking at a folder of images using the browser and selected a number of them - some of these images had previously had changes made to them and then saved as JPEGs, some had not been worked at all since downloading from the camera to the HD.
    Wanting to group them by title, I used the batch rename command, by Control-clicking on the selected images, to rename them in the same folder with Mac OS9 compatibility (I couldnt find a Mac OSX compatibility even though that is my system). This was the first time I have used the batch rename command, and assumed it would merely change the file name.
    I then tried to open the files after this process. Those images that had previously been worked and saved as JPEGs are referred to as Document in the Finder, rather than as Adobe Photoshop JPEG. When trying to open them, I got a message:-
    The document Louvre1 could not be opened. ColorSync cannot open files of this sort.
    The only way I have found to view them is to use Open with Safari command.
    Those images that had not been worked are referred to as Unix Executable File in the Finder. I cannot view these at all, not even with the Open with Safari command.
    Any comments, please? What am I missing? I did not expect the process to so radically change the files. I can use Grab to get an image of those files that can be opened in Safari, although presumably they will not be so detailed as the originals.
    And those images that cannot be opened at all, even in Safari:- Can I get them back as PS JPEGs, or in any viewable form?
    Any help gratefully received.
    Thanks,
    Graham

    When you renamed the files, did you remember to include the ".jpg" extension at the end of each file name? If not, add it now.
    And make sure you are running Ps 7.0.1. It's a free and mandatory update (numerous bug fixes).

  • How we can create Oracle 9i Database through Commands.

    How we can create Oracle 9i Database through Commands.
    We need step by step process and all the scripts.

    CREATE DATABASE
    Caution:
    This statement prepares a database for initial use and erases any data currently in the specified files. Use this statement only when you understand its ramifications.
    Note Regarding Security Enhancements:
    In this release of Oracle and in subsequent releases, several enhancements are being made to ensure the security of default database user accounts.
    To provide guidance for configuring Oracle9i in a secure manner, Oracle Corporation provides a security checklist. Oracle Corporation recommends that you read this checklist and configure your database accordingly. The security checklist can be found at the following URL:
    http://otn.oracle.com/deploy/security/oracle9i/pdf/9iR2_checklist.pdf
    Examples
    Creating a Database: Example
    The following statement creates a database and fully specifies each argument:
    CREATE DATABASE sample
    CONTROLFILE REUSE
    LOGFILE
    GROUP 1 ('diskx:log1.log', 'disky:log1.log') SIZE 50K,
    GROUP 2 ('diskx:log2.log', 'disky:log2.log') SIZE 50K
    MAXLOGFILES 5
    MAXLOGHISTORY 100
    MAXDATAFILES 10
    MAXINSTANCES 2
    ARCHIVELOG
    CHARACTER SET AL32UTF8
    NATIONAL CHARACTER SET AL16UTF16
    DATAFILE
    'disk1:df1.dbf' AUTOEXTEND ON,
    'disk2:df2.dbf' AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED
    DEFAULT TEMPORARY TABLESPACE temp_ts
    UNDO TABLESPACE undo_ts
    SET TIME_ZONE = '+02:00';
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_55a.htm#SQLRF01204
    Joel P�rez

  • Enforcing integrity using oracle specific data base commands .v. using fron

    Full subject : Enforcing integrity using oracle specific data base commands .v. using front end.
    It ought to be generally accepted that it is better to enforce integrity directly in the data base using constraints, dependencies, triggers etc rather than leaving it to specific front end programmes.
    In my view, the chief advantages - of enforcing integrity directly in the data base - are:
    (1) No process can violate the integrity.
    (2) Being server centric, these commands run on the server and so can be easily sized in one place.
    (3) One time data migration (imports) into the system using Oracle tools or SQL commands would also need to conform to the integrity constraints. Thus an implementor would be assured that the basic data is alright.
    I am faced with a situation where we are about to implement a new Oracle based package. During data migration, when we discovered that there are no integrity constraints built into the target data base, the package vendor asserted that it is not necessary to build in integrity into the database. This seems to be an extreme and risky view.
    Further, it is argued by the package vendor that putting constraints directly in the data base would significantly increase the needed resources (RAM) on the server. In my view, this increase is trivial and anyway, hardware costs are crashing day by day.
    In the absence of integrity checks in the data base, it seems to me that every program would have to extra zero value work to ensure integrity of the end user data. It will still never be complete.
    I would like to know the pros and cons of implementing without integrity constraints.
    OK.

    AnanthaP wrote:
    Full subject : Enforcing integrity using oracle specific data base commands .v. using front end.
    It ought to be generally accepted that it is better to enforce integrity directly in the data base using constraints, dependencies, triggers etc rather than leaving it to specific front end programmes.
    In my view, the chief advantages - of enforcing integrity directly in the data base - are:
    (1) No process can violate the integrity.
    (2) Being server centric, these commands run on the server and so can be easily sized in one place.
    (3) One time data migration (imports) into the system using Oracle tools or SQL commands would also need to conform to the integrity constraints. Thus an implementor would be assured that the basic data is alright.
    I am faced with a situation where we are about to implement a new Oracle based package. During data migration, when we discovered that there are no integrity constraints built into the target data base, the package vendor asserted that it is not necessary to build in integrity into the database. This seems to be an extreme and risky view.
    Further, it is argued by the package vendor that putting constraints directly in the data base would significantly increase the needed resources (RAM) on the server. In my view, this increase is trivial and anyway, hardware costs are crashing day by day.
    In the absence of integrity checks in the data base, it seems to me that every program would have to extra zero value work to ensure integrity of the end user data. It will still never be complete.
    I would like to know the pros and cons of implementing without integrity constraints.
    OK.It's a shame you seem to be so far into the process and committed to this vendor. I once had a vendor tell us his product would run on Oracle but they recommended MS SQL Server because "oracle can't handle more than 5 concurrent sessions." I made sure that vendor didn't make the short list.

  • Rename command !

    Hi,
    I come from debian background. I am used to rename the files in the following way on my debian system
    rename 's/foo/bar/g' *foo*
    Now, on my ARCH system there is a rename command but if I try the above command it does nothing.
    Are there 2 different versions of rename ?
    Which one should I install if I want the mentioned functionality ?
    thanks,

    The debian/ubuntu version uses a perl replace method.....arch uses a different method.....
    [jim@myhost etc]$ man rename
    RENAME(1)                  Linux Programmer's Manual                 RENAME(1)
    NAME
           rename - Rename files
    SYNOPSIS
           rename from to file...
    DESCRIPTION
           rename will rename the specified files by replacing the first occurrence of from in
           their name by to.
           For example, given the files foo1, ..., foo9, foo10, ..., foo278, the commands
                  rename foo foo0 foo?
                  rename foo foo0 foo??
           will turn them into foo001, ..., foo009, foo010, ..., foo278.
           And
                  rename .htm .html *.htm
           will fix the extension of your html files.
    SEE ALSO
           mmv(1), mv(1)
                                    1 January 2000                       RENAME(1)
    (END)

  • Is there any option in oracle 10g to rename a column?

    Hi friends,
    Is there any option in oracle 10g to rename a column? Please send me reply....Waiting for that...

    You can even rename a column in oracle 8i or 9i
    E.g:
    ALTER TABLE TABLE_NAME RENAME COLUMN OLD_COLUMN_NAME TO NEW_COLUMN_NAME;Message was edited by:
    Mohana Kumari

  • How to disable or rename Oracle Report Server servlet command?

    Hi,
    I'm using Oracle9i App Server R2.
    I would like to learn how to disable or rename Oracle Report Server's servlet command?
    This is to avoid user from accessing http://myserver/reports/rwservlet/showmap to view the key map file content.
    Please advise.

    or example, my report server was rep_appserver, then i want to rename it to rep_test.
    Here some step to accomplish it,
    1. stop mid-tier
    $ORACLE_HOME\opmn\bin\opmnctl stopall
    2. stop em website
    $ORACLE_HOME\bin\emctl stop iasconsole
    3. rename $ORACLE_HOME\reports\conf\rep_<old_report_server_name>.conf to something else or delete it
    4. rename $ORACLE_HOME\reports\server\rep_<old_report_server_name>.dat to something else or delete it
    5. edit $ORACLE_HOME\reports\conf\rwservlet.properties file then change the SERVER parameter to new report server name(remember this new name has to be a unique name)
    6. create a backup copy of the $ORACLE_HOME\sysman\emd\targets.xml file
    7. open $ORACLE_HOME\sysman\emd\targets.xml, find old report server name and then replace it to new report server name
    8. save new targets.xml file
    9. open $ORACLE_HOME\opmn\conf\opmn.xml, old report server name and then replace it to new report server name
    10. start em website
    $ORACLE_HOME\bin\emctl start iasconsole
    11. start mid-tier
    $ORACLE_HOME\opmn\bin\opmnctl startall
    HTH
    Amkotz

  • XSL-FO Stylesheets (Oracle XSLT processor via command line)

    How does one go about editing BIP XSL-FO stylesheets converted from the MSWord plug in by using external tools?
    The converted files have many, many calls to Oracle functions that are unrecognized by the editing tools.
    We are using Stylus Studio and are getting errors on functions calls such as:
    <xsl:variable name="_XDOXSLTCTX" select="xdoxslt:set_xslt_locale($_XDOCTX, $_XDOLOCALE, $_XDOTIMEZONE, $_XDOCALENDAR, concat($_XDODFOVERRIDE,' ',$_XDOCURMASKS,' ',$_XDONFSEPARATORS))"/>
    This is but one example of course. There are many calls in each template and they are quite varied.
    Is there a way to "register" these with the tools so that they can call them (via tnsnames?). Even to having them ignored would be preferable to having the previewer completely fail.
    Scott

    Hi Scott.
    there's a JavaAPI which you can use. So it's not really a command line interface, but perhaps it can fullfill you requirements.
    Regards
    Rainer

  • Oracle OLE DB and command Parameters in VB6

    Hi,
    here's my problem :
    When i a VB6 command object ( ado ) this works fine with Oracle client 8i/9i, but with 10g it seems to truncate all my string parameters
    Here is my vb code :
    Public Function PRC_APPLICATIONSCENARIO _
    ByRef p_vConnection As Variant, _
    ByVal p_sZlCle As String, _
    ByVal p_dDateDeb As Date, _
    ByVal p_iDiffdate As Integer, _
    ByRef p_sCodeErr As String, _
    ByRef p_sErrMsg As String, _
    ByRef p_lScenar As Long, _
    ByRef p_lSoc As Long _
    ) As Long
    On Error GoTo Err
    Dim cmd As ADODB.Command
    Dim param As ADODB.Parameter
    Set cmd = New ADODB.Command
    cmd.ActiveConnection = p_vConnection
    Set param = cmd.CreateParameter("iZlCle", adInteger, adParamInput, , CLng(p_sZlCle))
    cmd.Parameters.Append param
    Set param = cmd.CreateParameter("dDateDeb", adBSTR, adParamInput, , Format(p_dDateDeb, "dd/mm/yyyy"))
    cmd.Parameters.Append param
    Set param = cmd.CreateParameter("iDiffDate", adInteger, adParamInput, , CLng(p_iDiffdate))
    cmd.Parameters.Append param
    Set param = cmd.CreateParameter("nCodeErr", adInteger, adParamOutput)
    cmd.Parameters.Append param
    Set param = cmd.CreateParameter("vErrMsg", adBSTR, adParamOutput, 200, String(200, " "))
    cmd.Parameters.Append param
    Set param = cmd.CreateParameter("lIdScenar", adInteger, adParamInput, , CLng(p_lScenar))
    cmd.Parameters.Append param
    Set param = cmd.CreateParameter("lIdSoc", adInteger, adParamInput, , CLng(p_lSoc))
    cmd.Parameters.Append param
    cmd.CommandText = "{CALL ApplicationScenario" & _
    cmd.Execute
    this is what i have with 8i ( checking with SQL Monitor ) :
    BEGIN ApplicationScenario(:1,:2,:3,:4,:5,:6,:7); END;
    :1 = 1
    :2 = '01/11/2010'
    :3 = 6
    :4 = 0
    :5 = <NULL>
    :6 = 2602
    :7 = 1
    and this is what i have in 10g :
    BEGIN ApplicationScenario(:1,:2,:3,:4,:5,:6,:7); END;
    :1 = 1
    :2 = '0'
    :3 = 6
    :4 = 0
    :5 = <NULL>
    :6 = 2602
    :7 = 1
    If someone could help me find where i' m wrong, or maybe it's a known bug ?

    Hi,
    assuming you called the function from a sql select statement (select gf_test from dual;) then the error is as expected, you can't do DML inside a select. Parallel DML is unlikely to be your problem.
    I'm a little unclear what you are trying to do with this function though, you could hack it by declaring this an autonomous transaction, but it's unlikely that that is the best way to solve the business problem. If you are trying to find the value of a primary key that is generated from a sequence then the normal way of doing this is to have a before insert trigger that generates the pk for you and then have a pl/sql procedure to do the insert and return the pk to the calling application (which can be powerbuilder or any other language that can call pl/sql.
    Niall
    Bill Mac wrote:
    OK I have managed to get some code to return an error number and this is it:
    ORA-14551: cannot perform a DML operation inside a query
    Cause: DML operation like insert, update, delete or select-for-update cannot be performed inside a query or under a PDML slave.
    Action: Ensure that the offending DML operation is not performed or use an autonomous transaction to perform the DML operation within the query or PDML slave.
    The code was:
    create or replace function GF_TEST return NUMBER is
    retval number;
    begin
    SET TRANSACTION READ WRITE;
    UPDATE parameters
    SET last_parent_co = last_parent_co + 1
    WHERE (row_no = 1)
    RETURNING last_parent_co INTO retval;
    COMMIT WORK;
    retval := 1001;
    return retval;
    exception when others then
    return sqlcode;
    end;
    Does that now make any sense to any one? Am I a pdml slave?
    Edited by: Bill Mac on 07-Apr-2009 07:38

  • Refresh EUL in Oracle Discoverer Administrator using command line

    Hi there! I wonder if there is a way of refreshing the EUL business folders of Discoverer Administrator using a command line, so that it could be done through a batch file process.
    Many thanks in advance

    What do you mean by refreshing the EUL business folders? The definitions of the EUL are updated whenever a workbook/worksheet/business area/hierarchy/ any other object inside the EUL is changed/added/deleted. Also, the contents of your EUL are updated whenever summaries are refreshed (either manually or on a schedule), or when scheduled workbooks run and their contents stored inside the EUL.
    Thanks
    Abhinav Agarwal
    Oracle Business Intelligence Product Management

  • ORACLE 9i-illegal get command

    HELP HELP
    New to Oracle 9i, learning to use database and sql*plus. It took 2 weeks to download (issues) and 1 week to create and password correctly sql to make some practice tables. The tables are created in notepad and when I try to open them --
    1. have to change to all types of files ( figured it out *.sql), and then I get a:
    2. illegal get command
    How do I use a get command? Can a cutnpaste picture be sent? Thanks a lot Sandee

    Command errors-- this what I get; lol
    SP2-0423: Illegal GET command
    SQL>
    SP2-0103: Nothing in SQL buffer to run.
    Here is the table I made---( it was mentioned by the teacher that some some spaces and capitalizations were cosmetic in nature.Well, really, how are we students supposed to know which are needed?
    SQL>
    CREATE TABLE EMPLOYEE
    (employee_SSN Number(9)NOTNULL,
    first_name Varchar2(10)NOTNULL,
    last_name Varchar2(15)NOTNULL,
    address_1 Varchar2(25)NOTNULL,
    address_2 Varchar2(25)NOTNULL,
    city varchar2(25)NOTNULL,
    state char(2)NOTNULL,
    zip Varchar(10)NOTNULL,
    telephone_no number(10)NOTNULL,
    email_addr varchar2(50)NOTNULL,
    birth_date dateNOTNULL,
    hire_date dateNOTNULL,
    department_ID Number(3)NOTNULL,
    salary number(8,2)NOTNULL,
    title_id number(3)NOTNULL)
    -0423: Illegal GET command
    >
    -0423: Illegal GET command
    >
    -0103: Nothing in SQL buffer to run.
    CREATE TABLE EMPLOYEE
    (employee_SSN Number(9)NOTNULL,
    first_name Varchar2(10)NOTNULL,-0734: unknown command beginning "first_name..." - rest of line ign
    >
    last_name Varchar2(15)NOTNULL,-0734: unknown command beginning "last_name ..." - rest of line ign
    >
    address_1 Varchar2(25)NOTNULL,-0734: unknown command beginning "address_1 ..." - rest of line ign
    >
    address_2 Varchar2(25)NOTNULL,-0734: unknown command beginning "address_2 ..." - rest of line ign
    -0044: For a list of known commands enter HELP
    to leave enter EXIT.
    >
    city varchar2(25)NOTNULL,-0734: unknown command beginning "city varch..." - rest of line ign
    >
    state char(2)NOTNULL,-0734: unknown command beginning "state char..." - rest of line ign
    >
    zip Varchar(10)NOTNULL,-0734: unknown command beginning "zip Varcha..." - rest of line ign
    >
    telephone_no number(10)NOTNULL,-0734: unknown command beginning "telephone_..." - rest of line ign
    -0044: For a list of known commands enter HELP
    to leave enter EXIT.
    >
    email_addr varchar2(50)NOTNULL,-0734: unknown command beginning "email_addr..." - rest of line ign
    >
    birth_date dateNOTNULL,-0734: unknown command beginning "birth_date..." - rest of line ign
    >
    hire_date dateNOTNULL,-0734: unknown command beginning "hire_date ..." - rest of line ign
    >
    department_ID Number(3)NOTNULL,-0734: unknown command beginning "department..." - rest of line ign
    -0044: For a list of known commands enter HELP
    to leave enter EXIT.
    >
    salary number(8,2)NOTNULL,-0734: unknown command beginning "salary num..." - rest of line ign
    >
    title_id number(3)NOTNULL)-0734: unknown command beginning "title_id n..." - rest of line ign
    >
    Here I do not have empty spaces.
    (I added them in the first only to see if that would help.)
    create table department
    (department_id number(3)NOTNULL,
    department_name varchar2(30)NOTNULL,
    supervisor_ssn number(9)NOTNULL)
    SQL> create table department
    2
    SQL> (department_id number(3)NOTNULL,
    2 department_name varchar2(30)NOTNULL,
    3 supervisor_ssn number(9)NOTNULL)
    4 ;
    (department_id number(3)NOTNULL,
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    These were copied as best I could from my teacher's examples. Sigh....
    Alrighty then, trying next suggestion...
    SQL> create table department
    2
    SQL> (department_ID number(3) NOT
    2 NULL,
    3 department_name Varchar2(30) NOT
    4 NULL,
    5 supervisor_ssn number(9) NOT
    6 NULL)
    7 ;
    8
    9
    10
    11
    12
    13 run
    14 /run
    15 /
    (department_ID number(3) NOT
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    trying again with new copy and paste function as it won't open a file...
    I'm using this table as it is the shortest...
    SQL>
    SQL>
    SQL> create table department
    2
    SQL> (department_ID number(3) NOT
    2 NULL,
    3 department_name Varchar2(30) NOT
    4 NULL,
    5 supervisor_ssn number(9) NOT
    6 NULL)
    7 ;
    (department_ID number(3) NOT
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    SQL> /
    (department_ID number(3) NOT
    ERROR at line 1:
    ORA-00928: missing SELECT keyword
    SQL>
    SQL>
    Line 1 create table department
    In a three word copy exercise, how did I go wrong? Sandee
    dementia is beginging to be clearer now....lol

  • Oracle equivalent of MySql commands and code.

    Hi,
    Does anyone know the Oracle equivalent of the following? I'm not a DBA and my DBA doesn't know MySQL. TIA
    Assign access rights: login as root user to mysql:
    mysql -uroot -pYourSecretPassword
    On some MySQL installations, the root user has no password, in that case drop
    the -p parameter.
    Then grant the necessary access rights using the following commands: (this will
    automatically create the users)
    GRANT ALL ON daisyrepository.* TO daisy@"%" IDENTIFIED BY "daisy";
    GRANT ALL ON daisyrepository.* TO daisy@localhost IDENTIFIED BY "daisy";
    (The localhost entries are necessary because otherwise the default access rights
    for anonymous users @localhost will take precedence.)
    and create the database using:
    CREATE DATABASE daisyrepository;
    jack

    GRANT ALL ON daisyrepository.* TO daisy@% IDENTIFIED
    BY "daisy";This means:
    GRANT ALL privileges
    ON all tables and views in schema 'daisyrepository'
    To user daisy from any host.
    There are several problems in translation to Oracle:
    1) Oracle has a few more privs than MySQL, in part because there are a few more object types. You need to be more restrictive than 'GRANT ALL';
    2) Oracle does not support wild cards or patterns grants against a schema's objects. You need to specify each object individually;
    3) Oracle users are database users, not host users, so daisy@% does not make any sense at all. You specify the database user name, or perhaps group users into roles and specify the role name.
    This is discussed in the SQL Reference manual, in the 'GRANT' chapter, for each version of the database. The docs are at http://docs.oracle.com
    Have fun :-p

  • MS Access to oracle 10g Migration thru command line/script?

    Hi,
    Is there a command line for executing OWMB?..One of the customers currently using multiple databases of Access DB are interested in migrating to Oracle but they want the migration process to be very simple...For ex: On the click of a button or if there is something like silent mode migration through some command..
    Any help is greatly appreciated.
    Thanks,
    Veena

    Hi Veena,
    There's no command line or silent mode migration facility to run the workbench.
    However, the workbench does that have capability of migrating multiple MDB files in the one operation. Using the Exporter Tool for MS Access, which is shipped as part of the OMWB install, the user can select multiple MDB files to export. For each exported MDB file, an associated XML file is generated by the Exporter tool, which contains the database schema information for the MS Access database. The user can then load up all of these XML files, via a wizard, into the workbench, and carry out their migration. The ability to export & migrate multiple database in the one operation should greatly reduce the customer's migration time.
    I hope this helps.
    Regards,
    Hilary

Maybe you are looking for

  • Which iPod do you recommend?

    Hi! I'm thinking about getting an iPod. I don't have tons of music (about 2 gigs), and I'm trying to decide between a Shuffle or a Nano. I don't need all my music on the iPod at one time, but I wouldn't mind it either. I've heard about some screen pr

  • 'dd-mm-yyyy hh24:mi:ss ' convertion

    '20061106024500' i want to convert it into 'dd-mm-yyyy hh24:mi:ss format how will i do this.

  • Does OS X Yosemite perform Safe Sleep on battery drain shut down?

    I remember with Lion, and I think Mavericks, one of the best features of the MacBook Pro was an auto recovery mode, which I believe to be named "safe sleep." After the warnings for low battery, the computer will noticeably slow (I can also see the pr

  • Is this a classpath problem?

    My application runs fine from withion my IDE (Jcreator), however, when I move the .java files and compile all the files ( C:\FCPRo javac *.java ) and then try and run the driver file ( C:\FCPro java Driver ) I get null pointer exceptions all over the

  • NEED TABLE

    Hi All, I am trying to find table and fields for Net Weight and Gross Weight in Vt01n or even from VL10C.  Any suggestions. Thanks Drew