Topic Options
Rate This Topic
#141189 - 04/07/09 04:01 PM How to find out the user name connecting to db
baba Offline
Stealth Member

Registered: 03/01/07
Posts: 79
How to find out the user name which is connecting to the dbase.

We have
• Windows Server 2003
• AR Server 6.03 with patch 005
• SQL Server 2000

I tried to see File --> Server information --> Database using admin tool. I saw the ARAdmin as the User name and ARSystem as the Database name.

But I don’t see any user of that name in the SQLServer 2000 database. The only user in the SQL Server is 'sa'

In ar.cfg I don’t have anything saying db-user-name.

How to find out what is the username remedy uses to connect to its respective database server.

Top
#141195 - 04/09/09 01:23 PM Re: How to find out the user name connecting to db [Re: baba]
Phil_Keig Offline
Stealth Member

Registered: 09/26/07
Posts: 54
Loc: NY
The AR System database user (ARAdmin by default) and password
(AR#Admin# by default) are set during AR System server installation.

I have that same environment as you, if you look in Microsoft SQL Enterprise Manager, expand databases, expand AR System, select users and you can see it says DBO, Login Name ARAdmin.


User name ARAdmin
Pass AR#Adnin#

To test, register the server in SQL Enterprise Manager.
_________________________
Win2k3 Enterprise Server / SQL 2000 / Remedy 6.3 patch 24 / Websphere 6.0.1 Mid-Tier, Kinetic Request 4.0.4

Top
#141292 - 05/27/09 07:31 PM Re: How to find out the user name connecting to db [Re: Phil_Keig]
baba Offline
Stealth Member

Registered: 03/01/07
Posts: 79
Thank you. Appreciate your help.

Top
#141588 - 06/02/10 04:39 AM Re: How to find out the user name connecting to db [Re: baba]
expert Offline
Stealth Member

Registered: 01/01/09
Posts: 10
Use following command:

select * from dba_users;

Top