Login at table with users!!!

Hi guys,
I´m starting with Oracle Xe, so i have create a table "USERS" where i have the login and password and i have create a web application in Xe with 8 pages and at the 3 page i wanted to make a login and only after the login i can access the other pages!!
Is it possible, how can i make the login, comparing the information of the table USERS!!
thanks

Hi user552994,
I would suggest to have a look at some sample applications.
You need to create a custom authentication scheme.
Dimitri

Similar Messages

  • Login/Logout sync with user control over folders to sync

    We have a user who needs modify the folders that are synced periodically.
    The user has multiple computers that they keep synced with OS X Server 10.4.10.
    We turned background sync to unmanaged and they are able to modify their settings and left login/logoff sync as managed. Any time they login/logoff auto sync does not occur.
    How do we configure their settings so that they can adjust the folders that get synced and still have auto sync at login/logoff?

    Not even sure you can do this but you might look for Login/Logout Hooks that can perform the action your looking to do. There would have to be a way to shell-script the Sync part of RHD which I'm not sure you can.
    On the Server Side you can control what get auto synced and what does not in WGM. Then you just set it all to auto on login/logout.

  • External tables with user defined fuction help

    Can any one help me
    I have problem with using user defined function while creating the External table.
    The user defined function Just takes an input empno and returns one number.
    CREATE TABLE EMPXT_1(empno NUMBER(4)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY TEST_DIR
    ACCESS PARAMETERS(
    RECORDS FIXED 4
    STRING SIZES ARE IN BYTES
    NOBADFILE
    NODISCARDFILE
    LOGFILE '211205.KNU.LOG'
    FIELDS
    NOTRIM
    (empno POSITION(1) integer external(4) p_1(:empno)
    LOCATION
    ('empxt_1.dat')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    content of expxt_1.dat
    7849
    SELECT * from EMPXT_1;
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "double-quoted-string": expecting one of:
    "comma, defaultif, nullif, optionally, ), terminated"
    KUP-01007: at line 8 column 49
    ORA-06512: at "SYS.ORACLE_LOADER", line 14
    ORA-06512: at line 1

    hi,
    may be u have do these
    for ORA-29913 error
    1. you have to grant read and write to a directory.
    for other errors do check this document
    http://www.lc.leidenuniv.nl/awcourse/oracle/server.920/a96525/kupus.htm
    hope this may help u
    Trinath Somanchi

  • Stuck and unable to login, white screen with user photo

    I installed Yosemite about a week ago on my mid-2011 Air and it's been working just fine. Last night I closed the computer as usual, putting it to sleep.
    This morning when I opened it again, the login screen is not loading properly and I'm getting a white screen instead with my user avatar only, no password input field, and one calendar notification stuck in the the corner.
    The mouse cursor moves around, but no response otherwise. The display goes dark/sleep after I don't touch it for 30 seconds.
    A friend of mine said that something similar happened to him and he just waited (several hours) until the log in screen loaded properly, and that if I tried to do anything it could wipe all my data.
    Anyone else having this issue? Haven't been able to find anything yet. Please Help! Photo is attached.
    EDIT: Just noticed that when I move the mouse to hover over where the password field *should* be, the cursor changes from the arrow to a text input cursor.

    Hi Jnnn,
    I Have the same problem on MBPro 2012. You can just type your password and hit enter to login... (At least that works for me...)
    BTW, mine has the same behaviour when opening the lid to wake up from sleep mode, every time again!
    Hope it helps,
    Grtz, P.

  • Cols getting added to Table:With user log-ins

    Hi,
    I have a table in Oracle 11g database for application reporting purpose, as per design whenever a specific user log-ins, columns gets added in the table
    and its growing col wise.
    Is there any better way to handel that?Pls suggest.
    Regards

    Hi,
    You have specified that what is happening in your current application. But you have not specified what actually you are looking for. As other forums members stated you must follow them, Since over a period of time or in weeks your application will since you can extend columns for same table - since there exists some limit for that.
    So, If I analyze your requirement you would like to peform the auditing of the use logins. Then what logic you have implemented try to modify a little bit , instead of dynamically adding the columns - insert the rows in to the table.
    That way you can figure out, when and what time specific users are logged in - making history for your users login session times.
    Note - Try to elaborate your requirement / problems, other it is little difficult for us to understand.
    - Pavan Kumar N

  • Using nested tables with User Defıned Types.....

    Hi All,
    I defined TEST_1 User Defined Type where VALUE_PART field is a VARCHAR2 type.
    CREATE TYPE TEST_1 AS OBJECT (
                   x NUMBER,
                   y NUMBER,
         VALUE_PART VARCHAR2(50)
    This TEST_1 object type will be used as nested tables in the EMPLOYEE table where each attribute might require different bytes of VARCHAR2’s in the VALUE_PART field.
    CREATE TYPE NAME AS TABLE OF TEST_1;
    CREATE TYPE ADDRESS AS TABLE OF TEST_1;
    CREATE TYPE DEPARTMENT AS TABLE OF TEST_1;
    CREATE TABLE EMPLOYEE (
    SSN NUMBER,
    NAME TEST_1,
    ADDRESS TEST_1,
    DEPARTMENT TEST_1,
    SALARY NUMBER
    NESTED TABLE NAME STORE AS NAME_TABLE;
    NESTED TABLE ADDRESS STORE AS ADDRESS_TABLE;
    NESTED TABLE DEPARTMENT STORE AS DEPARTMENT_TABLE;
    Is it possible to specify VALUE_PART(50) in the TABLE OF statement?
    Is there any way to do that throught methods or some other ways that I may not be aware of?
    For Example:
    /*This should allocate 10 bytes of VARCHAR2. */
    CREATE TYPE NAME AS TABLE OF TEST_1(10);
    /* and 30 bytes of VARCHAR2. */
    CREATE TYPE ADDRESS AS TABLE OF TEST_1(30);
    /*and 10 bytes of VARCHAR2. */
    CREATE TYPE DEPARTMENT AS TABLE OF TEST_1(10);
    Any help is appreciated.
    Thanks a lot.

    Hi,
    We can not specify VALUE_PART(50) in the TABLE OF statement.
    Regards,
    Sailaja

  • How to log in with user credentials from database table

    Hello all.
    I have a table named users_1 in my database. This table has columns named username, password, email and userid. On userid, I have put a sequence.
    Now, I have manually made 1 row in this table, with in it the user credentials.
    How can I edit my application so that I can use these credentials to log onto the application?
    Please, a step-by-step text would make me rather happy, instead of getting a link with information that I should read. I've read most of it, and it just doesn't make any sense to me, so I prefer a guide-trough.
    Thanks..

    Hi Magali,
    You want only user from database can access your application.
    follow the steps given below.
    Step1  :  create function to authenticate users
    create or replace FUNCTION  "CUSTOM_AUTHENTICATE" (p_username in VARCHAR2, p_password in VARCHAR2)
    return BOOLEAN
    is
      l_password varchar2(4000);
      l_stored_password varchar2(4000);
      l_count number;
    begin
    select count(*) into l_count from users_1 where upper(username) = upper(p_username);
    if l_count > 0 then
       select upper(password) into l_stored_password from users_1 where upper(username) = upper(p_username);
       l_password :=  upper(p_password);
        if l_password = l_stored_password then
          return true;
        else
          return false;
        end if;
    else
      return false;
    end if;
    end;
    Step2  : create authentication scheme for your application
    Go to Application Builder->select your application->shared component->security->authentication scheme->create
    a) custom scheme : Based on a pre-configured scheme from the gallery
    b) give some name to your scheme like custom_scheme or something
    c)scheme type : database account
    d) verify function name = return CUSTOM_AUTHENTICATE
    e) go to = Login Page
    f) Logout url = f?p=&APP_ID.:101 // here 101 is login page no..so you can set your login page no.
    step3  : make this scheme as current scheme
    select your scheme and click make current
    now try to login into your application from your database users..
    Hope this will helps you,
    Thanks,
    Jitendra

  • Web login (JSP, Servlet) with roles and users list stored using db4o

    Dear all,
    I would be grateful if someone of you (the masters out there) could help me with the build of an application where the first page will be a login page.
    The users will be devided in 3 categories (user, editor, administrator) and there member information will be saved in db4o database.
    If the user has not been registered in the past then a registration page should come up allowing him to be registered and keep his details in a db4o database on the same site.
    I am using JSEE8 and the site will be sent to a Tomcat server on the net.
    Please please please HELP

    I am giving some code for to redirect as the user is, But before that you have to made a extra coloumn "role" in your security table. and put admin, user as respective roles.
    doPost(HttpReq...........)
    String user = req.getParameter("UserName"):
    String pass= req.getParameter("Password");
    Then Connect the database with ur code ie class.forName etc
    String sql= "Select * from security_table where Username= ' "+user+" ' and Password= ' "+pass+" ' ";
    Statement stmt = conn.createStatement();
    ResultSet rs= stmt.exequteQuary(sql);
    if(rs.next)
    String S1=rs.getString("Username");
    String S2= rs.getString("Password");
    String S3= rs.getString("Role");
    if(S1.equals(user) && S2.equals(pass) && S3.equals.(admin)){
    req.sendRedirect(http:// full path name of the page)
    else if( S1.equals(user) && S2.equals(pass) && S3.equals.(user))
    req.sendRedirect(http:// full path name of the page)
    }else
    req.sendRedirect(http:// full path name of the Error page)
    }

  • How to read the data from a file in another computer with user name and password login

    How to read read the data from a file in anohter computer which need to login with user name and password?

    duplicate post:  http://forums.ni.com/t5/LabVIEW/log-on-the-other-computer-with-user-name-and-password/m-p/2061478
    duplicate post:  http://forums.ni.com/t5/LabVIEW/do-need-to-enter-the-user-name-and-password-when-TCP-ip/m-p/2061612
    duplicate post   http://forums.ni.com/t5/LabVIEW/log-on-the-other-computer-with-user-name-and-password/m-p/2060682

  • Column not found error while populatin a oracle table with ODI USer

    Hi,
    I am trying to populate a column in a oracle table with the ODI USER name using the function getUser("USER_NAME") in the Mapping column of the Interface, But the interface throwhing an error *Column not found : Supervisor in Statement [Select......]*. but it's working fine with getUser("I_USER') the column is populating the user identifier.
    can any one help me out why user is not populating.
    Thanks

    Enclose the call to the getUser api inside single quotes
    '<%=getUser("USER_NAME")%>'ID being a number can be used directly but USER_NAME returns a string that needs to be quoted

  • How do I get connected to a server on my network via an IP address?  When I try to open in a URL and login as a registered user with proper login it errors out saying there was a problem with connecting to the server?

    I am new to Mac...How do I get connected to a server on my network via a hyper link IP address path?  When I try to open in a URL and login as a registered user with proper login it errors out saying there was a problem with connecting to the server?

    Some of the following is going to use some technical terms — this area is inherently somewhat technical. 
    If you don't understand some part of the following reply, please ask.
    Is this your own OS X Server system on your own network, or is this some other server within some larger organization? 
    You're posting this in the OS X Server forum, which is a software package that allows OS X systems to provide web-based and many other services; to become servers.
    If it's your OS X Server on your network, then the network and DNS configurations are suspect, or the server is somehow malfunctioning or misconfigured.   This is unfortunately fairly common, as some folks do try to avoid setting up DNS services.
    If it's a larger organization and somebody else is managing the server and the network, then you'll probably need to contact the IT folks for assistance; to learn the network setup and DNS requirements, and if there's a problem with the server itself.
    The basic web URL "hyper link IP address path" — without using DNS — usually looks something the following, where you'll need to replace 10.20.30.40 with the IP address of your server:
    http://10.20.30.40
    UptimeJeff has posted a URL that specifies the AFP file system; an OS X file share.  That's used if you're connecting to an Apple storage service somewhere on your network.  You might alternatively need to specify smb://10.20.30.40 or such, if it's a Windows file server.  (There can be additional requirements for connecting to Windows Server systems, too.)
    If there's local IT staff available here, please contact them for assistance.  If these are your own local systems and your own local OS X Server system, then some information on the server will be needed.  (If you're on a NAT'd network, you'll also need to get DNS services configured and working on your local OS X Server system and your network — you'll not be able to skip this step and reference ISP DNS servers here — or things can and usually will get weird.)

  • How to login the remote desktop with user id and password using coded ui

    we are using vs 2013, we have automated some automated test cases using coded ui. i have on problem while i am running the those test cases in remote system. here the scenario is "after executed one test case we need to restart the system. After restarted
     I have to login the remote system with user credentials to continues execution for the remaining test cases." it is very helpful to me.. so please guide me how to overcome these problem? 
    Thanks in advance ...

    Hi Divakar,
    As far as I know, there isn’t this feature of remote test in VS2013.
    I suggest that you could submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio. The Visual Studio product team is listening to user voice there. You can send your idea there so the others can vote it. If you submit this suggestion, you might post that link here which will
    benefit others who has the similar issue
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Best way to link user form with user table

    Hi all.
    What is the best way to link an user form with a user table (with all of the functions, add, update...)? I have created a simple form, and the question is next:
    depending the type object of the user table (document, master...) i have facilities to imlement the basic operations in the form?  if i create an UDO i have the functions but i want to use the form that i created with a screen painter.
    Thanks.

    Hi again i want add a new comment please.
    If i want do all functions (add,update...) of my form in my user table, and i want my user table is a <b>type document</b>? how can add new lines in my user table with objet <b>type document</b>? because when i make the instance i nedd to say what type of document is (item,order...) and when i do an add(), not add() in my user table. In what moment or how can assign that the add,update functions... affect in my table?
    Thanks again.

  • OID users ( EUS) problem with grant create table with admin

    Hi,
    We activated enterprise users in the OID.
    There is a role APP_ADMIN that has the following grants:
    create user
    drop user
    create table with admin option
    this is for an application that creates BI schemas, so it needs to be able to create other users.
    I have granted these to a local role, and the user has access to the local role, thanks to the OID setup.
    The create and drop user work.
    however, the grant create table to another user does not work.
    Is there an issue with 'with admin option' grants in Enterprise user security?
    Regards,
    Peter

    If I grant
    grant create table to test_role with admin option;
    it does not work
    if I grant
    GRANT GRANT ANY PRIVILEGE to test_role WITH ADMIN OPTION;
    it does work.
    The test command as user with test_role is:
    grant create table to test_usr;
    very strange!
    If the user is a standard user and I create role test_role
    and grant create table to test_role with admin option it works.
    but if I convert the user to an EUS user and the same privilege is given to the role ( role is granted to a global role to an enterprise role)
    it doesnt work
    Edited by: Peter on Dec 7, 2012 2:36 PM

  • Business user  needs to view tables with out SE16 access

    Hi ,
    There is a requirement where  business user  ( Data team)    need to view some master and transactional data tables  in  production . But , as per our process , end users will not  be given SE16  access .
    Is there any solution where we can allow the end user  to view tables with out SE16 access ?
    Thanks in advance .
    Thanks .
    Dharma.

    Hi,
    Using Function Module C160_TRANSACTION_CALL you can call any tcode which dont have access..
    Create a report  and call function module and pass se16 to parameter .
    CALL FUNCTION 'C160_TRANSACTION_CALL' "
      EXPORTING
        i_tcode =        'SE16'            " sy-tcode
      EXCEPTIONS
        ILLEGAL_INPUT = 1           "
        INTERNAL_ERROR = 2          "
        .  "  C160_TRANSACTION_CALL
    now create a tcode for this report as ZSE16.,
    hope this helps u.,
    You can also create Data browser ( SE16 ) in report and display as ALV., using Field Symbols and RTTS.
    Thanks & Regards,
    Kiran

Maybe you are looking for

  • Cisco NSS server 4000 SNMP setting--can we have snmp version 1 or 2 configured in NSS server?

    I have Cisco NSS server 4000. I want to configure SNMP moniotring for this. my snmp server doesnt support version 3 and it has capability to work with version1 only. can anyone help me to find out how to make NSS server using vesion 1 instead of deaf

  • Problem in this FM :SO_NEW_DOCUMENT_ATT_SEND_API1

    HI. I am doing a code for mail sending from ABAP to SOST and SBWP(SAP Inbox).Using the function module is SO_NEW_DOCUMENT_ATT_SEND_API1.mail is sending only for SBWP but it is not received in SOST,could you tell me how to find solution for this. Than

  • SLS_PACKAGE_INFO is unknown

    Hi,    when i try to import a SP (SAPKB70106) SPAM stop at DDIC_ACTIVATION, and the logs display a dump. When I go to ST22 tcode i see this dump. Runtime Errors         SYNTAX_ERROR Date and Time          25.02.2011 11:13:23 Short text      Syntax er

  • *Stationed in Germany, bought iphone 4s issue with language

    I just recently bought the iphone 4s because that's the way to go to keep in touch back in the states for free. Going to the app store everything is in german, itunes on my computer now is in german.....so as may see that when i try and install and d

  • Nokia c7-00 showing offline when inserting relance...

    hi.. am from kerala and curently using tata docomo sim in kerala circle and it works well...am studying in tamilnadu and when i insert reliance sim in tamilnadu circle,it wents offline and i cant even access the network selection menu..whenever i sel