Displaying 17 results from an estimated 17 matches for "sysdba".
Did you mean:
sysdata
2006 Jan 29
4
Problems with FireRuby and scaffolding
...s table in a Firebird databse
called TARPRILOGISTICS.GDB. The database is in a folder named "database"
in my rails app root folder. I tried FireRuby 0.4 and 0.4.1. My config
file looks like this:
development:
adapter: firebird
database: ../database/TARPRILOGISTICS.GDB
username: sysdba
password: masterkey
charset: UNICODE_FSS
host: localhost
Any solutions to this problem?
Thank you.
--
Posted via http://www.ruby-forum.com/.
2009 Dec 01
3
best practises for avoiding to write passwords in shell scripts (example sqlplus from Oracle)
Hi folks
I have here a CentOS box where i need to setup cronjob (with session
to remote Oracle instance). On the remote DB i have no access, expect
limited user.
How to avoid putting passwords in shell scripts?
The solution doesn't need to be perfect, only better than plain text
passwords in scripts.
Mostly remote host only support password authentication (no
certificates and so on).
2009 Jan 30
5
Question about Shell Script.
Hi all CentOS users,
I have writing shell script for check oracle processes in real time
and alert with e-mail.
I read script like below
NUMBEROFPRO=/oracle/10.2.0/db_1/bin/sqlplus / as sysdba <<EOF1 |grep
processes|awk '{print $2}'
SELECT resource_name,current_utilization,limit_value FROM
V\$RESOURCE_LIMIT WHERE RESOURCE_NAME IN ('processes','sessions');
quit
EOF1
if [ $NUMBEROFPRO > 150 ]
then
/bin/mail -s "Processes number bigger then 150 !!"...
2005 Oct 12
2
Monitor DTMF problems
Hello
We have discovered a problem with DTMF on Asterisk.
We have a setup with a T1 from PSTN going into an Asterisk box, and
then out again on T1 and into a normal PBX (EADS)
We use it to record all calls going to/from the PBX.
The problem is that when we record the calls (with MONITOR command),
DTMF tones gets obscured, and is not understood in the other end, if
we dont Monitor, there are no
2008 Aug 29
1
DB stop&start
Hi
I need a script to automatically Starting/Stopping an Oracle 10g DB on
CentOS5.2 64bit i.e
lsnrctl start/stop
db start/stop
emctl start/stop dbconsole"
Any help?
--
Madunix_at_Gmail
Sysadmin
"Computers are useless. They can only give you answers" - Pablo Picasso
"Never trust a computer you can't throw out a window." - Steve Wozniak
-------------- next part
2011 Nov 28
1
how to create a oracle 11g database through puppet module
Hi
This is Anjan and I am creating a module to create a database for
oracle 11g. I have a problem to execute a cmd
ie sqlplus "/as sysdba"
@/home/oracle/cr_$dbn
Please tell how to exucute the above cmds through puppet module.
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this gr...
2006 Mar 16
5
Multiple databases + switching databases
...environment.rb?
I''ve tried to do this just setting connection at Gps class but it didn''t
work.
( ActiveRecord::Base.establish_connection(
:adapter => "firebird",
:host => "localhost",
:database => customer_name,
:username => "SYSDBA",
:password => "masterkey")
Does anybody have any idea?
Thanks a lot!
Marcia
--
Posted via http://www.ruby-forum.com/.
2008 Nov 15
1
Oracle start up script issue with RHEL3 Cluster
...*)
echo $" Not Applicable"
exit 1
esac
echo "exiting script"
exit $RETVAL
###################################################################################
stopdb.sh
/home/oracle/orahome/bin/sqlplus /nolog<<EOF
connect sys/sysxyzcall at xyzcall as sysdba
shutdown immediate;
host lsnrctl stop
quit;
EOF
exit
######################################################################################
startdb.sh
#######################################################################
/home/oracle/orahome/bin/sqlplus /nolog <<EOF
host lsnrctl stop
host l...
2004 Sep 01
2
ocfs doesn't free space?
...ze Used Avail Use% Mounted on
/dev/sdp1 10G 5.3G 4.8G 53% /db/DPS
so there are more than 4GB available.
$ sqlplus /nolog
SQL*Plus: Release 9.2.0.4.0 - Production on Wed Sep 1 12:57:48 2004
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> connect / as sysdba;
Connected.
SQL> create tablespace data_dp
datafile '/db/DPS/tablespaces/dp/data01.dbf'
size 999m autoextend on
segment space management auto;
create tablespace data_dp
*
ERROR at line 1:
ORA-01119: error in creating database file
'/db/DPS/tablespaces/dp/data01.dbf'
O...
2009 May 31
1
ZFS rollback, ORA-00322: log 1 of thread 1 is not current copy (???)
...localhost:/# zfs snapshot coolpool/u01 at ok
root at localhost:/# zfs list
NAME USED AVAIL REFER MOUNTPOINT
coolpool 6.43G 1.39G 18K /coolpool
coolpool/u01 6.43G 1.39G 6.43G /u01
coolpool/u01 at ok 0 - 6.43G -
oracle at localhost:/> sqlplus / as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on Sun May 31 03:38:02 2009
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 418484224 bytes
Fixed Size 1300324 bytes
Variable Size...
2007 Mar 21
2
ORA-03106: fatal two-task communication protocol error
...any Rails-specific info about this on google.
Here are the circumstances:
/usr/local/bin/ruby --version
ruby 1.8.4 (2005-12-24) [i686-linux]
/usr/local/bin/rails --version
Rails 1.1.6
## Create mcd app
rails mcd -d oracle
cd mcd
## Create oracle tablespace & user
sqlplus ''/ as sysdba''
create tablespace mcd datafile ''/oracle/oradata/d102/mcd_0.dbf'' SIZE
500M;
create user mcd identified by XXX default tablespace mcd ;
grant select_catalog_role, connect, resource, XXX, create session to
mcd;
## Start server app
ruby script/server -d -p3000
http://...
2006 Apr 11
0
Problem using generate/scaffold and FireRuby
...e scaffold product". I always get
the message "uninitialized constant CHARACTER_SET". I have a products
table in a Firebird database called depot_development.fdb. Here is my
config file :
> common: &common
> adapter: firebird
> host: localhost
> username: SYSDBA
> password: masterkey
> charset: WIN1252
>
> development:
> database: depot_development
> <<: *common
>
> production:
> database: depot_production
> <<: *common
>
> test:
> database: depot_test
> <<: *common
>...
2007 Apr 12
10
How to bind the oracle 9i data file to zfs volumes
Experts,
I''m installing Oracle 9i on Solaris 10 11/06(update 3),I created some
zfs volumes which will be used by oracle data file,as:
# zfs create -V 200m ora_pool/controlfile01_200m
# zfs create -V 800m ora_pool/system_800m
...
# ls -l /dev/zvol/rdsk/ora_pool
lrwxrwxrwx 1 root root 39 Apr 11 12:23
controlfile01_200m -> ../../../../devices/pseudo/zfs at 0:1c,raw
2004 Mar 10
2
copy error + control file corruption in ocfs 1.1 0
Hi Bharat/Philip,
I haven't tested it yet.
My systems are running RHAS 2.1.
I'll come back to let you now the outcome.
Regards,
Robert.
-----Original Message-----
From: Bharat_Sajnani@Dell.com
To: robert.blok@logicacmg.com
Sent: 3/10/2004 7:09 PM
Subject: RE: [Ocfs-users] copy error + control file corruption in ocfs 1.10
Hi Robert,
Have you had a chance to retest this issue with the
2009 Apr 27
5
ruby jasper report
Hi,
I am trying to create a pdf using ruby jasper.
For this I am referring this url:-
http://oldwiki.rubyonrails.org/rails/pages/howtointegratejasperreports
I have done everything whatever is in that link.
Still I am not able to get the pdf. I am not getting any error in log
file. My log file is:-
"Processing AccountController#customer_report (for 127.0.0.1 at
2009-04-27 13:19:34) [GET]
2005 Sep 23
1
Play sound on connect
Hello
A calls B, on connect I want B's greeting to be played to caller A.
I can see it is possible to play a sound to B on connect (DIAL(SIP/123
,A(hello)), but I cant se how to play a sound to A, is this possible?
Thank you
Michael
2005 Sep 28
1
Monitor in AGI
Hello
Does anyone have an example of how to use the MONITOR command from an
AGI-script ?
I have tried different methods, but none of them worked :-(
I'm using Python
MIR