HFM database configuration with domain user

I have ceated a DOMAIN user in MSSQL 2005 as hypadmpr.This user is give db owner and all credentials.When configuring the shared serice, under the data base creation window, i am putting the data base name\and instead of username of native user, i am putting the domain user hypadmpr and password:
It throws an error:unnable to connect to database Shared.
In stead if use it blank username and password/ or a SQL native user it works.
I heard that when using window authentication we need to be leave it blank for user and password.
wats the concept arround this...this can also be tested by a udl file:
just create a udl file and instead of SQL authentication try windows authenticationit it wont ask for username and password but the test connection will be succesfull.
how the domain user i am pulling in shared services get authentication is sql?
so all those domain user need to be given provisioning in SQL also?
its clear when not using windows auth. that one user with dbowner rights will be used when configuring HFM.Shared service will handle the restriction of the user.
But, when windows auth. the user auth.in shared service and to get in to data base he need to be again pulled in sql and give proper rights to it..
if its more than 100 users how its possible to do it sql?

I don't know Jack about Windows admin. Can you see someone's C:\ when logged in on their PC as a domain user? Are you using AD (Active Directory) for authenticaion? Grasping at straws....

Similar Messages

  • MS OUTLOOK PROMPT USERNAME AND PASSWORD REPEATLY WHEN WE LOGIN WINDOWS 8.1 WITH DOMAIN USER ON WINDOWS SERVER 2008R2

    Dear Sir
       My name is sandeep and i have a technical issue with MS office Outlook 2007 standard. the problem is i have windows 8.1 pro. and i have installed office 2007 standard on it. i have also joined this windows 8.1  to Domain Network(I have
    domain Server on Windows server 2008R2) now problem is that when i login with domain user on this windows 8.1 and configure my MS outlook the it prompts user name and password again and again showing error "
    Server responded -ERR access denied"  and if i login windows 8.1 with its local administrator user the all runs file then ms outlook does
    not prompt for username and password. this problem with only windows 8.1 domain login.. please suggest what to do and how this problem will be resolved..
    Regards
    sandeep Kumar

    Hi,
    Did it work correctly before when logging in with domain user account? If so, please try opening Control Panel > Credential Manager and remove the cached credential entry of the Outlook account, and then restart Outlook to test the issue again.
    See:
    https://support.microsoft.com/en-us/kb/2762344/en-us
    Please also try logging into your email account from webmail access to see if there is any error.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Invoke-sqlcmd with domain user name and password

    I am trying to execute below small SQL script from powershell by passing my domain user name and password..but it is throwing an error login failed for the user.
    Howerver I am able to execute the same query by passing normal user 'non domain' and password. The issue is only when i am trying to connect with domain username.
    Can you please suggest if there is any way to execute below query with domain user..
    Invoke-Sqlcmd
    -query "select name from master.sys.databases"
    -ServerInstance "CM-NCKM-DBTST04\SQL2012" -username "sos\9venk" -password "xxxx"
    Thanks
    Venkat
    venkat

    Hi Venkat,
    Agree with Mike, to connect sql via powershell, you can refer to this article about authentications:
    Connecting to SQL Server through Powershell
    Please try to gather credentials using Get-Credential, and then use New-PSSession -Authentication CredSSP to open the pssession.
    A similar discussion about this issue is for your reference:
    Invoke-SQLCmd with Different Credential
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Enable and Disabling the Network Adapter with domain user (Standard User)

    Hi Guys. 
    We setup a active directory in our organization. Added client systems(Windows 7 and Windows 8) to the Domain. Domain users are accessing the system with standard users permission. I don't want to give Administrator permissions. But user should able
    to Disable and Enable network Adapter without giving the administrator permissions. Please suggest . 
    Thanks in advance for the help :)

    Hi,
    According to your description, my understanding is that you want the standard user has the permission to disable/enable network adapter.
    I recommend you to implement this function by group policy:
    User configuration - Administrative Templates – Network - Network connections
    Enable this policy:
    Ability to enable/disable a LAN Connection
    Besides, you may consider of joining users to Network Configuration Operators Group, detailed information you may reference:
    A Description of the Network Configuration Operators Group
    http://support.microsoft.com/en-us/kb/297938
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Exporting VM to network with Domain User Account

    Hi,
    I have a problem with my new BackUp-Script.
    I run my script as an user with admin rights on the hyper-v machine. I already configured hyper-v security settings (http://social.technet.microsoft.com/Forums/en-US/winserversecurity/thread/bc63d585-d514-49ec-9bcb-d8b8ab3a8a85).
    If I run my script as local administrator, it works fine! As domain user I always get this error, when Exporting the machine?
    You cannot call a method on a null-valued expression. 
    At C:\scripts\test\CreateVmBackups.ps1:48 char:43 
    +     $status = $VM_Service.ExportVirtualSystem( <<<< $VM.__PATH, $True, "$dest\$VMName\newest\$date\") 
    Any ideas?
    I would run my script as local admin but in this case, I have no access to my network, where i want to save my exported vm.
    Regards, Pascal

    The real key is the mounting of a remote volume part.
    Like I said - this does not work.
    Now, at the same time I have seen some tricks done that I don't know if they would solve the problem or not.
    First of all, the remote share issue.  You execute your command in your logged on user authentication space.  Hyper-V performs the Export in its running execution space (Local System).  So, failure one is that the Hyper-V server cannot 'see' your mounted share as your security spaces are not equal, nor shared.
    Technically, this is the Hypervisor that is actually under the Parent operating system that you log into at the console - so the ONLY thing it can see is a volume attached as some type of physical volume (IDE, SCSI, iSCSI, fiber channel, etc.)
    If you can do an iSCSI mount, then the Host can use that.  Or do an export, then an xcopy move in your script - yes, it takes more disk space and causes a bunch of IO.
    Now, all this being said - there is a possibility.  If you have a Windows share you can grant access to the computer account of the computer running Hyper-V.   This is the DOMAIN\COMPUTERNAME$ account.
    SCVMM uses this under the hood, and it works there for copying VMs back and forth.
    I would give that a try before giving up hope.
    Another option is a 3rd party tool - I have been closely involved with:
    http://community.citrix.com/display/xs/Kensho  (so I am familiar with it - and use it)
    It is not a MSFT tool, however, it has the potential of solving the dilema.
    It also is a v1 and has some work.  The next release will be fully scriptable.
    Oh, and something that I have discovered - when doing large data copies with Hyper-V - follow the recommendation of having a dedicated management NIC that is not part of an External Virtual Network.  You throughput will be twice as fast.
    Brian Ehlert
    (hopefully you have found this useful)

  • HT1420 Possibility to use 1 Computer - configured with 2 user accounts - each account uses a different Apple-ID for iTunes authorization ?

    I wonder if it is possible to use 1 Computer (Macbook Pro)
    - configured with 2 (ore even more) user accounts (i.e. me + my kid)
    - and each user account has a different Apple-ID (account) for iTunes purchases & iTunes authorization ?
    I woud think that is fine in terms of the underlying license agreement refereing to re-download purchased movies, shows, apps, etc.
    However, it seams that there is that miraculous 90 days restriction, which I don't understand, and which allows me only to "authorise" the Computer under one or the other account. The switch is unfortunatelly only possible every 90 days ?!?
    Thanks anybody for help
    Oliver

    The 90 day association doesn't stop you authorising an account, it only stops you from using another account for iTunes Match or automatic downloads or redownloading its past purchases : http://support.apple.com/kb/HT4627
    There are a few methods listed on this page for how you could do it e.g. multiple user acounts, same iTunes but you having separate playlists, separate iTunes libraries : http://support.apple.com/kb/HT1495

  • SQL Plus not work with domain user

    Hey guys,
    have a problem with sql plus in our network. when i started it with the admin it works. but when i started it with a user account, fill in the username, the password and the host and click on the ok button, the window closes and nothing happen. no error no new window, the window simply closes.
    what to do?
    regards

    Hi,
    There might be different reasons behind this.
    Check whether user is created in database or not.
    There might be possibility that, user is in different database.
    SELECT * FROM V$DATABASE; --This will help you to findout database name.
    SELECT * FROM DBA_USERS WHERE USERNAME = 'HR';  --HR is user present on database. If your user is present in database then user might not have connect privilege.
    GRANT CONNECT , RESOURCE TO HR; --HR is user. To execute this command, login as sys You can also try to login with command prompt.
    sqlplus user/password@host

  • SSAS issue with Domain user account

    Hi
    I have SSAS 2008 R2 set up running on Windows Server 2012 Standard.
    The server is registered as a part of domain.
    I have had an issue of domain user accounts accessing to a cube and it's starting to get worse. There has been no problem with a local user account (I set up a few for testing purpose). 
    I ran the role report from BIDS Helper and it finds all the domain user accounts invalid. 
    It looks like SSAS is not talking well with the domain server (Windows 2003 server standard) to verify user credentials. But the thing is that everyone is ok with the domain server except for SSAS. IT does not have a clue what's going on here and everything
    is just pointing at me right now.
    I'd like to know if there is anyway to monitor that communication between SSAS and domain server for user credential verification and any guideline on how to resolve it. Most of time, it just works again..  like 10 minitues later.. it resolves by itself.
    But this time, not!!!
    All I know is that 1. Registering the server as a part of domain 2. use domain user account to set the security. 
    MY IT department has set up network monitoring tool and says that they are 100% percent working (No connection loss. It's monitoring Active directory as well). The application installed is 'ManageEngine Applications Manager' 
    I don't know what to do here. 
    P.S Will it be related something like 'Error
    while Add user to SSAS Server - The trust relationship between the primary domain and the trusted domain failed' but it's all the domain accounts including mine are not working.
    Cheers!!!

    First check your DNS servers setting on the server you have SSAS installed. You should only use the IP addresses of the DNS servers (e.g. Domain Controllers) of your domain. Active Directory relies on proper DNS server settings. Adding public DNS servers,
    even if they are on the bottom of the list, will mess up name resolving Active Directory names. This should have been done when IT had provisioned the server. Same goes for own workstation if you run your development/management software not on the server.
    Second make sure SSAS is running under a service account that has access to Active Directory. This can be either a domain account, the local system account, or the network service account. Running SSAS under a local account or the local service account will
    not work because local accounts do not have access to Active Directory. Running SSAS under either a Managed Service Account or a Virtual Account will not work because those features require the domain at least the Windows Server 2008 R2 functional
    level.
    Third make sure the account you use to log on to SSAS is a domain account and has appropriate permissions in SQL Server and SSAS. Local accounts and SQL Server account do not have access to Active Directory

  • Standby Database Configuration with LGWR and ASYNC

    Hi,
    I am running a standby database configuration on a 100MBit LAN
    with the following set-up:
    log_archive_dest_2='service=standby mandatory reopen=300 lgwr
    async=2000'
    The system is handling a lot of very small transactions, not
    involving large amounts of data.
    My questions are:
    - What are the potential problems in using a small ASYNC buffer
    like the one above?
    - Does a larger ASYNC buffer influence the latency in copying
    changes from the production database to the standby database -
    will it buffer more changes before sending them to the standby
    database?

    Murlib,
    I have few more doubt-
    Our requirement is to configure a Standby( Physical-MAXIMUM PERFORMANCE
    mode) in a place, which is 600 KM away from our primary destination.
    Currently our LAN network traffic rate is 100 Mbps. but this traffic is
    virtually reduced to 1Mbps out side our LAN.
    Our Production Database is 24X7 and Its generating 17 GB Archive files every
    day.
    Since the net work traffic is slow i think, it will create some log gaps,and
    also we couldn't do a point in time recovery.
    We are configuring a Standby, here inside our LAN in Managed Recovery Mode
    for recovery purpose and will keep a Standby there in remote place for
    Reports.
    and it will be recover it in every morning.If iam following this procedure,
    my
    log_archive_dest_2 ='service=stby ARCH NOAFFIRM' ( which is the standby here
    inside our LAN and should be in MANAGED RECOVERY mode)
    and i need to configure the parameters for standby in my remote location.So
    my doubt is-
    Shall i need to configure "log_archive_dest_n" in the parameterlist of my
    Primary for that remote Standby ?
    I think for manual recovery we can aviod that.But we need to eonnect it
    thrrough Oracle Net
    Can you please tell me the essential PRIMARY parameter list entries for this
    kind of remote standby , recovering in a manual mode ?
    i think the following parameter should be there -
    FAL_SERVER
    FAL_CLIENT
    DB_FILE_NAME_CONVERT
    LOG_FILE_NAME_CONVERT
    STANDBY_FILE_MANAGEMENT=AUTO
    STANDBY_ARCHIVE_DEST
    Thanks and Regards,
    Raj

  • Database starts with other user

    Hi everyone!
    I have a rman catalog I want to start with orarman OS user.
    The binaries belong to oracle user, since it's installed in a two-nodes cluster. Active node has the production instance (startup with oracle), and the pasive node the rman catalog.
    There is only one oracle software in each node (which belongs to oracle)
    When I try to start rman catalog with orarman in the second node, it only starts up with oracle user and not with orarman.
    orarman@wareflow2:~> sqlplus "/as sysdba"
    SQL*Plus: Release 10.2.0.4.0 - Production on Fri May 13 12:16:47 2011
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.4.0 - 64bit Production
    SQL> select * from v$Instance;
    INSTANCE_NUMBER INSTANCE_NAME
    HOST_NAME
    VERSION STARTUP_T STATUS PAR THREAD# ARCHIVE LOG_SWITCH_WAIT
    LOGINS SHU DATABASE_STATUS INSTANCE_ROLE ACTIVE_ST BLO
    1 RMAN10
    wareflow2
    10.2.0.4.0 13-MAY-11 OPEN NO 1 STOPPED
    ALLOWED NO ACTIVE PRIMARY_INSTANCE NORMAL NO
    SQL> ! ps -ef | grep pmon
    orarman 12651 9108 0 12:17 pts/15 00:00:00 /bin/bash -c ps -ef | grep pmon
    orarman 12653 12651 0 12:17 pts/15 00:00:00 grep pmon
    oracle 31082 1 0 12:14 ? 00:00:00 ora_pmon_RMAN10
    orarman@wareflow2:~> which sqlplus
    /oracleeng/app/oraclese/bin/sqlplus
    orarman@wareflow2:~> ls -lrta /oracleeng/app/oraclese/bin/sqlplus
    -rwxr-x--x 1 oracle oinstall 9523 2011-01-27 00:16 /oracleeng/app/oraclese/bin/sqlplus
    I have tried everything...
    Executing with root: su - orarman -c /home/orarman/arranca.sh
    Does someone how to do?? Thanks in advance!!!

    Welcome to the forums.
    Provided the orarman user is in the Unix dba group, you should be able to startup the database.
    In your post you don't show the result of a startup command, not even a startup nomount.
    So far no one can see what you did to reach the result the instance is stopped.
    Can you
    sqlplus / as sysdba
    startup nomount
    if this doesn't work stop here and post the error message.
    alter database mount;
    again if this doesn't work stop here and post the error message.
    alter database open;
    ditto
    Sybrand Bakker
    Senior Oracle DBA

  • Start Database Service with another user

    Hi Everyone ,
    i've a little problem with the Oracle 10 Console Service on a W2K3 server.
    I want to start that Service with another user as "Local System"
    I created a local user that is member in the "ORA_DBA" group and in the local Admin Group. But the Service won't start. When i start the service with the "local system" account it starts.
    Is there another possibility to start the service this way or where is my error ?
    Greetz Byte

    Hi
    I searched metalink and came across a note that mentioned following actions. I hope it works in your situation.
    1. Launch locally on the windows host the Local Security Policy tool
    2. For the domain user or local user starting the Management Agent service
    Give the following Advanced Privileges
    - Log on as a batch job
    - Act as part of the operating system.
    - Adjust memory quotas for a process
    or (for windows 2000 and Windows NT)
    - Increase memory quotas"
    - Replace a process level token.
    3. Ensure that the same local user or domain user starts all the other Oracle Windows services monitored by the Management Agent
    The same fix must be applied for the standalone dbconsole service on windows.
    Rgds
    Adnan

  • Multiple Database configurations with Hibernate and caching

    Hi,
    I am building an webservice app which has 2 different DBs( Oracle and DB2). Please let me know whats the best way of designing the hibernate layer to access both the DBs ; I have some cross reference tables in both of them.
    I am planning to create a logical model of the physical DB model ( combining both Oracle and DB2) and use property files or some configuration to map my logical to the actual physical table. What would be the best design for this? Do you recommend caching these conversion values?
    Please let me know the best practice / way to work on my above situation.
    fyi - I am neither a novice nor an expert in J2EE.

    I have the same experience. I can connect to the database of the inital setup but then I try to create a second DB connection with
    Create the connection
    java -jar apex.war setup --database edwdev1
    Sep 28, 2012 5:08:04 PM oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder
    INFO: Using configuration folder: /space/sw/oracle/products/apex/2.0.0/config/apex
    Enter the name of the database server [localhost]:ddb001-v.maximusbchealth.local
    Enter the database listen port [1521]:1521
    Enter 1 to specify the database service name, or 2 to specify the database SID [1]:1
    Enter the database service name:apex_edwdev1.maximusbc.ca
    Enter the database user name [APEX_PUBLIC_USER]:APEX_PUBLIC_USER
    Enter the database password for APEX_PUBLIC_USER:
    Confirm password:
    Enter 1 to enter passwords for the RESTful Services database users (APEX_LISTENER,APEX_REST_PUBLIC_USER), 2 to use the same password as used for APEX_PUBLIC_USER or, 3 to skip this step [1]:3
    Sep 28, 2012 5:10:12 PM oracle.dbtools.common.config.file.ConfigurationFiles update
    INFO: Updated configurations: apex_al, apex_rt, apex, edwdev1, edwdev1_al, edwdev1_rt
    Then I create a routing based on theRequest Path Prefix:
    java -jar apex.war map-url --type base-path /edwdev1 edwdev1
    Sep 28, 2012 5:12:32 PM oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder
    INFO: Using configuration folder: /space/sw/oracle/products/apex/2.0.0/config/apex
    oracle@vs-dapp041:/sw/oracle/products/apex/2.0.0$
    Everything seems fine but when I try to access the second db I get:
    http://vs-dapp041.maximusbchealth.local:7501/apex/edwdev1 => 404 not found
    I am going to be at Open World next week and see if I can talk so someone at the apex stand there.

  • ACS 4.2 appliance external database configuration with AD

    Dear All,
    How to configure external database in ACS 4.2 appliance for Windows Active Directory.Active Directory is configured in Windows 2012.ACS internal database is working fine without interruption.What configuration is requred to configure external database(Active Directory).It would be highly appreciated if you share your experience with me.
    Thanks,
    AS

    Please check
    Supported Interoperable Devices and Software Tables for Cisco Secure ACS Release 4.2
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4-2/device/guide/sdt42.html

  • Authentication Scheme - Database Account with login user exists in table

    Hi all,
    I m new to APEX. Could anyone tell me how can i modify the authentication scheme to validate the user by Database Account DB user & password, also the username must exist in a table
    As the DB is not only designed for one application, so DB account may incl. DB users more than the users who can access the APEX application. So I must check the user name exists in a table also.
    Thx.

    Scott,
    I try to save the msg in application item and set the message by application item in process before header, it works perfect. The message display as what i want :)
    One more question is i would like to give this link to user will go let the user go to the target page and can edit the page without doing any searching b4.
    http://XXX/apex/f?p=115:3::NO:::P3_ID:82
    If the user hvnt login, system will prompt login page, after the user login it, it will direct go to the target page. I have try if the user type in a wrong username / password it still work after i retype a correct one. The page can redirect to the target page.
    However, if i type in a user name & password is correct but not exist in my define table like what i stated b4. Then i type in a correct one I can just go to page 1 instead of the target one.
    How can i do the same thing?
    Sorry for non-stop questioning, but pls help. Thanks a lot.

  • Change configuration of a user with another user

    Hi gurus,
    I would like to know if it is possible to change the configuration of users with an admin user.
    For example. I don't have the pass of user A. Meanwhile, I nedd to change the layout of an appraisal document, a specif portal configuration for that user. Is it possible to change that configuration with my user.
    I asking this becausa I'm doing maintenance of SAP portals and some users don't give access to their accounts for privacy reasons. Do you have any ideia if it is possible?
    My specific case is HCM. I need to change add an entry to a layout of an user but I can not access to his account. It may look nonsense, but sometimes it happens.
    Thanks and best regards.

    HI,
    It is possible to change the configuration of users with an admin user.,as such only if  you have administrator rights.If u wan tto change the appraisal document with the specified user if suppose you are saying that user a is not there ,admin user can be used for editing the particular document ,where in all the information can be there with administrator .
    Regards
    Ashwin Chandra GIrmaji

Maybe you are looking for

  • HTML report with graphs and google chrome(opera)

    Hi, Why - No graphs for me if I use the Google Chrome or the Opera, but it works in IE. how to solve this problem, where is "a magic setting"? Thank you in advance. Sergei "Only a life lived in the service to others is worth living..." - Albert Eins

  • Can you delete the game center app

    Can you delete the game center app off the iphone

  • Cannot install Windows 7 with bootcamp

    Ok, I am getting really frustrated at this point with bootcamp. I have previously installed win7 on this same computer I'm working with, I reformatted the drive and uninstalled windows with bootcamp, the reason I did this was because I needed more sp

  • HT1766 Is there a way to restore to a new device without downloading all the pictures?

    I downgraded my phone from a 64gb to a 16. I would like to know if I can restore my settings and apps without downloading the pictures, music etc.

  • Max Firewire drive capactity

    Hi all, I have a WD My Book Studio II striped giving 2TB on my Firewire 800 port. WD now have a 2TB drive available, I plan to swap out the two 1TB drives for the newer 2TB drives, it looks like the My Book will support these new drives. So I get a 4