User Access to database with BusinessObjects credential

Hello to everyone,
I have ODBC connections to my databases with this user: admin; then I have my universes and their connections with ODBC connections as data source. In every universe connection I set authentication mode as "Use BusinessObjects Credential Mapping", but the access to the database is always as admin, despite I expect an access with BusinessObject users.
If I remove userid and password from the ODBC connection, the universe connections works fine and the test is ok, but when I refresh the report I get this error:
A database error occured. The database error text is: [Informix][Informix ODBC Driver][Informix]Incorrect password or user SYSTEM@::ffff:192.168.8.251 is not known on the database server.. (WIS 10901)
Where is the mistake?

I know its an old thread but Ill give a try.
when using database credential mapping and AD, it is possible to assign the SQL credentials at a BOE group level instead of per BOE user?
Right now I fail to fully understand how that kind of provisioning is supposed to be done.
All in AD? All in BO? part here and part there?
The AD plug in is just for authentication and users should still be provisioned/configured in BOE?
Any help welcome
X.

Similar Messages

  • Multiple users accessing entity bean with same PK

    Hi,
    Some body please clarify the below issue.
    (EJB 1.1, WAS3.5)
    I have two app servers and two clones each clone is running in each app server.
    Stateful session bean access Entity beans to update/read record in the database.
    According to my requirement multiple users can access the same entity data (same primary key). Suppose user A created a Stateful session bean SB1 and the SB1 created Entity1 with PK1, this is happening at clone1.
    User B accessed the site and the request went to Clone2 and a new SB2 created, but the SB2 need to access the database with Same PK1.
    For the above situation, I guess container can not create a new Entity bean with PK1 because EB with PK1 is already there and it tries to allocate same EB1 with SB2, so if two requests are concurrent do the SB2 wait to get the handle of the EB1?
    Is there any way to create two Entity beans with same Primary Key at the same time but in different clone?
    Thanks,
    Sagar

    Hi,
    The concurrency level has to be set at the level of database and the database will take care of consistency & integrity of the data. So specity the concurrency level on the database connection in each appserver.

  • I want to access the database with user name and password without con. info/udl

    hi to all,
    im doing project related with database... normally i'll connect ***.udl file to open database.vi.
    now what is my question is I want to open the database with the user name with password.... y i need this because once i run the program the program should ask username and password to open database for write/read operation. if its wrong user name and password means program should be denied... 
    can any tell how to access the database toolkit with the username with password....
    im using labview 7.0... 
    i think my question is clear....waiting for reply thank you in advance...
    pls see this attachment.....
    Regards,
    N. Srinivasan
    Attachments:
    access.vi ‏37 KB

    i have already read that link in the discussion forum...but im still have some confussion in... i attached file is so like to give user name and password..?
    and one more things can tell wat to do in ODBC and MDB and in UDL for password lock.. each time i run the promgram it should ask password to acces the database.. 
     thank you a lot for your reply.. 
    it will be more more useful if u clear my doubts clearly....
    Regards,
    N. Srinivasan
    Attachments:
    user=pass.PNG ‏35 KB

  • Add user to Netinfo database with Applescript

    Does anyone have an example Applescript that would allow us to add a user to the local Netinfo Database on a computer? We would like to push this to a lab of computers to add a new local user to all computers at once.
    thanks

    See this article for some Terminal commands which can be used. To run these from an AppleScript, use code such as:
    set the_password to "password"
    do shell script "nicl . -create /users/username" password the_password with administrator privileges
    continuing the code for the rest of the commands in step 4 the article modified as needed. If you aren't creating a group, skip the line to append the user to the group and remove the group name from the chmod. The passwd command is interactive and cannot be executed from within AppleScript.
    (18463)

  • Trace IP address / machine of user logging in database with wrong password

    Hello All,
    I would like to find the IP address or machine information of the user who is attempting to login the database with the wrong password.
    I am on 11g. Please can I know if it is possible to get this information and if yes then how to configure it.
    Thanks.

    1. Enable audit in database with pararameter AUDIT_TRAIL
    SQL> show parameter audit_trail;
    NAME                                 TYPE        VALUE
    audit_trail                          string      DB_EXTENDED2. Enable session auditing
    SQL> audit session;
    Audit succeeded.3. Check DBA_AUDIT_TRAIL view:
    SQL> select os_username, userhost, username, action_name, timestamp, returncode
      2  from dba_audit_trail
      3  where returncode=1017;
    OS_USERNAME
    USERHOST
    USERNAME                       ACTION_NAME                  TIMESTAMP RETURNCODE
    pierre
    WORKGROUP\PC-de-pierre
    HR                             LOGON                        22-FEB-11       10171017 stands for ORA-1017 Oracle error:
    oerr ora 1017
    01017, 00000, "invalid username/password; logon denied"
    // *Cause:
    // *Action:OS_USERNAME is OS account name of user that is trying to connect to Oracle
    USERHOST is the machine name where executable has tried to connect.
    Edited by: P. Forstmann on 22 févr. 2011 13:39
    Edited by: P. Forstmann on 22 févr. 2011 13:41

  • Cant access my Database with the new user I created

    Hi,
    I creatred a database using All Programs> Oracle OraDB10_home1> Configuration Aand Managing Tool> Data Base COnfiguration Assitance. My DB name is MYTestDB. Then I created a user trough http://localhost:1158/em my user name is testuser and password is testuser. I cant login into my DB when I use
    sqlplus testuser/testuser@localhost:1521/MYTestDB also using SQL Developer I cant login. I keep getting message invalid username and password. However if I use this commad sqlplus system/system@localhost:1521/MYTestDB works fine also sqlplus testuser/testuser@localhost:1521/orcl It works fine. Any help will really be appriciated.
    Thanks
    Asgar

    user1096243 wrote:
    When I create a user there is no way where I can select which DB this user belongs, or is there one?
    Thanks
    AsgarIf you are going to work with EM (dbcontrol) in this manner -- with multiple databases -- you have to configure a separate instance of dbcontrol for each database. A given instance of dbcontrol can work with only one database instance. The distinction in accessing the dbcontrol is that each one will have its own port.

  • How to work with multiple users accessing one database

    I am a newbie in oracle.
    I want to give access to my oracle database for more users.
    I created oracle connection with c# project. The application allow to user to insert data to a database table. Now I want to give access to the different users with a login. Is there any way to give access other users to the same database using their username and passwords?
    I'm confused. Please help.
    thank you.

    In the database, set up your data schema with data tables, views, and stored procedures to support your application.
    That schema owner should only be a trusted data administration person.  Let's call that schema APP_DATA.
    Then you set up another schema called APP_DATA_USERS with no privileges and no data.
    Then you create an Oracle ROLE object called APP_DATA_ROLE.
    You grant the app_data_role to the app_data_user account.
    You then grant object permissions in the APP_DATA_ROLE that you want the app_data_user to have for the app_data data objects, like Create SESSION, SELECT on TABLE X. or SELECT, INSERT, UPDATE on TABLE Y.
    Now the APP_DATA_USERS only has specific permissions needed on specific app_data data objects that you control by the app_data_role.
    Then your application only opens connections to Oracle via the single APP_DATA_USERS account
    which is constrained by the APP_DATA_ROLE permissions on what can be done in the data schema APP_DATA.
    in your web or app config you create the connection information for the single app_data_user account.
    Putting the database aside, you now create the application layer with login controls so many users can use the application.
    But when they need data, the application only makes a connection to the single APP_DATA_USERS account
    Oracle ODP.NET auto handles the multiple session connections by the multiple application users to the single APP_DATA_USERS account.
    In summary the multiuser access is controlled by the application
    all making connections (sessions) with a single, limited privilege app_data_user account on the database side.

  • Accessing many databases with HTML DB from a single Apache Server

    Hello;
    I am planning the install of 10g and HTML DB on a HPUX server with many databases running out of many Oracle Homes 9.2.0, 9.0.1 and 8.1.7. I will be upgrading a number of the existing databases to 10g and want to access them with HTML DB.
    My question is how can I install HTML DB on many databases and use a single Apache Server to access them?

    Where would I find the DADs? a default installation of htmldb puts the modplsql DAD, "pls/htmldb", in a marvel.conf file located in $OHS_HOME/Apache/modplsql/conf/marvel.conf
    What would the URLs look like? not sure what you're asking. if you're asking about how the change in DAD's would affect the URLs you're calling, though, you should consider looking over the OHS (oracle http server) doc some more before making these types of customizations.
    And how would I install the HTML DB in the different databases?
    Would I use the installer or scripts?the only supported way to install htmldb is via the 10g Companion CD. just use that installer to point to your different db's.
    regards,
    raj

  • How to access Oracle database with perl ?

    Hi Anyone/Everyone,
    This may not be the best place to post this, but I don't know where else to get help.
    Basically I have some sql I need to run on an Oracle db on Unix, but I need to run it from NT.
    There are a number of perl modules that I think may of use, ie. DBI, DBD::Oracle, etc.
    but I don't know how to use them.
    Can someone show me what to, please ? Examples would be good.
    I have very little experience with this, so any help would be greatly appreciated.

    Hi,
    See this link at otn.technet.oracle.com It has several perl scripts which interact with the Oracle Database.
    Hope this helps,
    Cheeka
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Ed ([email protected]):
    Hi Anyone/Everyone,
    This may not be the best place to post this, but I don't know where else to get help.
    Basically I have some sql I need to run on an Oracle db on Unix, but I need to run it from NT.
    There are a number of perl modules that I think may of use, ie. DBI, DBD::Oracle, etc.
    but I don't know how to use them.
    Can someone show me what to, please ? Examples would be good.
    I have very little experience with this, so any help would be greatly appreciated.<HR></BLOCKQUOTE>
    null

  • [BO XI 3.0] - Connection to database "BusinessObjects credential mapping "

    Hello,
    I have an strange issue regarding database connection. Users connect to database with database U and P. So in CMC we select "Enable Data Source Credentials for Business Objects Universes" and enter U and P to connect to database. In universe we choose "Use BusinessObjects credential mapping" and when we test it the server is responding. We create Deski report and we get the data from database. We publish this report to repository and when we want to refresh we get an error "SetPrompts failed - invalid username/password.....", then we convert this document in webi report and works fine
    Any suggestions?
    Configuration:
    - MS windows server 2003 with SP2
    - BO XI 3.0 with FP1 and FP2
    - Oracle database 10gR2 (also test with 9i)
    Regards,
    Gregor

    This is a BUG. You must install Fix pack 3 and works fine!
    Regards,
    Gregor

  • Size limit of access database with image files stored outside database

    I have read 2GB limit on size of Access database.  We are using Access 2013 database with fields that are data type attachment and storing attached images outside the database.  Does the size of the folder that is holding these images count
    in any way toward 2GB size limit?

    Hi,
    As far as I know, Access database limit size 2GB based on itself, not related to the folder size.  Attachment data
    type is similar to attaching files to e-mail messages. We need to control the Access database size is smaller then 2GB.
    When a field is defined with the attachment data type, you can store one or more files for each record in it.
    Attachments can dramatically increase the size of the database, but since the attached file is stored as a part of the dabatbase, you are not dependent on network drives being available as you would be if you inculded a hyperlink to the file. As a matter of
    fact, feel free to backup the origainal file to other disk after you attach it to the database.
    Regards,
    George Zhao
    TechNet Community Support

  • 1 user license access multiple database

    Hi all...
    I have a question :
    In SAP B1 8.8, can 1 user license (for 1 physical user) access multiple databases?
    Multiple database is created for Head Office and Branches.
    Since Finance Accounting Manager is centralized at Head Office, so the Manager must have access to multiple databases.
    Can only 1 user license applied to this Finance Accounting Manager?
    Regards,

    Hi Ingrid,
    Finance/Logistic/CRM Limited will perform as professional user license in the multiple db accessing in one server except  the functionality authorization. You must make sure that all the users that use the Finance/Logistic/CRM Limited license have the same user code in the dbs
    JimM
    <ultra - said it once>

  • Same user in tacacs and local database with different privilege

    Hi there,
    i am just not sure if this is correct behavior.
    i am running NX-OS image n5000-uk9.5.1.3.N1.1.bin on the nexus 5020 platform.
    i have configured authorization with tacacs+ on ACS server version 5.2 with fall back to switch local database.
    aaa authentication login default group ACS
    aaa authorization commands default group ACS local
    aaa accounting default group ACS
    a user test with priv 15 is craeted on ACS server, password test2
    everything works fine, until i create the same username on the local database with privilege 0. ( it doesnt matter if the user in local database was created before user in ACS or after )
    e.g.:  
    username test password test1 role priv-0   (note passwords are different for users in both databases)
    after i create the same user in local database with privilege 0,
    if i try to connect to the switch with this username test and password defined on ACS,  i get only privilege 0 authorization, regardless, that ACS server is up and it should be primary way to authenticate and authorizate the user.
    is this normal?
    thank you for help...

    Hello.
    Privileges are used with traditional IOS. Privileges are part of "command authorization". Other operating systems (like IOS-XR, Nexus OS , Juniper JunOS) use "role-based authorization" instead of "command authorization".
    So traditional IOS can use the "privilege" attribute but other operating systems can not.
    Although IOS-XR, Nexus, ACE, Juniper  have "roled-based authorization" feature, every single one of them use their particular attributes.
    When I was configuring TACACS with ACE, Juniper and other devices I had to capture the packets to find out what were the particular attributes of ACE, what were the particular attributes of JunOS, etc, etc and to search deeply some hints the documentation , because sadly  documentation is not very good when talking about TACACS details.
    If you find which attributes to use, and what values to assign to the attributes then you can go to ACS and configure a "Shell Profile".
    Now back to Nexus 5000. It seems this particular device has the option to mix "role-based" with "command authorization" by overriding the default roles with other roles which names are called "priv". It seems this was an effort to try to map the old concept of "privileges" to the new concept of "roles". Although you see the word "priv", it's just the name of the role. My particular point of view is that this complicates the whole thing. I would recommend to use just the default roles, or customize some of them (only if needed), but not to use "command authorization".
    http://www.cisco.com/en/US/docs/switches/datacenter/nexus5000/sw/security/502_n1_1/Cisco_n5k_security_config_gd_rel_502_n1_1_chapter5.html
    I will search the particular attributes Nexus use to talk to TACACS server. If I got them I will post them here.
    Please rate if it helps

  • Very slow Access 2002 query with Windows 7

    I need help troubleshooting consistently slow queries in an Access 2002 database with Windows 7.
     I’m running a temporary query in a local copy of a back end database with only tables. The identical query will take just 2-3 seconds with Windows XP but 30-60 seconds with Windows 7. Multiple Windows 7 workstations are all slow and
    all Windows XP machines run the query quickly.  I even used JetShowPlan on both workstations to compare and the plans are identical. Two tables are involved with rushmore used on the first and a full scan on the second table of about 150,000 records.
    Even in XP Mode on the Windows 7 machine the query still takes only about 10 seconds. Anyone have any ideas why Access/Jet on Windows 7 can be so slow? Thanks for any ideas.
    Rick Collard

    Hi Tony,
    Thanks for the pointer - I had found that one earlier and tried it - did not help.  I think the HP ProtectTools Security Manager is Normally loaded
    on Laptops - my problem is on Workstation.  I did a test of 2007 Access in the Virtual XP Mode window - There is works 'normally'. 
    To give you an idea how Slow a query in 2007 access/W7 is;
    I started a search for part numbers with 'busbar' in their description...
       on W7 - Database is LOCAL to WS and upgraded to Office 2007
    I then opened an XP Mode window
    Opened the 2007 Access DB to the 'normal' database located on fileserver.
    enter the same Part search
    counted to 10 - 19 Parts found
    Closed DB
    Closed XP Mode window
    Waited about 2 minutes... same 19 parts found....  Wonderful!
    I will wait till my MS Rep can get me in line for the Hot fix or MS releases it.  Till then I will teach the Users how to Use XP Mode.
    -db 

  • Moving Access Services database

    I'm sure this must be simple... but I'm having trouble finding any references to it.
    Once I have synced an Access Web Database with SharePoint 2010 Access Services, how can I remove it from that SharePoint implementation and attach it to another SharePoint? I've tried making this happen from both SharePoint and Access, but there appears
    to be no 'detach' option from either end.
    Anyone have any ideas?
    Thanks
    Jim

    Hello Jim Henderson NZ,
    Thanks for your question. I think your question might get a better answered in the SharePoint 2010 - Setup, Upgrade, Administration and Operation forum. Let me make sure I understand your question correctly.
    You're inquiring about moving your service application you created in central admin that ties all your Access content together? Based on this documentation it does not seem possible.
    http://technet.microsoft.com/en-us/library/ff621100.aspx
    The listed service applications that can be published are:
    Business Data Connectivity, Managed Metadata, User Profile, Search, Secure Store, Web Analytics.
    If I'm understanding your question correctly I can move you to that forum. Otherwise, please give me a bit more information so I can further assist you.
    Regards,
    Dalibor K Microsoft
    Online Community Support

Maybe you are looking for

  • How can I use an external display with my MBP lid closed and disconnected to power?

    I know that I can use an external display when my MBP lid is closed and it is connected to power. I was wondering why it does not work when the power cable is removed. I only use an external display when I am at home so my MBP acts like a Mac Pro or

  • Patches not visible in SCCM 2007 Site server even after approving the patches in WSUS

    Hi, The patches are not appearing in SCCM 2007 site server after approving the same patches in WSUS. Below are the patches. MS14-080: Cumulative Security Update for Internet Explorer - Windows Server 2008 SP2 - IE 7 - KB3008923 [23,186.1] MS14-018: C

  • Adobe Acrobat  x Standard'  Downlaod Link

    I need the down load link for 'Adobe Acrobat  x Standard'  my previous installed  PC , had a hard drive problem, so I'm, trying to download  the version that I have licence for it was  obtained from Digital rivers  ,but i cannot locate a download lin

  • How could i reinstall the maps of 5.1.1 on 6.0 version

    I shocked when i figured out that most of maps features are available in UAE and i wish  to reinstall the previous version at least it works

  • Screen burn

    Hey guys. recently bought the new 27 inch imac and have been having issues with screen burn. for example, the web browser windo, although I haven't been on for long, seems burned onto the screen and I can see it on, let's say the dark background of P