search for: db_1

Displaying 14 results from an estimated 14 matches for "db_1".

Did you mean: db1
2007 May 02
0
mv error moving files from local partitiontoocfs2
...= 0x510000 > > mmap(NULL, 4096, PROT_READ|PROT_WRITE, > MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2a95556000 > > access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No > such file or directory) > > > open("/home/oracle/product/10.2.0/db_1/lib/tls/x86_64/libacl.s > o.1", O_RDONLY) = -1 ENOENT (No such file or directory) > > stat("/home/oracle/product/10.2.0/db_1/lib/tls/x86_64", > 0x7fbfffecb0) = -1 ENOENT (No such file or directory) > > > open("/home/oracle/product/10.2.0/db_1/lib/tls/libac...
2007 Apr 30
1
ROracle issues
Hi all - I am trying to install ROracle for linux machines ... I have read the INSTALL documentation and followed the directions for setting the paths as follows: export PATH=/app/oracle/product/10.2.0/db_1/bin:$PATH [manthony@diamondback ~]$ export LD_LIBRARY_PATH=/usr/lib:/usr/lib64:/lib:/app/oracle/product/10.1.0/db_1 /lib32:/app/oracle/product/10.1.0/db_1/lib:/app/oracle/product/10.1.0/db _1/lib64 As directed by the INSTALL document. Executing the install by running sudo R CMD INSTALL RO...
2011 Sep 02
1
Using capture.output within a function
...h appreciated. Kristian Lind *Below an example of what I'm trying to do...* loglik <- function(w){ state <- c( b_1 = 0, b_2 = 0, a = 0) #declaring ODEs Kristian <-function(t, state, w){ with(as.list(c(state, w)), { db_1 = -((w[1]+w[8])*b_1+(w[2]+w[6]*w[8] +w[7]*w[9])*b_2+0.5*(b_1)^2+w[6]*b_1*b_2+0.5* ((w[6])^2+(w[7])^2)*(b_2)^2) db_2 = -w[3]*b_2+1 da = w[1]*w[4]*b_1+(w[2]*w[4]+w[3]*w[5])*b_2 list(c(db_1, db_2, da)) }) } # time making a sequence from t to T evaluated at each...
2006 Aug 12
1
OCFS- EMC Issue
...partitions /orasoft 10 Gb OCFS2 File system /oracrs 2 Gb OCFS2 File system /orabackup 100 Gb OCFS2 File system The datafiles are on ASM which is not directly visible in OS. I?ve common Oracle Home installed in /orasoft/db_1 which is shared by both nodes in cluster. I?ve faced an issue recently related to EMC storage. The /orasoft partition displays 1.4 Gb space available using df command. when ever I try to create a file on this partition I get an error as No Space left on device. I?m unable to start any service with...
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...
2012 Nov 30
0
Oracle database connction from R in Linux
...is working fine. Oracle database also working fine. but problem is, If i try to connect oracle from R its not connecting. So, pls guide me how to connect from R to oracle. how, i tried:-- odbcinst.ini file code is [ORACLE2] Description = oracle driver Driver = /ibexis/app/oracle/product/11.2.0/db_1/lib/libsqora.so.11.1 DontDLClose = 1 FileUsage = 1 UsageCount = 1 I tried in R ... >library(RODBC) >con <- odbcConnect("data source name", uid="username", pwd="password") after this line i got error, > odbcConnect("india", uid="data_quali...
2008 Nov 28
1
RODBC - problems connecting to oracle through linux
...", uid = "prod", pwd = "passwd") aborting ... The below shows the changes in the odbcinst.ini file. [ORACLE] Description = Easysoft ODBC Oracle Driver #Driver = /usr/local/easysoft/oracle/libesoracle.so Driver = /u01/app/oracle/product/11.1.0/db_1/lib/libsqora.so.11.1 #Setup = /usr/local/easysoft/oracle/libesoraclesetup.so DontDLClose = 1 FileUsage = 2 Can anyone point me to what I'm doing wrong? Version of R = R version 2.8.0 (2008-10-20) Cheers Simon Dr S J Collins Grid data consultant Universit...
2009 Feb 09
0
ROracle - ORA-02005: implicit (-1) length not valid for this bind or define datatype
...DE=ORACLE INCLUDE=/usr/lib64/R/include \ PARSE=NONE LINES=false PREFETCH=1 RS-Oracle.pc Pro*C/C++: Release 10.2.0.1.0 - Production on Fri Jan 9 10:50:43 2009 Copyright (c) 1982, 2005, Oracle. All rights reserved. System default option values taken from: /opt/oracle/product/10.2.0/db_1/precomp/admin/pcscfg.cfg R CMD COMPILE RS-Oracle.c make[1]: Entering directory `/tmp/R.INSTALL.T23031/ROracle/src' gcc -I/usr/lib64/R/include -DRS_ORA_SQLGLS_WORKAROUND -I/usr/local/include -fpic -O3 -g -std=gnu99 -c RS-Oracle.c -o RS-Oracle.o RS-Oracle.c: In function 'RS_Ora_prepareSt...
2011 Apr 28
1
DLSODA error
...Sigma_rr, lambda_v, lambda_r) state <- c( b_1 = 0, b_2 = 0, a = 0) #declaring ODEs Kristian <- function(t, state, parameters){ with(as.list(c(state, parameters)), { db_1 = -((K_vv+lambda_v)*b_1+(K_rv+Sigma_rv*lambda_v +Sigma_rr*lambda_r)*b_2+0.5*(b_1)^2+Sigma_rv*b_1*b_2+0.5* ((Sigma_rv)^2+(Sigma_rr)^2)*(b_2)^2 ) db_2 = -K_rr*b_2+1 da = K_vv*theta_v*b_1+(K_rv*theta_v+K_rr*theta_r)*b_2 list(c(db_1, db_2, da)) }) } # time makin...
2012 Dec 19
0
Oracle listner with port forwarding issue
...everything is set up to hit the oracle server through port 1522. This ORA-12541, the misconfigured oracle listener (I assume on my local, which has already been started) in $ORACLE_HOME/network/admin/tnsnames.ora appears as: # tnsnames.ora Network Configuration File: /opt/app/oracle/product/11/db_1/network/admin/tnsnames.ora # Generated by Oracle configuration tools. ORCL = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl) ) ) Any idea what I should append to this so as to get the...
2011 Mar 31
0
dfsane arguments
...a_rv= 0.0436, Sigma_rr= 0.1145, lambda_v= 0, lambda_r= -0.0764 ) state <- c(b_1 = 0, b_2 = 0, a = 0) Kristian <- function(t, state, parameters){ with(as.list(c(state, parameters)),{ db_1 = -((K_vv+lambda_v)*b_1+(K_rv+Sigma_rv*lambda_v+Sigma_rr*lambda_r)*b_2+0.5*(b_1)^2+Sigma_rv*b_1*b_2+0.5*((Sigma_rv)^2+(Sigma_rr)^2)*(b_2)^2 ) db_2 = -K_rr*b_2+1 da = K_vv*theta_v*b_1+(K_rv*theta_v+K_rr*theta_r)*b_2 }) } times <- seq(0, 10, by = 0.5) library(deSolv...
2012 Oct 24
13
Puppet & Oracle Database config management
Afternoon all. I''ve been reading around on Puppet and Oracle, and have come up with a few links that suggest how to get Oracle installed and base configured, which has got me started in the right direction on that. My next challenge is maintaining Oracle database specific configuration on the relevant hosts. This contains various elements, such as /etc/oratab, /etc/oranfstab (as
2011 Nov 19
11
Installing Oracle
This is pretty ugly. I''m using puppet to install Oracle, ie an exec{} wrapped around: /u01/oracle_extract/linux.x64_11gR2_database/database/runInstaller -silent -responseFile /etc/oracle_response.rsp The problem is that the damn installer backgrounds itself and returns control to the shell. I tried putting the above command in a script, followed by a wait command, but that
2008 Nov 21
3
HELP
[This email is either empty or too large to be displayed at this time]