Disable Other Databases From Importing your Tables

Is there a way to disable other databases from being able to get at your back end tables?
History:  I have posted this same question before, and thought I had it resolved by splitting the databases into a back-end and a front-end, where the back-end has the actual tables and is password protected.  The front end is not password protected,
but uses [fOSUserName()] to determine permissions.  Unfortunately; though I had to use a password to link to the back-end table,
if I create a blank database and import the tables from the front-end, I have full view and modification ability over the protected tables in the back-end without being asked for a password.
Application:  Currently this is an in-house database that is low risk, but I need to share the same data with trusted contractors on a VPN shared Folder, where I don't want them diving into each other's workloads and invoicing. 

Not the answer I wanted, but as usual, you are correct.  The two of you (Hans and Bill) have been so valuable in the different positions I have held, and I am only one of
so many on this site.
Thank you!
Mark Matzke
More about my situation:
Going to SQL would mean moving to the actual IT supported tool, but it seems the larger the company, the less the IT department is willing to customize applications to maximize efficiency, even when my department is dealing with 50 million in yearly expenses
for a single region.  With Microsoft Access, management and front line employees get a dashboard view that allows for maximizing the resources we have.  Without Microsoft Access, we would have been stuck running data pulls that seem to create tunnel
vision.  I agree that a SQL server may be the way to go, but not necessarily practical for departments situation.  Because of this, I will back down from security, keep the database fully available to in-house staff, and export Excel reports to individual
contractor drives (with data only applicable to each individual contractor).  

Similar Messages

  • How to disable other users from changing the status

    Hi,
    The status entry field can be changed irrespective of ownership in Documents.
    I was able to change the status on the document created by other user.
    Example: The status of document was In-Work. The document owner was X. But I was able to change it to Inspection Check.
    How to disable other users from changing the status?
    Regards,
    Shashi

    This is a frequently discussed topic.Please use the search feature.It has been discussed in [previous posts|CV01N: Filter documents by role; in various contexts.
    Regards,
    Pradeepkumar Haragoldavar

  • Send multiple rows to database from a dynamic table.

    I'm using JSP for my application. I have a table that changes
    in size depending on a value a user selects in a drop down list.
    They can then enter some values into the table and click the submit
    button. I know for whatever reason Dreamweaver only sends the first
    row to the database and I've had a hard time finding good
    examples/tutorials showing how I could make it send all the rows to
    the database.
    Is there a way for me to just do a while/for loop taking into
    account the number of rows in the table? That would be ideal for me
    as it sounds like the simplest method and I'm very new to web
    development.
    Should I be using the Server Behavior Builder or a Stored
    Procedure and if so is there any good examples for those as I've
    had a hard time working with any documentation/tutorials I've found
    regarding them.
    Any help would be greatly appreciated.

    Hey Baxter, thanks for the response. I guess I should have
    been more specific when I said I was new to Web Development. I am
    actually in Software Development where I primarily code in Java and
    other OO languages. I have worked with a database before in java by
    writing my own servlet. I have also done some HTML so jsp is very
    good for me as it is mostly java with the odd bit of html
    structuring with tables and such.
    Languages like PHP and ASP I am not very familiar with and
    most of the solutions I find for this very problem revolve around
    ASP. I have just found it very hard to find a solution to this
    problem. It seems like it isn't talked about very much even in
    Dreamweaver's own documentation. If a stored procedure is the only
    way to go then I think I can handle it with some guidance if anyone
    knows of some tutorials/examples available.
    Also is it really not possible to just go into the code and
    somehow make it loop through each row in the table and execute a
    prepared statement for each row? I've included some code of the
    dynamic table I have and as you can see I have a Submit button on
    its own outside of the table. If i had it inside then the user
    would have to submit each row individually which isn't realistic
    when there are many rows of data. Since the Submit is outside of
    the while it only gets called once after the table is populated
    thus sending only one row of data.
    You might want to copy paste the code into a text editor as
    some of the lines are long and may be hard to read here. If you
    notice any errors in the table itself like mismatching column
    headers it is because I changed some column names before attaching
    it here so just assume that the table is all built correctly.
    PS: I am going to be out of town for five days or so, so if I
    don't reply to you right away don't think I disappeared from this
    thread. Thanks again.
    <div>
    <h2>TableData</h2>
    <form ACTION="<%=MM_editAction%>" METHOD="POST"
    name="tabledata">
    <table>
    <% if (!Recordset1_isEmpty ) { %>
    <tr>
    <td class="head">Name1</td>
    <td class="head">Name2</td>
    <td class="head">Name3</td>
    <td class="head">Code1</td>
    <td class="head">Code2</td>
    <td class="head">Old Status1</td>
    <td class="head">New Status1</td>
    <td class="head">Old Status2</td>
    <td class="head">New Status2</td>
    <td class="head">Year</td>
    </tr>
    <% } /* end !Recordset1_isEmpty */ %>
    <% while
    ((Recordset1_hasData)&&(Repeat1__numRows-- != 0)) { %>
    <% if (szin11 ==2) {color11 = "#ECECEC" ;szin11=(0);}
    %><tr>
    <td><input type="hidden"
    value="<%=((((Recordset1_data =
    Recordset1.getObject("Name1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="Name1"
    /><%=(((Recordset1_data =
    Recordset1.getObject("Name1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <td><input value="<%=((((Recordset1_data =
    Recordset1.getObject("Name2"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="Name2"
    type="hidden" /><%=(((Recordset1_data =
    Recordset1.getObject("Name2"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <td><input value="<%=((((Recordset1_data =
    Recordset1.getObject("Name3"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="Name3"
    type="hidden" /><%=(((Recordset1_data =
    Recordset1.getObject("Name3"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <input name="Code1" type="hidden"
    value="<%=(((Recordset1_data =
    Recordset1.getObject("Code1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%>" />
    <td><input value="<%=((((Recordset1_data =
    Recordset1.getObject("Code2"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="Code2"
    type="hidden" /><%=(((Recordset1_data =
    Recordset1.getObject("Code2"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <td><input value="<%=((((Recordset1_data =
    Recordset1.getObject("Old Status1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="Old Status1"
    type="hidden" /><%=(((Recordset1_data =
    Recordset1.getObject("Old Status1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <td><input size="10"
    value="<%=((((Recordset1_data = Recordset1.getObject("New
    Status1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="New Status1"
    type="hidden" />
    <%=(((Recordset1_data = Recordset1.getObject("New
    Status1"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <td><input name="New Status1" type="text" size="5"
    /></td>
    <td><input size="10"
    value="<%=((((Recordset1_data = Recordset1.getObject("Old
    Status2"))==null ||
    Recordset1.wasNull())?"":Recordset1_data))%>" name="Old Status2"
    type="hidden" />
    <%=(((Recordset1_data = Recordset1.getObject("New
    Status2"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%></td>
    <td><input name="New Status2" type="text" size="5"
    /></td>
    <td><%=(((Recordset1_data =
    Recordset1.getObject("Year"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%>
    <input name="Year" type="hidden"
    value="<%=(((Recordset1_data =
    Recordset1.getObject("Year"))==null ||
    Recordset1.wasNull())?"":Recordset1_data)%>"
    /></td></tr>
    <% if (szin11 ==0) {color11 = "#FFFFFF"; szin11=(0);}
    %>
    <% szin11++; %>
    <%
    Repeat1__index++;
    Recordset1_hasData = Recordset1.next();
    %>
    </table>
    <p>
    Comments<br />
    <textarea name="comments" cols="40"
    rows="4"></textarea>
    </p>
    <p>
    <input type="submit" value="Submit" />
    </p>
    <input type="hidden" name="MM_insert" value="tabledata"
    />
    </form>
    </div>

  • When I logoff & click close button for OWA , I don't get message w/ IE. "To complete logoff process & prevent other users from opening your mailbox, you must close all browser windows and exit browser application." Result is - I don't logout.

    Mozilla Firefox 4.o Beta 3
    Windows XP SP3

    Clear the cookies from that website to get logged off.
    Remove Cookies, use the search bar or click the [[Site Identity Button]] on the location bar and go to "View Cookies" via the More Information button in the pop-up.
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    You are running an old Firefox 4.0 beta 3 version.<br />
    Any reason why you haven't installed the Firefox 4.0 release?
    * http://www.mozilla.com/en-US/firefox/all.html

  • HT4528 The new iOS6 allows you to send/receive messages from other phones linked to your iTunes account which is great for checking on my kids but I dont want them to be able to add my phone to their messages.  Is there a way to block from being added to

    I updated to the iOS6, and it allows you to view and send messages with any phone on iOS6 and linked to your iTunes account.  You can unselect phones so they dont go out through the phone, but is there a way to block other phones from adding yours?  Example, I don't ind being able to see what my son is sending/receiving on his phone but I don't really want him to be abe to add my phone and see all my messages...

    Simple process. If an iPhone go to the Apple Store and not Verizon
    the phone from Verizon will be a refurbished device and not new unless under the 14 day worry free guarantee
    good luck

  • How to connect the database from one ip to another ip pc.?

    hai,
    iam new to the obiee. i have the database in the ip : 198.0.0.0(for ex) and i have to connect that through the odbc to my pc ip: 198.0.0.1 (for ex). plz explain how we can connect to the other database from our pc to import that database to our administrator tool in bi.
    thanks in advance,

    hi...
    install client software in your machine
    perform, listener configuration using net configuration assistant,
    Now using this listener name, you create a DSN and use it in rpd,, you want to develope
    OR
    go to ODBC Data Source & Administrator and add DSN with Microsoft ODBC for Oracle
    in server field, you write your parent machine\listenername
    and use this in rpd... i hope the second one works out...

  • Download data Other databases to Oracle

    Hi,
    Currrently I am following a process through MS Access to A) download the data from other databases, B) truncate Oracle tables to delete all the data and C) to upload the data to Oracle Tabes...
    Can you please advice if there is a way I can download the data directly from other databases to Oracle... I am looking for details as I am new bee with Oracle...
    Thanks

    I am just curious about your word "database".
    Is this in Oracle terms, MS terms, MYSQL terms?
    Please clarify.
    Can you please advice if there is a way I can download the data directly from other databases to Oracle...Yes, depending upon exactly which flavor of other databases may be.
    I am looking for details as I am new bee with Oracle..Details are database specific, but since we don't anything about other databases, I won't guess at which details you may require.

  • Enhance the Master Data field in Datasource from standard source table

    Hi Friends Please help me to resolve this, would really be very kind of all of you.
    Requirement. I want to Enhance the field ZFACTREG from VIBDBE table in my datasource 0busentity_attr extract structure l_s_REIS_BUSENTITY_ATTR, I want to create the logic in CMOD exit_saplrsap_002 to call my function module for enhancement of master data. Please help me Step by Step
    Thanks
    Poonam Roy
    Step #1
    I put this code which gives me error in CMOD like this
    ERROR : Das formale Argument 'OTHERS' muss am Schluss der Ausnahmeliste stehen.
    ABAP Code#1 IN exit_saplrsap_002
    DATA: l_d_fmname(30) TYPE c.
    CONCATENATE 'Z_DS_' i_datasource(25) INTO l_d_fmname.
    TRY.
    CALL FUNCTION l_d_fmname
    EXPORTING
    I_DATASOURCE = I_DATASOURCE
    I_UPDMODE = I_UPDMODE
    TABLES
    I_T_SELECT = I_T_SELECT
    I_T_FIELDS = I_T_FIELDS
    I_T_DATA = I_T_DATA
    C_T_MESSAGES = C_T_MESSAGES
    EXCEPTIONS
    RSAP_CUSTOMER_EXIT_ERROR = 1
    OTHERS = 2
    IF FOUND.
    IF SY-SUBRC <> 0.
    RASIE RSAP_CUSTOMER_EXIT_ERROR.
    END IF
    CATCH CX_SY_DYN_CALL_ILLEGAL_FUNC.
    ENDTRY.
    Step#2
    I simple created the Function module Z_DS_BUSINESS
    and put the code in source code which gives me error . what should i put in other tabs like"Import", Export", Tables" i kept blank
    ABAP CODE give me error : The Dictionary structure or table "FIELD-SYMBOLS" is either not active. i have to remove include in the FM. WHY SO??
    FUNCTION Z_DS_BUSINENSS
    ""Lokale Schnittstelle:
    *" IMPORTING
    *" VALUE(I_DATASOURCE) TYPE RSAOT_OLTPSOURCE
    *" VALUE(I_CHABASNM) TYPE SBIWA_S_INTERFACE-CHABASNM
    *" VALUE(I_UPDMODE) TYPE SBIWA_S_INTERFACE-UPDMODE
    *" TABLES
    *" I_T_SELECT TYPE SBIWA_T_SELECT
    *" I_T_FIELDS TYPE SBIWA_T_FIELDS
    *" I_T_DATA
    *" C_T_MESSAGES STRUCTURE BALMI OPTIONAL
    *" EXCEPTIONS
    *" RSAP_CUSTOMER_EXIT_ERROR
    INCLUDE ZXRSAU02.
    WRITE: / 'INSIDE THE Z_DS_MEASUREMENTS PROGRAM'.
    TABLES: REIS_BUSENTITY_ATTR,
    VIBDBE,
    field-symbols:.<fs_REIS_BUSENTITY_ATTR> like REIS_BUSENTITY_ATTR.
    DATA: BEGIN OF i_c_t_data OCCURS 0.
    include structure REIS_BUSENTITY_ATTR.
    DATA END OF i_c_t_data.
    DATA: i_c_t_data_copy like i_c_t_data OCCURS 0 WITH HEADER LINE,
    begin of i_vibdbe occurs 0,
    INTRENO like vibdbe-INTRENO,
    ZFACTREG like vibdbe-ZFACTREG,
    end of i_vibdbe.
    i_c_t_data_copy[] = i_c_t_data[] = c_t_data[].
    sort i_c_t_data_copy by vibdbe.
    Select INTRENO
    into table i_VIBDBE from VIBDBE
    for all entries in i_c_t_data_copy
    where INTRENO = i_c_t_data_copy- INTRENO.
    if sy-subrc = 0.
    sort i_VIBDBE by INTRENO.
    loop at i_c_t_data assigning <fs_REIS_BUSENTITY_ATTR>.
    clear: i_VIBDBE.
    read table i_VIBDBE with key INTRENO = <fs_REIS_BUSENTITY_ATTR>-INTRENO
    BINARY SEARCH
    transporting ZFACTREG .
    if sy-subrc = 0.
    <fs_REIS_BUSENTITY_ATTR>-ZZFACTORY = i_vibebe-ZFACTREG
    endif.
    null

    I don' t see the dot between the two lines
    OTHERS = 2
    IF FOUND.
    Regards

  • How to import  new tables from database

    I have relational source in OWB. I had added a new table in teh database, now I donot know how to import this new table in OWB9i?
    I will appreciate your help.
    Thanks
    Syed

    Mark,
    I am sorry I did not explain the problem clearly. I created module of the relationa source and then using DB link I had imported all the tables from schema A , but my question is that I had created a new table in the Schema A and I want to just import that table in my relation resource module. Is there a way to do it in OWB? How do we create just on etable in OWB module?
    Thanks
    Syed

  • How to import a table from another oracle database ?

    Hi all ,
    i could like to use pl/sql to import one table from another oracle database server ?
    is it possible to do this ?
    A server B server
    table: test <------------------------> table : newtest
    the tns profile already configurated . the connection is ready .
    thanks a lot !
    Best Regards,
    Carlos

    if i don't have TEST table on server B whether COPY command will create this table on server B with the same structure ? If you specify CREATE as a clause the table will be created:
    SQL> help copy
    COPY
    COPY copies data from a query to a table in a local or remote
    database. COPY supports CHAR, DATE, LONG, NUMBER and VARCHAR2.
    COPY {FROM database | TO database | FROM database TO database}
                APPENDCREATE|INSERT|REPLACE} destination_table
                [(column, column, column, ...)] USING query
    where database has the following syntax:
         username[password]@connect_identifier

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • Error in importing the tables from database

    HI ,
    while importing the table from the metada by using OCI call 10g/11g i am getting the below exception:
    *"Some objects are not imported because of invalid names : (DESCRIPTION =(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=orcl)))"*
    i am getting this exception after selecting the objects which i want to import from the database.....it first imports the tables and the throws the above exception and then removies from the repository view.
    How can i get this resolved???

    Hi,
    I'm also hitting this problem, did anyone solve this, I'm not able to import any data to the repository, error message is: -
    *"Some objects are not imported because of invalid names"*
    Thanks,
    Mike

  • Generate Script from table with Clob and save other Database

    Hi
    How can I to read data from Clob column and insert into other table in other Database,
    The fist Table is in Test Quality and second in Production
    Are there way without to use Export/ Import ?
    Can I to use Loader ?
    Using 9i

    3360 wrote:
    muttleychess wrote:
    mschnatt wrote:
    than you only can try the db-link
    CREATE DATABASE LINK <dblink-name> CONNECT TO <user> IDENTIFIED BY <pwd> USING '<tnsnames-entry>';
    and make table
    create table ....
    as select ....Thank , but too no work :-( :-(
    SQL> select id,clob_data from myclob@teste;
    select id,clob_data from myclob@teste
    ERRO na linha 1:
    ORA-22992: cannot use LOB locators selected from remote tables
    Well you didn't do what the reply said to do
    and make table
    create table ....
    as select ....Also in the manual, you could save yourself a lot of time if you would open it.
    http://docs.oracle.com/cd/B14117_01/appdev.101/b10796/adlob_wo.htm#1006314
    >
    The following syntax is supported on remote LOB columns:
    CREATE TABLE t AS SELECT * FROM table1@remote_site;
    INSERT INTO t SELECT * FROM table1@remote_site;
    UPDATE t SET lobcol = (SELECT lobcol FROM table1@remote_site);
    INSERT INTO table1@remote_site select * from local_table;
    UPDATE table1@remote_siteset lobcol = (SELECT lobcol FROM local_table);
    DELETE FROM table1@remote_site <WHERE clause involving non_lob_columns>
    This is the only supported syntax involving LOBs in remote tables. No other usage is supported.
    >[h1]Thank you very much, very very good [h1]

  • How to import a table from another database using DB toolset.

    Hello All
    I would like to import a table from one database to another using DB toolbox.
    I do not want to import all data to LV and then save them to another database. Instead I would prefer to use SQL syntax.
    Does anobody know how to write SQL command to import whole table from one database to another?
    I have found in some SQL manual that INSERT INTO should work, but JET4 returns an error that table (e.g. c:\mydatabase\table1) can not be found.
    Thanks in advance
    Pawel

    if i don't have TEST table on server B whether COPY command will create this table on server B with the same structure ? If you specify CREATE as a clause the table will be created:
    SQL> help copy
    COPY
    COPY copies data from a query to a table in a local or remote
    database. COPY supports CHAR, DATE, LONG, NUMBER and VARCHAR2.
    COPY {FROM database | TO database | FROM database TO database}
                APPENDCREATE|INSERT|REPLACE} destination_table
                [(column, column, column, ...)] USING query
    where database has the following syntax:
         username[password]@connect_identifier

  • Importing all tables and users from Oracle 8i database to Oracle 10g

    Hi friends,
    It would be highly appreciated if someone would kindly advise steps needed to
    import full Oracle 8i database ( with all users, tables, table spaces
    and other components ) to Oracle database 10g .
    Thanks and regards

    hi
    ur exp ur database from oracle 10g. from exp cmd instead of expdp cmd bcoz oracle 10g. expdp cmd is not compitable with oracle 8.
    simple give cmd>exp cmd if u want exp complete database from oracle 10g..
    if u have any problem go reference oracle database utilities ....
    and then imp in oracle 8 using imp cmd cmd>imp cmd bcoz here u want imp complete database....
    i hope u do ur work successfully...
    regards
    Mohammadi

Maybe you are looking for