On which of the database

Hi Team,
One my team member has provide some permissions to user on few database of an instance.
I need to find which are the permissions have been provided on all the databases of an instance. I need the customized script to find this and also that should provide the revoke commands as well.
Thanks
Kumar

If you had a previous script of permissions,  you can compare it with new one (after user's modification)
Best Regards,Uri Dimant SQL Server MVP,
http://sqlblog.com/blogs/uri_dimant/
MS SQL optimization: MS SQL Development and Optimization
MS SQL Consulting:
Large scale of database and data cleansing
Remote DBA Services:
Improves MS SQL Database Performance
SQL Server Integration Services:
Business Intelligence

Similar Messages

  • Proxy functionality in the database connection pool

    Hi,
    I am scouring the internet and forums looking for a way to connect to my database from the .rpd connection pool using proxy authetication. NOT Act-As proxy that is a BIEE feature, but RDBMS proxy authentication with BIEE acting as the middle-tier connecting on behalf of many users and authenticating to the RDBMS AS THE INDIVIDUAL USER. I haven't had any luck, and am hoping someone here has set up this same kind of access.
    We have a requirement to use SSO with BIEE to integrate with our portal and discoverer apps. We also have a requirement to use EUS (Enterprise User Security). EUS allows you to login to the database using the userids/password from OID. Note that the database doesn't support the SSO token, but it uses the same userid/password stored in OID for authenticating to the database. You still must initiate a connection to the database, but the authentication goes to LDAP. Every connection to BIEE may be using a different userid - we will not have a shared login.
    So the issue I see is:
    - We configure SSO
    - In the BI Server the :USER session variable is set (but NOT :PASSWORD, since BI Server didn't authenticate you it doesn't have the password)
    - We create a connection pool - This is where we hit the issue - we need each connection to BI Server to connect down to the database as the SSO user. Since we aren't using a shared account we can't enter a userid/password in this connection. We also can't user :USER and :PASSWORD since SSO doesn't set the :PASSWORD session variable. What I would hope to find is a checkbox "Proxy Authentication" (around where "Shared Logon" checkbox is located) that would connect to the database as the proxy user and then switch to the SSO user.
    This is what happens with BI Publisher. On the JDBC connection screen there is a "Proxy Authentication" checkbox.
    So, has anyone already solved this problem? Thanks!

    Hello, is there anyone knows what this program does
    and how this program is executed? There is nodatabase
    mentioned.That's because it's expecting the URL (which contains
    the database type, hostname, and so on) to be passed
    in on the command line (argv[0]), as well as the
    username and password (argv[1] and argv[2]).
    Thank you very much for your help.
    Regards,
    Lucas

  • Tell me select Query that HITs the database Directly  ???

    Hi,
        I have a table, for this table in the Techinical Setttings I selected Buffering allowed, and buffering type is Full Bufferd.Now, I want a Select Query which hits the database directly, without fetching records from the BUFFER.
    Except using SELECT BYPASSING BUFFER query ????
        Regards,
    V.Raghavender.

    hi,
    ·        Any SELECT with a sub query or with joins
    ·        Any set function (COUNT, MIN, MAX, SUM, AVG)
    ·        GROUP BY
    ·        HAVING
    ·        SELECT DISTINCT
    ·        ORDER BY
    Examples:
    SELECT /*@ SAP BYPASSING BUFFER */ * FROM MYTAB
        WHERE KEY1 = ? AND KEY2 = ?
    SELECT * FROM MYTAB WHERE KEY1 = ?
    SELECT * FROM MYTAB
        WHERE KEY1 = ? AND KEY2 = ? OR KEY1 = ?
    SELECT MAX(DATA) FROM MYTAB WHERE KEY1 = ? KEY2 = ?
    SELECT * FROM MYTAB
        WHERE KEY1 = ? AND KEY2 = ? AND DATA =
       (SELECT DATA FROM MYTAB WHERE KEY1 = ? AND KEY2 = ?)
    if helpful pls award points.
    sri

  • Could I refactor the Database query functions?

    Hi,
    I have a lot of functions which doing the database queries. They all return map. "select to_chat(key), to_chart(value) from table"
    code like following. Since so many database access parts are same.
    only "query", and "preparestatement. setString(1, "aa") , preparestatement. setString(2, "aa") ..........." are different . I wonder if I could refactor them.
    If I could, I use dataSource in websphere. Is there any syncronizaion issue in it.
    Thank you so much.
    public Map getPriceChangeData(
              Timestamp openTime,
              Timestamp closeTime)
              throws Exception {
    TreeMap openCloseData = new TreeMap();
    Connection conn = null;
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    final String query ="select to_char(?), to_char(?) from table1";
    try {
    conn = DSDataLayer.connect();
    pstmt = conn.prepareStatement(query);
    pstmt.setInt(1, 3);
    psmt.setInt(2. 6);
    ( the psmt.set... could be any number
    rs = pstmt.executeQuery();
    while (rs.next()) {
    openClosetData.put(
         rs.getString(1),
         rs.getString(2));
    return openClosetData;
    } catch (SQLException se) {
    String err =GETOPENCLOSE_ERR+ "on query"
    + query
    + " "
         + se.toString();
                   throw new Exception(err);
              } catch (Exception e) {
                   String err = GETOPENCLOSE_ERR
                             + e.toString();
                   throw new Exception(err);
              } finally {
                   try {
                        if (rs != null)
                             rs.close();
                        if (pstmt != null)
                             pstmt.close();
                        if (conn != null)
                             conn.close();
                   } catch (SQLException sqle) {
                        //log error and continue
                   } finally {
                        rs = null;
                        pstmt = null;
                        conn = null;
         }

    ResultSet rs = st.executeQuery("SELECT Customer_No FROM ServiceLogRecdb1");
    while(rs.next())
    {System.out.println(rs.getString("ServiceNo")+"\t"+rs.getString ("CustomerNo")+"\t"+rs.getString("IBMPMRNo"));
    Customer_No.setText(rs.getString("CustomerNo"));
    iServiceNo.setText(rs.getString("ServiceNo"));
    iCompanyName.setText(rs.getString("CompanyName"));
    iAddress.setText(rs.getString("Address"));
    iWorkOrderNo.setText(rs.getString("WorkOrderNo"));
    iTotalHours.setText(rs.getString("TotalHours"));
    iRequestDate.setText(rs.getString("RequestDate"));
    iContactNo.setText(rs.getString("ContactNo"));
    iRequestedBy.setText(rs.getString("RequestedBy"));
    iTimeIn.setText(rs.getString("TimeIn"));
    iTimeOut.setText(rs.getString("TimeOut"));
    iHoursDeducted.setText(rs.getString("HoursDeducted"));
    iIBMPMRNo.setText(rs.getString("IBMPMRNo"));
    iServiceDescriptionRequest.setText(rs.getString("ServiceDescriptionRequest"));
    iActionTaken.setText(rs.getString("ActionTaken"));
    iEngineer.setText(rs.getString("Engineer")); }Wrong implementation....
    if SELECT Customer_No FROM ServiceLogRecdb1 is your query it is certain that the ResultSet Holds values of only Customer_No not all other fields.
    I advice u to recheck wid your DB query again.....
    REGARDS,
    RaHuL

  • Console Application not updating the database

    Dear all,
    I am new to c# development. I have a console application front end in program.cs
    I have a local database on visual studio.
    When I execute the stored procedure locally on the database the data is getting updated in the database.
    When I update the same through Console Application - the data is not appearing in the database.
    Can somebody throw light on this? Where I am missing
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data;
    using System.Data.SqlClient;
    namespace AssetApp
    class Program
    static void Main(string[] args)
    bool value = true;
    while (value)
    value = getdisplay();
    //Console.ReadLine();
    //value = false;
    private static bool getdisplay()
    Console.WriteLine("-------------------------------------- ");
    Console.WriteLine("---------------------------------------");
    Console.Clear();
    Console.WriteLine("----------Asset Application------------");
    Console.WriteLine(" 1 Company Asset ");
    Console.WriteLine(" 2 Standby Laptop Register ");
    Console.WriteLine(" 3 Scrap Register ");
    Console.WriteLine(" 4 Purchase Register ");
    Console.WriteLine(" 5 Service Call Report ");
    Console.WriteLine(" 6 IT Helpdesk ");
    Console.WriteLine(" 7 Exit ");
    Console.WriteLine("---------------------------------------");
    string input = Console.ReadLine();
    switch (input)
    case "1":
    CompanyAsset();
    break;
    case "2":
    Console.WriteLine("Standy Laptop Register");
    break;
    case "3":
    Console.WriteLine("Scrap Register");
    break;
    case "4":
    Console.WriteLine("Purchase Register");
    break;
    case "5":
    Console.WriteLine("Service call Report");
    break;
    case "6":
    Console.WriteLine("IT Helpdesk");
    break;
    case "7":
    return false;
    default:
    break;
    return true;
    private static void CompanyAsset()
    Console.WriteLine("------Company Asset------------------------");
    Console.WriteLine("Type the Department Name");
    string departmentName = Console.ReadLine();
    Console.WriteLine("Type the First Name");
    string firstName = Console.ReadLine();
    Console.WriteLine("Type the Last Name");
    string lastName = Console.ReadLine();
    Console.WriteLine("Type the User Name");
    string userName = Console.ReadLine();
    Console.WriteLine("Type the Model Number");
    string modelNumber = Console.ReadLine();
    Console.WriteLine("Type the AssetTypeID");
    string assetTypeID = Console.ReadLine();
    Console.WriteLine("Type the SerialNumber");
    string serialNumber = Console.ReadLine();
    Console.WriteLine("Type the WarrantyStartDate");
    DateTime warrantyStartDate = Convert.ToDateTime(Console.ReadLine());
    Console.WriteLine("Type the WarrantyEndDate");
    DateTime warrantyEndDate = Convert.ToDateTime(Console.ReadLine());
    Console.WriteLine("Company");
    string company = Console.ReadLine();
    Console.WriteLine("EngineerID");
    string engineerID = Console.ReadLine();
    Console.WriteLine("ITHelpdeskID");
    string itHelpdeskID = Console.ReadLine();
    Console.WriteLine("EmpID");
    string empID = Console.ReadLine();
    //Handshake
    SqlConnection myNewConnection = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|\\AssetApp.mdf;Integrated Security=True");
    //open the database
    myNewConnection.Open();
    //create command
    SqlCommand myCommand = myNewConnection.CreateCommand();
    //using the stored procedue to update the database using parameters add
    myCommand.CommandText = "InsertAsset";
    myCommand.CommandType = CommandType.StoredProcedure;
    myCommand.Parameters.Add(new SqlParameter("@DepartmentName", departmentName));
    myCommand.Parameters.Add(new SqlParameter("@FirstName", firstName));
    myCommand.Parameters.Add(new SqlParameter("@LastName", lastName));
    myCommand.Parameters.Add(new SqlParameter("@UserName", userName));
    myCommand.Parameters.Add(new SqlParameter("@ModelNumber", modelNumber));
    myCommand.Parameters.Add(new SqlParameter("@AssetTypeID", int.Parse(assetTypeID)));
    myCommand.Parameters.Add(new SqlParameter("@SerialNumber", serialNumber));
    myCommand.Parameters.Add(new SqlParameter("@WarrantyStartDate", warrantyStartDate));
    myCommand.Parameters.Add(new SqlParameter("@WarrantyEndDate", warrantyEndDate));
    myCommand.Parameters.Add(new SqlParameter("@Company", company));
    myCommand.Parameters.Add(new SqlParameter("@EngineerID", int.Parse(engineerID)));
    myCommand.Parameters.Add(new SqlParameter("@ITHelpdeskID", int.Parse(itHelpdeskID)));
    myCommand.Parameters.Add(new SqlParameter("@EmpID", int.Parse(empID)));
    int recordsAffected = myCommand.ExecuteNonQuery();
    if (recordsAffected == 1)
    Console.WriteLine("Successful your entry");
    else
    Console.WriteLine("Your entry is not successful");
    myNewConnection.Close();
    Console.WriteLine("");
    Console.WriteLine("Press Enter to continue");
    Console.ReadLine();
    public static void StandbyLaptopRegister()
    Console.WriteLine("-------------------------------");
    Console.WriteLine("Select the Date & Time");
    string DateTime = Console.ReadLine();
    Console.WriteLine("");
    ALTER PROCEDURE dbo.InsertAsset
    @DepartmentName NVARCHAR(50),
    @FirstName NVARCHAR(50),
    @LastName NVARCHAR(50),
    @UserName NVARCHAR(50),
    @ModelNumber NVARCHAR(50),
    @AssetTypeID INT,
    @SerialNumber NVARCHAR(50),
    @WarrantyStartDate SMALLDATETIME,
    @WarrantyEndDate SMALLDATETIME,
    @Company NVARCHAR(50),
    @EngineerID INT,
    @ITHelpdeskID INT,
    @EmpID INT
    @parameter1 int = 5,
    @parameter2 datatype OUTPUT
    AS
    /* SET NOCOUNT ON */
    BEGIN
    INSERT CompanyAsset(DepartmentName,
    FirstName,
    LastName,
    UserName,
    ModelNumber,
    AssetTypeID,
    SerialNumber,
    WarrantyStartDate,
    WarrantyEndDate,
    Company,
    EngineerID,
    ITHelpdeskID,
    EmpID)
    VALUES(@DepartmentName,
    @FirstName,
    @LastName,
    @UserName,
    @ModelNumber,
    @AssetTypeID,
    @SerialNumber,
    @WarrantyStartDate,
    @WarrantyEndDate,
    @Company,
    @EngineerID,
    @ITHelpdeskID,
    @EmpID)
    /*RETURN @@IDENTITY*/
    END
    Cheers
    Sathya

    Hello,
    Usually when I see
    AttachDbFilename=|DataDirectory| ...
    The database was added into the project via the IDE add new data source and if so make sure under the property window for the database that "Copy to Output Directory" is set to either the first or last option as the default "Copy always"
    copies the database each time you build the project thus overwrites the last time you ran the project.
    I would recommend the "Copy if Newer" which means the database is only copied if you make changes to the database. Set "Copy if newer", build run check results.
    Of course this may not be the issue but may very well be too.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Find particular database role permission on all the databases of an instance

    Hi Team,
    I want to find particular database role permission on all the databases of a instance.
    Example: 50 databases are running on an instance. I want to find datareader permission of ABCDE account, on which of the databases it exist?
    Please provide me a customized script to find it.
    Thanks
    Kumar

    Hi K735,
    According to your description, you want to find databases where a specific database role of a specific user exists. To do this, you could execute the stored procedure below by proving a value for each of the two parameters (@databaseRole, @user)  to
    specify the database role and the user as the following example: execute findDatabaseRole 'db_datareader', 'testUser'
    USE master
    GO
    CREATE PROCEDURE dbo.findDatabaseRole
    @databaseRole VARCHAR(200),
    @user VARCHAR(250)
    AS
    DECLARE @DBuser_sql VARCHAR(4000)
    DECLARE @DBuser_table TABLE
    AssociatedDatabaseRole VARCHAR(200),
    DBName VARCHAR(200),
    UserName VARCHAR(250),
    LoginType VARCHAR(500)
    INSERT @DBuser_table
    EXEC sp_MSforeachdb @command1='SELECT USER_NAME(b.role_principal_id) AS AssociatedDatabaseRole, "[?]" AS DBName, a.name AS Name,
    a.type_desc AS LoginType FROM [?].sys.database_principals a
    , [?].sys.database_role_members b where a.principal_id=b.member_principal_id and
    a.sid NOT IN (0x01,0x00) AND a.sid IS NOT NULL AND a.type NOT IN ("C")
    AND a.is_fixed_role <> 1 AND a.name NOT LIKE "##%" AND "?" NOT IN ("master","msdb","model","tempdb")
    ORDER BY Name'
    SELECT AssociatedDatabaseRole, DBName,UserName,LoginType
    FROM @DBuser_table WHERE UserName=@user and AssociatedDatabaseRole=@databaseRole
    group by AssociatedDatabaseRole, DBName,UserName,LoginType
    GO
    Regards,
    Michelle Li

  • Hello there, I am creating a database of all our companies press contacts. I would like to create a form that would act as the front end and feed the database which is obviously the back end. The database is in Access 2013. My question is to whether this

    Hello there, I am creating a database of all our companies press contacts. I would like to create a form that would act as the front end and feed the database which is obviously the back end. The database is in Access 2013. My question is to whether this is indeed possible?

    This forum thread appears to point towards the problem.
    Re: Unable to Switch Audio Sync Settings

  • Which is better? store files in the database or directly on the O.S.?

    Hi,
    i´m developing an application to manager files. which is better? store files in the database or directly on the O.S.? If i decide to store on database, i will use the BLOB data type but i have a doubt...the BLOB data type occupies the same space on database regardless of file size? there is another data type better?
    Tks,
    Fernando.

    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1011065100346196442
    Ask Tom has a bit of info to share on the topic. Have a read of this. :)

  • View name in the catalog database which shows the target bkp status

    Hi
    Can any one tell me the view name in the catalog database
    which describes the target database status( succesfull or not)
    Thank you

    You need to have a little patience. Anyways, if you are taking backup by backup sets, than this view may help.
    [RC_BACKUP_SET_DETAILS|http://download.oracle.com/docs/cd/B19306_01/backup.102/b14194/rcviews019.htm]
    See if this helps you.
    Better option is to configure RMAN backup with the v$session_longops and check it to see whether backup is complete or not.
    HTH
    Aman....

  • Required the details of jar files which is loaded in the database

    Hi
    We are having a 10g database which is running under Solaris machine. There are lot of .jar files which are loaded into the database. I would like to know how to find those .jar file details atlease the name of the files which are loaded in the database. Is there any view for this.
    I couldnt find anything from the Java option in TOAD
    Please provide a solution.
    Thanks
    SHIYAS M

    From 11g onwards, you have
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> desc javajar$
    Name Null? Type
    NAME NOT NULL VARCHAR2(30)
    OWNER# NOT NULL NUMBER
    PATH VARCHAR2(4000)
    CONTENTS BLOB
    SQL> desc javajarobjects$
    Name Null? Type
    JARNAME NOT NULL VARCHAR2(30)
    OWNER# NOT NULL NUMBER
    OBJNAME NOT NULL VARCHAR2(40)
    NAMESPACE NOT NULL NUMBER

  • How to know which table in the database a form is accessing

    Actually Im new to oracle applications,
    Im getting an error when i open a form from system administrator responsibility saying that table doesnot exist.
    My basic doubt is, how to know which table in the database a form is accessing.
    Any response is higly appreciated.
    Thanks,
    Praveen
    Edited by: user10239520 on Sep 10, 2008 7:07 AM

    Take a look at the following thread:
    Is there a query log in EBS?
    Re: Is there a query log in EBS?

  • Which are the necessary users for a New Database...

    While making a new Database.. Oracle 11g Wizrd automatically creates a long list of unwanted users.. can these be dropped.. which are the necessary users pls help
    Drop User ANONYMOUS Cascade;
    Drop User APEX_PUBLIC_USER Cascade;
    Drop User CTXSYS Cascade;
    Drop User DBSNMP Cascade;
    Drop User DIP Cascade;
    Drop User EXFSYS Cascade;
    Drop User FLOWS_030000 Cascade;
    Drop User FLOWS_FILES Cascade;
    Drop User MDDATA Cascade;
    Drop User MDSYS Cascade;
    Drop User MGMT_VIEW Cascade;
    Drop User OLAPSYS Cascade;
    Drop User ORACLE_OCM Cascade;
    Drop User ORDPLUGINS Cascade;
    Drop User ORDSYS Cascade;
    Drop User OUTLN Cascade;
    Drop User OWBSYS Cascade;
    Drop User SCOTT Cascade;
    Drop User SI_INFORMTN_SCHEMA Cascade;
    Drop User SPATIAL_CSW_ADMIN_USR Cascade;
    Drop User SPATIAL_WFS_ADMIN_USR Cascade;
    Drop User SYS Cascade;
    Drop User SYSMAN Cascade;
    Drop User SYSTEM Cascade;
    Drop User TSMSYS Cascade;
    Drop User WKPROXY Cascade;
    Drop User WKSYS Cascade;
    Drop User WK_TEST Cascade;
    Drop User WMSYS Cascade;
    Drop User XDB Cascade;
    Drop User XS$NULL Cascade;

    This metalink doc describes each schema and what is does and how to install/uninstall:
    Information On Installed Database Components and Schemas - Doc ID: 472937.1
    Application Express Removal:
    http://database.in2p3.fr/doc/oracle/Oracle_Database_11_Release_1_(11.1)_Documentation/install.111/b32072/remove_oracle_sw.htm#CIHGAHFJ
    determine what components you do not use and then you can remove them safely (by following the documentation).
    Here is a script to remove components/schemas that my company does not use (condensed from above).
    Only run it if you determine you do not use these advanced components (but you could always re-install them if necessary).
    Script has been tested and does not break anything.
    (run from db host)
    # remove application express
    sqlplus "/as sysdba"
    ALTER SESSION SET CURRENT_SCHEMA = FLOWS_030000;
    EXEC wwv_flow_upgrade.drop_public_synonyms;
    ALTER SESSION SET CURRENT_SCHEMA = SYS;
    DROP USER FLOWS_030000 CASCADE;
    DROP USER flows_files CASCADE;
    DROP USER apex_public_user CASCADE;
    exit
    # deinstall Oracle Multimedia: -> SQL> (on Linux/UNIX)
    sqlplus "/as sysdba"
    @?/ord/im/admin/imremov.sql
    # ORACLE SPATIAL
    sqlplus "/as sysdba"
    -- drop all public synonyms created for Spatial:
    set pagesize 0
    set feed off
    spool dropsyn.sql
    select 'drop public synonym "' || synonym_name || '";' from dba_synonyms where table_owner='MDSYS';
    spool off;
    @dropsyn.sql
    set feedback on
    drop user mddata cascade;
    drop user spatial_csw_admin_usr cascade;
    drop user spatial_wfs_admin_usr cascade;
    drop user MDSYS cascade;
    exit
    # ULTRASEARCH
    cd $ORACLE_HOME/ultrasearch/admin/
    sqlplus "/as sysdba"
    set define off
    @wk0deinst.sql
    exit
    # workspace manager
    sqlplus "/as sysdba"
    @$ORACLE_HOME/rdbms/admin/owmuinst.plb
    exit
    # OLAP
    cd $ORACLE_HOME/olap/admin
    sqlplus "/as sysdba"
    @?/olap/admin/catnoamd.sql
    @?/olap/admin/olapidrp.plb
    @?/olap/admin/catnoaps.sql
    @?/olap/admin/catnoxoq.sql
    spool syn.sql
    select 'drop public synonym '|| synonym_name ||';' from dba_synonyms where table_owner = 'OLAPSYS';
    spool off;
    @syn.sql
    spool syn.sql
    select 'drop public synonym '|| synonym_name ||';' from dba_synonyms where table_owner = 'EXFSYS';
    spool off;
    @syn.sql
    spool syn.sql
    select 'drop public synonym '|| synonym_name ||';' from dba_synonyms where table_owner = 'FLOWS_FILES';
    spool off;
    @syn.sql
    exit

  • When I try to open aperture (which has been working fine for months), I get this response: There was an error opening the database for the library "~/Pictures/Aperture Library.aplibrary". Please help!!

    When I try to open aperture (which has worked great for months), I get this response:
    There was an error opening the database for the library “~/Pictures/Aperture Library.aplibrary”.
    Please help!! Thank you!! =)

    Sonny3300, your signature says "Aperture 2" - is that correct? Then you need this trouble shooting guide:
    Aperture 2: Troubleshooting Basics: http://support.apple.com/kb/HT2945
    What is your Operating system version and where is your library located? Have imported new images recently or changed the location of your library?
    Regards
    Léonie

  • Is their,Query to find the which tempfile our Database currently using ?

    Hi All,
    Is their,Query to find the which tempfile our Database currently using ?
    Regards,
    DB

    select property_name,property_value from database_properties where property_name like '%TABLE%';
    John Watson
    Oracle Certified Master DBA
    http://skillbuilders.com
    Edited by: JohnWatson on May 14, 2013 12:27 PM
    (assuming that you mean temporary tablespace rarther thsn tempfile)

  • Can the database which is running in linux 32 bit can be migrated to 64 bit

    can the database which is running in linux 32 bit can be migrated to 64 bit,while converting oracle ebs R12.1.1 in linux 32 bit to linux 64 bit

    Hi ,
    it seems like duplicate of the post:migrating database from 32 bit to 64 bit
    Your query is already answered by hussein in that post.
    -Rk

Maybe you are looking for

  • Where do I put the proxy in the setting of Mail?

    I am usine internet on my working office, nad I cannot get my mails with Mail, because I need to add a proxy. So I add the proxy in the set up but the port 993 SSL is not ok. What should I put? thanks

  • User Profiles - MVP Advice Needed

    Hi I'm looking for some guidance around how to/best practice to complete full-cycle synchronization of user profile properties. Oracle HR is the source of truth for people related data. We run a synchronization to Active Directory of the people data

  • Why doesnt my mobile me gallery work

    My mobile me account wont reconize my apple id and password to use mobile me gallery

  • Why has bbc iplayer stopped working on OS 10.5.8

    My mac mini has stopped downloads of the latest iplayer and firefox versions sayng that it it not compatible with the software.  The os check says that there is no softwaqre update available.  Ideas please.

  • IDSM 5.1(1) S222 certificate unknown errors

    Hi, I reimaged my IDSM2 sensor in the following sequence: 1. Installed WS-SVC-IDSM2-K9-sys-1.1-a-5.1-1.bin.gz 2. Installed IPS-sig-S222-minreq-5.0-5.pkg I am able to launch IDM and work with it. But, I get the following errors when I type "show event