Path: dp-news.maxwell.syr.edu!spool.maxwell.syr.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!news.rh-tec.net!news.germany.com!postnews.google.com!c74g2000cwc.googlegroups.com!not-for-mail
From: bdbafh@gmail.com
Newsgroups: comp.databases.oracle.server
Subject: Re: Finding out sys password
Date: 6 Jun 2006 10:55:36 -0700
Organization: http://groups.google.com
Lines: 28
Message-ID: <1149616536.392027.123440@c74g2000cwc.googlegroups.com>
References: <1149607608.919106.125090@f6g2000cwb.googlegroups.com>
   <1149608130.296295.307290@c74g2000cwc.googlegroups.com>
   <1149609161.071928.314790@g10g2000cwb.googlegroups.com>
   <1149614520.375249.135040@f6g2000cwb.googlegroups.com>
NNTP-Posting-Host: 137.237.113.80
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
X-Trace: posting.google.com 1149616541 5283 127.0.0.1 (6 Jun 2006 17:55:41 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Tue, 6 Jun 2006 17:55:41 +0000 (UTC)
In-Reply-To: <1149614520.375249.135040@f6g2000cwb.googlegroups.com>
User-Agent: G2/0.2
X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.3) Gecko/20060426 Firefox/1.5.0.3,gzip(gfe),gzip(gfe)
Complaints-To: groups-abuse@google.com
Injection-Info: c74g2000cwc.googlegroups.com; posting-host=137.237.113.80;
   posting-account=rcQZawwAAAALUCo-zZUVUQgj4l_8W6zb
Xref: dp-news.maxwell.syr.edu comp.databases.oracle.server:268647


BS wrote:
> remote_login_passwordfile is set to NONE. What does that represents??

It means you don't need no stinkin password.
logon to the server with a user account that has membership in the OS
group "dba" (*nix) or "ORA_DBA" (win32) - you neglected to specify the
server operating system.

win32:

C:\> set ORACLE_SID=mydb
C:\> svrmgrl
SVRMGR> connect / as sysdba

(make sure that the sqlnet.ora has the parameter
sqlnet.authenication_services=NTS).

*nix, bash:

$ export ORACLE_SID=mydb
$ svrmgrl
SVRMGR> connect / as sysdba

there it is.

-bdbafh

