Can i create a ms-access database (very urgent)

hi folks
i really need help in creating a ms-access database, i searched the forums but i couldnot find any answers.
i really appreciate if anyone can tell how to create a ms-access database

hi folks
i really need help in creating a ms-access database, i
searched the forums but i couldnot find any answers.
i really appreciate if anyone can tell how to create a
ms-access databaseIn java, the actual mdb file? You can't.
The best you can do is create an empty mdb file and copy each time you need to create a new one.

Similar Messages

  • How many users/ schemas can we create in an oracle database?

    How many users can we create in an oracle database? Or how many users can oracle handle?
    Problem-
    I have to store information of ontologies (I will use countries instead) in db.
    I have to store information regarding countries.
    I have 13 tables in all to maintain for each country.
    Now there are two approaches:
    1) keep only 13 tables. Have an extra column in each table to indicate that a particular
    row stores information for which country.
    2) create a new user/ schema for each country. So we can get rid of the extra column
    needed in 1st approach.
    I have used the second approach. This is because number of entries in each table for a
    given country will be large.
    So initially when the s/w is installed I create a central-user. Each time data for new
    country has to be entered central-user creates a user/ schema, and creates tables for
    this user/ schema. The central user can access the tables of all the countries by
    country_name.table_name. By this approach I believe searching would be easy.
    If there is any flaw in my approach kindly mention it.
    Thank you

    There is no (practical at least) limit to the number of users & schemas you can have in Oracle.
    Your approach, however, is not going to scale nearly as well as the first option you outlined (adding a column). You are going to end up caching every possible variation of the various queries you're going to be executing because you will be referring to so many different tables, which is going to mean that you are doing a lot more work to parsing statements and generally churning through the shared pool. If you create enough users, you're liable to start hitting ORA-04030 errors because your shared pool is so fragmented.
    Additionally, you're likely going to end up with a whole lot of dynamically generated SQL to accommodate new schemas getting added over time which is going to cause you even more pain. Figuring out dynamically what table to join in is a heck of a lot more difficult for the programmer to write and for the database to handle than simply passing in a different country code.
    If you're concerned about having too much data, you can have your cake and eat it to by adding the country column and partitioning the tables based on country.
    Justin
    One other item I forgot to mention is maintainability. Having dozens or hundreds of "identical" schemas makes maintenance a huge pain because something like adding a new column now requires dozens or hundreds of separate DDL statements. You're almost guaranteed that some schema isn't going to be in sync-- it's going to miss a column or miss an index, etc.
    Message was edited by:
    Justin Cave

  • Creating a new access database using JDBC

    Hi Forum,
    I have a problem in hand. Let me describe the problem:
    I want to create an "access database" from java at runtime. "Access database" is file based, so for a database named test, it will have a file test.mdb.
    Now, everything's sweet and wonderful, if somebody creates an "empty access database" at the client machine and i then connect to it and create the tables i require.
    But the issue is i want to create the database at runtime (the database name and tables are determined at runtime).
    Using the JDBC:ODBC bridge driver , i am able to connect to an existing database, but any "create database" statements are not supported.
    A last ditch solution would be that i create an empty database using access and copy the file contents in the SQL server database as a a blob object. Then when i want to create a new access database at runtime, i create a file in a particular folder , with an .mdb
    extension, copy the file contents from the SQL server (i also have an SQL server connection) BLOB object, and then try to connect to the
    .mdb file.
    But this approach seems a "quick hack" and can have problems (which i can't see as of now).
    Can you suggest a better alternative for the problem.
    See the Java Sun forum at this address for a discussion of a similar problem, but sadly with no solution.
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=484731

    I have an applet that was previously connected to Oracle 9i. I am faced with connecting to MS Access temporarily for testing purposes.
    I have been unable to successfully code connection in java. I have set up the DSN and can access in SQL Worksheet in JDev.
    I saw your question regarding creating an access db, and thought you might be so kind as to help me code the connection to access!!!!
    Any help you could provide would be greatly appreciated. I have a huge application to finish with alot of sqlj already completed. Connectivity is not my area of expertise!
    Any help you could provide would be greatly appreciated!!!
    I am not sure if I have to use bridge? Am I progressing in right direction to migrating to SQL Server if need be?

  • I can insert data into an access database, but I need to querry the database for specific information. How do I do it?

    I can insert data into an access database, now I need to do some simple querries such as selecting all records that are greater than a certain value or = a certain value. How can I return only the selected records?

    If you don't want to spend any money, then instead of ActiveX, I would recomend LabSQL from Jeffrey Travis. I use it instead of the Connectivity toolkit and have had no problems. Besides being free, you have the advantage of being able to use it with any database. ActiveX ties you to Access and you upgrade your version of Access and find the properties and methods are different, you've got a lot of reprogramming to do.

  • How to create a ms-access database at runtime using java

    hi, this is ravi kiran,
    i have a situation where i need to create a new ms-access database with one table in it at runtime(when user clicks on some button).
    i have been searching many sites to know how to do this in java, but i didnot find any thing useful.
    plz tell me how to do this in java.
    plz help me, its urgent
    thanx in advance.

    Here's how I did it. Research does help, but sometimes looking at others code does too... You do have to have a dummy file that you made with access though. You can't just make a file file.mdb (it will be corrupt)
         public void createDatabase(String database) throws SQLException{
              try{
                   // This file needs to have been created with MS Access
                   File dbfile = new File(this.dataBaseDir + "dummy.mdb");
                   // This is the new database file being made
                   File newFile = new File(this.dataBaseDir + database + ".mdb");
                   // Copy all bytes from dummy file to new DB file.
                   FileInputStream instream = new FileInputStream(dbfile);
                   FileOutputStream ostream = new FileOutputStream(newFile);
                   int numBytes = instream.available();
                   byte inBytes[] = new byte[numBytes];
                   instream.read(inBytes, 0, numBytes);
                   ostream.write(inBytes, 0, numBytes);
              catch(FileNotFoundException e) { e.printStackTrace();}
              catch(IOException e) { e.printStackTrace();}
              if(DEBUG) System.out.println("creating the " + database + " database");
         }

  • Can't create a function into database

    The function is :
    create or replace function Xgyh
    (pvc2Czy in varchar2,
    pnumYhid in number,
    pvc2Lfid in varchar2,
    pvc2Grzid in varchar2,
    pvc2Zbmid in varchar2,
    pvc2Bmid in varchar2)
    return number is
    intZxbz integer:=1;--返回值(1:正确,0:错误);
    numDxlb number;
    numGx number;
    begin
    --判断指定用户是否合法
    if pvc2Czy is null then
    intZxbz:=0;
    end if;
    if pnumYhid is not null then
    if pvc2Lfid+pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Lfid is not null then
    if pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Grzid is not null then
    if pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Zbmid is not null then
    if pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Bmid is null then
    intZxbz:=0;
    end if;
    --取当前登陆操作员在数据权限表中权限并判断是否允许更新当前用户
    if intZxbz=1 then
    select t.更新,
    decode(t.对象类别,'用户',0,'楼房',1,'供热站',2,'子部门',3,'部门',4,'集团',5)
    into numGx,numDxlb
    from 系统_数据权限_表 t
    where t.用户=pvc2Czy
    and (t.对象类别,t.对象识别码) in
    (('集团',0),('部门',pvc2Bmid),('子部门',pvc2Zbmid),('供热站',pvc2Grzid),('楼房',pvc2Lfid),('用户',pnumYhid))
    and rownum=1
    order by 2,1;
    end if;
    --返回信息
    return(numGx);
    end Xgyh;
    If get rid of the where condition
    'and (t.对象类别,t.对象识别码) in
    (('集团',0),('部门',pvc2Bmid),('子部门',pvc2Zbmid),('供热站',pvc2Grzid),('楼房',pvc2Lfid),('用户',pnumYhid))',
    this function can be created immediately.
    Thanks for you help!

    I read ITPUB, and understand detailed situation a little.
    The problem is not that any error occur on compiling,
    but that compiling slows down with some conditional clause(*1).
    It takes half a day or more(*2) to compile.
    I think that must hung up.
    Really? Is it really happen?
    If that is true, You had better contact Oracle Support.
    (*1)
    The additional condition is like as follows.
    and (t.MB_named_column1,t.MB_named_column2) in
    (('MB_data1',0),('MB_data2',pvc2Bmid),('MB_data3',pvc2Zbmid),('MB_data4',pvc2Grzid),('MB_data5',pvc2Lfid),('MB_data6',pnumYhid))
    Here, MB means MultiBytes.
    (*2)
    'half a day or more' is my literal translation.
    It may mean only 'very long time'.
    Message was edited by:
    ushitaki
    Added the more detailed explanation.

  • Can't create a function in database

    The function is :
    create or replace function Xgyh
    (pvc2Czy in varchar2,
    pnumYhid in number,
    pvc2Lfid in varchar2,
    pvc2Grzid in varchar2,
    pvc2Zbmid in varchar2,
    pvc2Bmid in varchar2)
    return number is
    intZxbz integer:=1;--返回值(1:正确,0:错误);
    numDxlb number;
    numGx number;
    begin
    --判断指定用户是否合法
    if pvc2Czy is null then
    intZxbz:=0;
    end if;
    if pnumYhid is not null then
    if pvc2Lfid+pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Lfid is not null then
    if pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Grzid is not null then
    if pvc2Zbmid+pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Zbmid is not null then
    if pvc2Bmid is null then
    intZxbz:=0;
    end if;
    elsif pvc2Bmid is null then
    intZxbz:=0;
    end if;
    --取当前登陆操作员在数据权限表中权限并判断是否允许更新当前用户
    if intZxbz=1 then
    select t.更新,
    decode(t.对象类别,'用户',0,'楼房',1,'供热站',2,'子部门',3,'部门',4,'集团',5)
    into numGx,numDxlb
    from 系统_数据权限_表 t
    where t.用户=pvc2Czy
    and (t.对象类别,t.对象识别码) in
    (('集团',0),('部门',pvc2Bmid),('子部门',pvc2Zbmid),('供热站',pvc2Grzid),('楼房',pvc2Lfid),('用户',pnumYhid))
    and rownum=1
    order by 2,1;
    end if;
    --返回信息
    return(numGx);
    end Xgyh;
    If get rid of the where condition
    'and (t.对象类别,t.对象识别码) in
    (('集团',0),('部门',pvc2Bmid),('子部门',pvc2Zbmid),('供热站',pvc2Grzid),('楼房',pvc2Lfid),('用户',pnumYhid))',
    this function can be created immediately.
    Thanks for you help!

    I try translating from Chinese to English words including column name and data.
    But, I can't understand the Chinese word Gongrezhan, so this is Pinyin.
    And, I have not analyzed your function, yet.
    Because, I just now must go to Chinese conversation class.
    By the way, it should be that tables and columns named by multibytes is enclosed by double quotation.
    For example,
    select t.更新, -> select t."更新"
    from 系统_数据权限_表 t -> from "系统_数据权限_表" t
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14200/sql_elements008.htm#i27561
    create or replace function Xgyh
    (pvc2Czy in varchar2,
      pnumYhid in number,
      pvc2Lfid in varchar2,
      pvc2Grzid in varchar2,
      pvc2Zbmid in varchar2,
      pvc2Bmid in varchar2)
      return number is
      intZxbz integer:=1;-- return value (1:Success, 0:Error)
      numDxlb number;
      numGx number;
    begin
      -- Check whether the assigned user is correct or not
      if pvc2Czy is null then
        intZxbz:=0;
      end if;
      if pnumYhid is not null then
        if pvc2Lfid+pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Lfid is not null then
        if pvc2Grzid+pvc2Zbmid+pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Grzid is not null then
        if pvc2Zbmid+pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Zbmid is not null then
        if pvc2Bmid is null then
          intZxbz:=0;
        end if;
      elsif pvc2Bmid is null then
        intZxbz:=0;
      end if;
      --Check whether current database entry operator  has priviledge of updating current user. 
      if intZxbz=1 then
        select t."Update",
          decode(t."TargetClass",'User',0,'Bilding',1,'Gongrezhan',2,'Department',3,'Division',4,'Group',5)
          into numGx,numDxlb
          from "System_DatabasePriviledge_Table" t
        where t."User"=pvc2Czy
          and (t."TargetClass",t."TargetID") in
          (('Group',0),('Division',pvc2Bmid),('Department',pvc2Zbmid),('Gongrezhan',pvc2Grzid),('Bilding',pvc2Lfid),('User',pnumYhid))
          and rownum=1
        order by 2,1;
    end if;
      --Return Informations
      return(numGx);
    end Xgyh;

  • Can I create a non-Unicode database manually via create database segment

    Hi
    As unicode encode use more bytes than 2-bytes encode (for instance, ZHS16GBK), and XE has the limit with 4GB totally. So, can I create a non-Unicode (for instance, ZHS16GBK) database manually via create database segment? or I just could use unicode?
    Thanks.
    Samuel

    Could you load or paste this scripts? Well, the script is (obviously) a shell script, useless on Windows, unless you have some emulator (CygWin, MKS toolkit or similar). The following is the Sql part :
    sqlplus /nolog <<END
    spool xe_createdb.log
    connect sys/oracle as sysdba
    startup nomount pfile=$filedir/init$ORACLE_SID.ora
    whenever sqlerror exit;
    create database
      maxinstances 1
      maxloghistory 2
      maxlogfiles 16
      maxlogmembers 2
      maxdatafiles 30
    datafile '$filedir/system.dbf'
      size 200M reuse autoextend on next 10M maxsize 600M
      extent management local
    sysaux datafile '$filedir/sysaux.dbf'
      size 10M reuse autoextend on next  10M
    default temporary tablespace temp tempfile '$filedir/temp.dbf'
      size 20M reuse autoextend on next  10M maxsize 500M
    undo tablespace undo datafile '$filedir/undots1.dbf'
      size 50M reuse autoextend on next  5M maxsize 500M
    --character set al32utf8
    character set $dbcharset
    national character set al16utf16
    set time_zone='00:00'
    controlfile reuse
    logfile '$filedir/log1.dbf' size 50m reuse
           , '$filedir/log2.dbf' size 50m reuse
           , '$filedir/log3.dbf' size 50m reuse
    user system identified by oracle
    user sys identified by oracle
    -- create the tablespace for users data
    create tablespace users
      datafile '$filedir/users.dbf'
      size 100M reuse autoextend on next 10M maxsize 5G
      extent management local
    -- install data dictionary views:
    @?/rdbms/admin/catalog.sql
    -- run catblock
    @?/rdbms/admin/catblock
    -- run catproc
    @?/rdbms/admin/catproc
    -- run catoctk
    @?/rdbms/admin/catoctk
    -- run pupbld
    connect system/oracle
    @?/sqlplus/admin/pupbld
    @?/sqlplus/admin/help/hlpbld.sql helpus.sql;
    -- run plustrace
    connect sys/oracle as sysdba
    @?/sqlplus/admin/plustrce
    -- Install context
    @?/ctx/admin/catctx oracle SYSAUX TEMP NOLOCK;
    connect CTXSYS/oracle
    @?/ctx/admin/defaults/dr0defin.sql "AMERICAN"
    -- Install XDB
    connect sys/oracle as sysdba
    @?/rdbms/admin/catqm.sql oracle SYSAUX TEMP;
    connect SYS/oracle as SYSDBA
    @?/rdbms/admin/catxdbj.sql;
    connect SYS/oracle as SYSDBA
    @?/rdbms/admin/catxdbdbca.sql 0 8080;
    connect SYS/oracle as SYSDBA
    begin dbms_xdb.setListenerLocalAccess( l_access => TRUE ); end;
    -- Install Spatial Locator
    connect sys/oracle as sysdba
    create user MDSYS identified by MDSYS account lock;
    @?/md/admin/catmdloc.sql
    create spfile='$filedir/spfile.ora' from pfile
    alter user anonymous account unlock
    disconnect
    -- recompile invalid objects
    connect sys/oracle as sysdba
    begin dbms_workload_repository.modify_snapshot_settings(interval => 0); end;
    begin dbms_scheduler.disable('AUTO_SPACE_ADVISOR_JOB', true); end;
    spool off
    exit
    ENDWords prefixed with $ are OS variables, you have to substitute them with your values.

  • Can i create table in a database procedure?

    Hello
    Can i create a table in a database procedure?
    create or replace procedure create_table is
    tt number;
    begin
    create table temp (
    a number,
    b varchar2(100));
    end;
    it return an error....
    regards,
    deemy

    Hello
    Can i create a table in a database procedure?
    create or replace procedure create_table is
    tt number;
    egin
    create table temp (
    a number,
    b varchar2(100));
    end;
    it return an error....
    regards,
    deemy
    create or replace procedure create_table is
    tt number;
    begin
       execute immediate 'create table temp (a number,b varchar2(100))';
    end;
    /Cheers
    Sarma.

  • Bapi's to create/Edit Service Process - BUS2000116 - Very Urgent

    Hi Experts,
    I want ot know the BAPI's to create service process - Business Object - BUS2000116.
    Its very urgent. Please help me.
    regards,
    arul jothi a.

    Hi Arul,
    BAPI_BUSPROCESSND_CREATEMULTI:Bapi to create Service Contracts programmatically. Pass the inputfields to be created in the contract.
    Note: BAPI_BUSPROCESSND_SAVE must be called after this function call to save the Service Contract.
    Regards,
    Arjun
    Pl.Reward the points

  • Can I create a call service database in Sharepoint

    Hi there, 
    I'm having a bit of trouble working out where in Sharepoint I can create a database for keeping track of calls for the IT help desk. 
    Should I go through Sharepoint CRM and then follow the Microsoft Dynamics CRM wizard? 
    I guess basically what I'm asking is which module of Sharepoint provides similar functionality to Microsoft Access, if any? 
    thanks, 
    J

    Check Access Web Database site templates in SharePoint 2010.
    Creating Web Databases with Access 2010 and Access Services
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • Can't create Connection to Oracle Database

    Hi i'm trying to create a simple connection to my oracle database and my projects compiles, but at the "createConnection" statement an SQLException is thrown.
    Well first of all my stats:
    Windows XP 32 bit
    Visual Studio 2005 (VC++ 8)
    Oracle Database 10g Express Edition Release 10.2.0.1.0
    OCCI
    I have already included the "..\OCI\include" directory to my projects additional include directories, the path to the new OCCI dll's and lib's to my additional library dierctories and i have also included the "oraocci10d.lib" to my additional dependencies for the linker.
    Now here is the code i'm trying to run (it's just the code of an OCCI sample modified to my preferences):
    1 #include <stdlib.h>
    2 #include <occi.h>
    3 #include <iostream>
    4 using namespace oracle::occi;
    5 using namespace std;
    6
    7 int main () {
    8     //create environment and connection
    9     string user = "myUser";
    10     string pw = "myPW";
    11     string db = "localhost:1521/XE";
    12     Environment *env = Environment::createEnvironment(Environment::DEFAULT);
    13     Connection *conn = env->createConnection(user, pw, db);
    14     cout << "Environment and Connection created" << endl;
    15
    16     //execute a SQL statement
    17     Statement *stmt = conn->createStatement();
    18     stmt->setSQL("INSERT into FRUITS (fruit, amt) VALUES ('apple', 10)");
    19     stmt->executeUpdate();
    20     conn->terminateStatement(stmt);
    21
    22     //terminate environment and connection
    23     env->terminateConnection(conn);
    24     Environment::terminateEnvironment(env);
    25     cout << "Environment and Connection terminated" << endl;
    26
    27     return 0;
    28 }
    The code crashes at line 13, where i'm trying to create the connection.
    Visual Studio breaks and is giving the information, that an SQLException occured.
    I looked for the Error code given by the exception and it's 24960.
    Well i've found some threads working around that problem, but nothing worked properly to my problem.
    Can anyone help me out of my problem?
    Addition: I've already debugged the code and the pointer to the environment is good, so this possible cause of the exception (Null-Pointer) is out!
    Thanks for any advice!
    Edited by: [email protected] on 08.06.2010 10:34

    Well i've found a post at a similar thread, where somebody told to try to compile and run the project in release mode.
    Incredibly it works fine, but only for release mode as i told.
    The debug mode is still having the same problem...
    If somebody has an idea how to solve this problem please let me know!
    Thanks, olf77.

  • Powershell to create link between Access database and an ODBC Pervasive database

    So, I have the following script (thanks to JRV!):
    function Link-ExternalODBCTable{
          Param(
             $accessFile,
             $tableName,
             $tableName2
         if(-not $tableName2){$tableName2=$tableName1}
         $access.DoCmd.TransferDatabase(
                 [microsoft.office.interop.access.AcDataTransferType]::acLink,
                'ODBC Database',
                $accessFile,
                [microsoft.office.interop.access.AcObjectType]::acTable,
                 $tableName,
                 $tableName2
    $testODBC='ODBC;DSN=A1013v2012'
     Add-Type -Assembly Microsoft.Office.Interop.Access
     $access = New-Object -ComObject Access.Application
     $Access.OpenCurrentDataBase("E:\MyDir\TagLink.mdb")
     Link-ExternalODBCTable $testODBC all_per
     $access.CloseCurrentDataBase()
    What I get is:
    Exception calling "TransferDatabase" with "6" argument(s): "ODBC--connection to 'A1013v2012' failed."
    When I try from the ODBC Administrator, it tests fine (Connection Successful!). This is a 32-bit ODBC connection, using the Pervasive ODBC Engine Interface. Same as we use for other ODBC connections to this database. It is a System DSN, as opposed to User
    or File.
    I tried to skinny this down to:
    Add-Type -Assembly Microsoft.Office.Interop.Access
     $Access = New-Object -ComObject Access.Application
     $Connected = $Access.OpenCurrentDataBase("E:\MyDir\TagLink.mdb")
     $access.DoCmd.TransferDatabase(
                 [microsoft.office.interop.access.AcDataTransferType]::acLink,
                'ODBC Database',
                'ODBC;DSN=A1013v2012',
                [microsoft.office.interop.access.AcObjectType]::acTable,
                 'all_per',
                 'all_per'
     $Disconnected = $Access.CloseCurrentDataBase()
    ...which yields the same error.
    Where am I going wrong here?
    mpleaf

    If I try that, I get a new message:
    Exception calling "TransferDatabase" with "6" argument(s): "Could not find installable ISAM."
    The article you reference, I believe, is for SQL connection, not Pervasive SQL. I know the DSN works fine. We use it for other things a LOT.
    I'm at a loss...and I can't seem to find the right combination...
    mpleaf
    The point is that newer Access does not appear to support DSNs on ODBC without an full ODBC driver.  If you go DSN-less you will include the provider.
    Pervasive has always been a pain.  They break all rules and always have.  If this is Intuit Pervasive then it is even worse.
    ¯\_(ツ)_/¯

  • Can you create a Remote Access VPN connection to tunnel DMZ LAN and Inside Networks simultaneously?

    I have a customer that has a ASA 5510 version 8.3 with IPSEC Client Access that includes some of their networks on the Inside interface.   The issue they are having is when their mobile users connect with the vpn client (which is using split tunneling), they can no longer access their web server applications that are running in the DMZ.   Without the client connected, they access the web servers via the external public IP.  Once they are connected via vpn, their default dns server becomes the internal AD DNS server, which resolves the DNS of the web servers to the private DMZ ip address. 
    Can a Remote Access VPN client connection be allowed to connect to both the DMZ interface and the Inside Interface? I had always only setup RA VPN clients to connect to networks on the Inside Interface.  
    I tried adding the DMZ network to the Split Tunnel list, but I could not access anything it while connected to vpn using the private IP addresses.

    Yes, you should be able to access DMZ subnets as well if they are added to the split tunnel ACL. You could check the NAT exemption configuration for the DMZ and also check if the ASA is forwarding the packet through DMZ interface by configuring captures on the DMZ interface. 
    Share the configuration if you want help with the NAT exemption part.

  • How can i restrict user to access database object (procedure) or JSP

    Hi
    I have 9ias infrastructure 902, on win2k box with 9i DB.
    and I have one PL/SQL web application and another J2EE application both are hosted by 9ias 902.
    Now we are looking forward to couple both with SSO.
    I have deloyed samples of both and works fine.
    Each application have different set of users, i mean there is no common user.
    How can i restrict user not to view the web page which is not authorised to them.
    as far as i understand from the Grocery demo is pick the role (which is a string only) from OID and programaticall apply security via if else endif construct.
    can any one through light upto my concern.
    regards
    [email protected]

    Hey Mary
    No i haven't try to do that via pl/sql....
    as the our application is j2ee app... deployed in oc4j.. with sso and ldap....
    still finding to do so....
    what i have realized that LDAP is just to store user information in inverted tree... and one have to build separated access security mechnisum that will be applicable to j2ee system....
    thanx...
    samir....

Maybe you are looking for