Displaying 10 results from an estimated 10 matches similar to: "Oracle 8 to 9 strange performance issue"
2013 Apr 29
1
cannot compile R on Cray XE6 HLRS HERMIT
Dear All,
I am trying to compile R-3.0 on Cray xe6 (HLRS) HERMIT, no success so far.
Here is my experience:
I use this to configure and make R:
CC="cc" \
CXX="CC" \
F77="ftn" \
FC="ftn" \
CPPFLAGS="-I$PREFIX/include" \
LDFLAGS="-L$PREFIX/lib${LIBDIRSUFFIX}" \
./configure --prefix=$PREFIX \
--exec-prefix=$PREFIX \
--bindir=$PREFIX/bin \
2001 Aug 31
1
RODBC SQLSave
I am having the following problem with RODBC
I connect to an oracle 8i (8.1.7) database using RODBC as follows;
dbConn <-
odbcConnect("mydatabase","myuserid","mypassword",case="oracle")
Then I extract some data, actually a whole table;
orgdata <- sqlQuery(dbConn, "select * from organism", na.strings = "NA")
Then I try to save it
2005 Dec 05
1
Lack of 'LEFT JOIN' in Oracle 8, any patch for theta style (+)
Dears,
Oracle 8 don''t support ANSI syntax with :
SELECT e.emp_id,
e.fname,
e.lname,
j.jobdesc
FROM employe e
LEFT JOIN jobs j ON e.job_id = j.job_id
but only
SELECT e.emp_id,
e.fname,
e.lname,
j.jobdesc
FROM employe e,
jobs j
WHERE j.job_id (+) = e.job_id
JOIN syntax came with 9i.
Anyone patched Rails
2004 Jan 20
1
Roracle pre-compile error?
Hi,
trying ROracle failed? I'm using Oracle.8.1.7 which is on another machine.
With Tora i get access to the database what i wish to get with R-Project, too.
What does the message mean?
"Oracle pre-compiler proc not in /opt/oracle/OraHome1/bin/proc
you may not be able to compile ROracle"
I'm using linux sue9 and R.1.8.1.
many thanks for any help!
[snip]
2002 Aug 20
0
RODBC/Solaris/Oracle - No Data
Hi,
Version info:
R: 1.5.1
RODBC: 0.8.3
Oracle: 8.1.7
unixODBC: 2.2.2
Easysoft ODBC driver: 1.0.0.6
SunOS/Solaris: 5.7
I'm trying to get RODBC working with Oracle on Solaris. I've installed unixODBC and the Easysoft ODBC driver. There are no problems connecting to the DB and executing queries using unixODBC's isql interactive client. Using R and RODBC however, I can open a connection
2002 Aug 29
1
Oracle 8.1.7 client
I am SOOOOOOOOOOOOOO close to getting my ERP package to run. GRRR. Latest
version of Codeweaver WINE, just downloaded yesterday. IE works, MSOffice
works well - no icons, but still runs, including JAVA. So, WINE seems to
work OK.
The program is a Delphi EXE, using the BDE. I can even run BDEADMIN, but
when attempting to login to the database, there is a lot of disk churning
(indicating I am
2009 Feb 16
1
Conncetion Problem on XP client against Samba 3.2.8 on AIX 5.3.9
Hi everyone,
we have a funny problem connection from an XP machine to a 3.2.8 server. The level 10 log is copied in. Please look at the end of the log entries. Has anybody seen that kind of message?!
Regards
Volker
---
[2009/02/16 13:15:08, 3] smbd/sec_ctx.c:set_sec_ctx(324)
setting sec ctx (0, 0) - sec_ctx_stack_ndx = 0
[2009/02/16 13:15:08, 5] auth/token_util.c:debug_nt_user_token(466)
2006 Jan 10
0
Customizing autocomplete to update more than one value upon vaule select
Good day.
Currently I have a system that will successfully add a row to a table.
Each row in this table will represent a new product being added to a
purchase order.
The user can enter a quantity and then select a product code.
The product code is the auto_complete field. This field works.
However, once the user selects a product code then the values for the
product description, buy price, and
2007 Aug 28
0
help with aggregate(): tables of means for terms in an mlm
I'm trying to extend some work in the car and heplots packages
that requires getting a table of multivariate means for one
(or later, more) terms in an mlm object. I can do this for
concrete examples, using aggregate(), but can't figure out how to
generalize it. I want to return a result that has the factor-level
combinations as rownames, and the means as the body of the table
2011 Dec 23
3
if statement problem
Hello,
I want to do fisher test for the rows in data file which has value less than
5 otherwise chi square test .The p values from both test should be stored in
one resulted file. but there is some problem with bold if statement. I don't
know how
implement this line properly.
x = cbind(obs1,obs2,exp1,exp2)
a = matrix(c(0,0,0,0), ncol=2, byrow =TRUE) #matrix with initialized
values