search for: dba

Displaying 20 results from an estimated 581 matches for "dba".

Did you mean: db
2008 Jan 22
2
extension to nlme self start SSmicmen?
Dear list, Has anyone created a version of SSmicmen that allows testing for group differences? The basic Michaelis-Menten equation is: (Bmax * X) / (Kd + X). The nlme package allows modeling of random effects for Bmax and Kd as needed, but I curious how I can build in group differences? I have receptor binding data for strains of mice, and following Pinheiro and Bates' lead in their
2005 Mar 14
1
calling objects in a foreloop
...t to organize outputs from several regressions into a handy table. When I try the following, each of my "fit_s" is replaces instead of read. Is there a way to read from the regression summaries that does not require writing separate lines of code for each? -Ben Osborne > fit1<-lm(dBA.spp16$sp2.dBA.ha~dBA.spp16$sp1.dBA.ha) > fit2<-lm(dBA.spp16$sp3.dBA.ha~dBA.spp16$sp1.dBA.ha) > fit3<-lm(dBA.spp16$sp3.dBA.ha~dBA.spp16$sp2.dBA.ha) > fit4<-lm(dBA.spp16$sp5.dBA.ha~dBA.spp16$sp4.dBA.ha) > fit5<-lm(dBA.spp16$sp6.dBA.ha~dBA.spp16$sp4.dBA.ha) > fit6<-lm(dBA...
2007 Sep 17
2
mongrel_rails hang and does not respond
Hello, I''ve install ror/mongrel etc, etc on a linux server (rhes). As i''m not root, all package startinf from ruby have been install into ~/gconf/usr ruby-1.8.6 and all of this gem package: -r-xr--r-- 1 dimnce dba 168448 Aug 9 14:53 rails-1.2.3.gem -r-xr--r-- 1 dimnce dba 84480 Aug 9 14:56 rake-0.7.3.gem -r-xr--r-- 1 dimnce dba 217088 Aug 9 14:58 activesupport-1.4.2.gem -r-xr--r-- 1 dimnce dba 406016 Aug 9 15:04 activerecord-1.15.3.gem -r-xr--r-- 1 dimnce...
2003 Nov 20
0
Error when Synchronising
.../20 09:18:04, 3] smbd/process.c:switch_message(685) switch message SMBtrans2 (pid 30608) [2003/11/20 09:18:04, 3] smbd/trans2.c:call_trans2qfilepathinfo(1700) call_trans2qfilepathinfo: TRANSACT2_QPATHINFO: level = 1004 [2003/11/20 09:18:04, 3] lib/util.c:unix_clean_name(387) unix_clean_name [/DBA Reports] [2003/11/20 09:18:04, 3] lib/util.c:unix_clean_name(387) unix_clean_name [DBA Reports] [2003/11/20 09:18:04, 3] smbd/trans2.c:call_trans2qfilepathinfo(1732) call_trans2qfilepathinfo DBA Reports level=1004 call=5 total_data=0 [2003/11/20 09:18:04, 3] smbd/process.c:process_smb(878) Tr...
2004 Feb 12
3
Ocfs mount issues
I am trying to mount the ocfs partitions using the following command Mount -t ocfs -o uid=oracle,gid=dba /dev/sda /ocfs01 as user oracle and group dba. However it mounts the volume as root. But if I use the ocfstool for the first and mount it as oracle:dba, the subsequent mounts using the above command line mounts the volume as oracle:dba. Is there something that I am missing or I will have to o...
2014 Sep 11
2
separar un archivo por años en diferentes archivos
Hola Marta, Si el código exacto que utilizaste es el que has compartido, hay un error... Te falta cerrar un corchete. Y he incluido un detalle para que los ficheros tengan como nombre los años... ?#--------------------------? ??filename<-"test1.csv" DBa<-read.csv(filename,sep="*;*" ,header=TRUE) anios<-unique(DBa$Year) for(i in 1:length(anios)) { dattmp<-DBa[DBa$Year==anios[i],*]* write.table(dattmp,file=paste(*anios[i]*,".txt",sep="")) } ?#----------------------------- Y cuidado, que a la hora de leer el...
2004 Apr 28
1
Cannot delete directories
...kernel 2.4.9-e.25smp. I have (what look to ls and rm) as empty directories. But when I try to rmdir, returns "Directory not empty". This has gone through a reboot (several actually). Any ideas what I can do? [root@delphi1 tmp]# ls -l /oradata/u02 total 514 drwxr-xr-x 1 oracle dba 131072 Feb 4 2003 bogus drwxr-xr-x 1 oracle dba 131072 Mar 12 10:15 rac10 drwxr-xr-x 1 oracle dba 131072 Mar 31 08:41 racdb drwxr-xr-x 1 root root 131072 Mar 26 11:47 rawdevs [root@delphi1 tmp]# ls -l /oradata/u02/rac10 total 0 [root@delphi1 tmp]# ls...
2003 May 06
1
SIP NOTIFY Message
any way the you can get * to send a NOTIFY SIP message to all SIP phones? to have the SIP sets recheck thier configs etc?? Like this? NOTIFY sip:sip@192.168.0.3:5060 SIP/2.0 Via: SIP/2.0/UDP ipaddress:5060;branch=1 Via: SIP/2.0/UDP ipaddress From: <sip:webadim@192.168.0.1> To: <sip:sip@192.168.0.3> Event: check-sync Date: Mon, 10 Jul 2000 16:28:53 -0700 Call-ID: test@192.168.0.1
2011 Feb 17
8
logoutput=>on_failure doesn't work as expected
I''m using puppet 0.25.1. I''ve got a simple resource: exec { "/bin/ls $oracle_base/dba/bin/database_backup.ksh": logoutput => on_failure, } and I don''t want it to log every time it''s successfully run: $ sudo tail -F /var/log/messages | grep puppetd Feb 17 16:36:11 test puppetd[26614]: (//my_module/Exec[/bin/ls /u01/ app/oracle/dba/bin/database_backup.k...
2014 Sep 11
4
separar un archivo por años en diferentes archivos
Otra manera sería usar la función split. Que devuelve una lista de data.frame. Para expotar luego cada elemento puedes usar lapply, ejemplo: data(iris) lista<-split(iris,iris$Species) lapply(names(lista),function(x) write.table(x = lista[[x]],file = paste0(x,".txt")) ) Saludos El 11 de septiembre de 2014, 14:44, Isidro Hidalgo <ihidalgo en jccm.es> escribió: > ¿En qué
2005 May 31
1
read.delim2 regarding "#"
Hello R experts: When I tried to read my data into R, it does not take # sign A subset of Exp.txt is: Experiment name assay id Varname (A1)DBA TPA 6h/DBA Acetone rep1(A1) #3 4090 A90C1 (A2)DBA TPA 6h/DBA Acetone rep2(A2) #3 4091 A91C1 The command is: Exp <- read.delim2("Exp.txt",check.names=F,as.is=T) It is excuted but gave me all the NAs. Can you all drop me a hint? Thanks in advance. Kevin
2008 Jul 29
1
restore
...ORA-19601: output file is control file (/u01/oracle/oradata/sdc/control0.ctl) failover to previous backup - The control files has been transfered from AIX5.3 to a Linux Machine !! - I checked the permissions, they are rw. [oracle at PowerEdge1 cont_backup]$ ls -al total 92272 drwxrwxrwx 2 oracle dba 4096 Jul 29 17:05 . drwxrwxrwx 4 oracle dba 4096 Jul 29 17:10 .. -rw-rw-rw- 1 oracle dba 17661952 Mar 19 19:14 ctl_file_t643581595_s1675_p1 -rw-rw-rw- 1 oracle dba 17661952 Mar 19 19:14 ctl_file_t648930789_s1833_p1 -rw-rw-rw- 1 oracle dba 19693568 Jul 29 04:26 ctl_file_t661285579_s2098_p1 -...
2005 Feb 11
3
OCFS file system used as archived redo destination is corrupted
...we are planning to migrate to rman-based backup (as opposed to the current hot backup scheme); it's easier (required?) to manage RAC archived redo logs with rman if archived redos reside in a shared file system below are some diagnostics: $ ls -l rdo_1_21810.arc* -rw-r----- 1 oracle dba 397312 Feb 10 22:30 rdo_1_21810.arc -rw-r----- 1 oracle dba 397312 Feb 10 22:30 rdo_1_21810.arc (they have the same inode, btw -- I had done a 'ls -li' earlier but the output had rolled off the screen) after a while , one of the dba scripts gziped the file(s). Now th...
2003 Dec 06
2
sol8 - rsync2.5.6 - cannot rsync at all
...sync and popt(prerequsite) from sunfreeware.com (bin for sol8 sparc) # pkgadd -d ./popt-1.7-sol8-sparc-local all # pkgadd -d ./rsync-2.5.6-sol8-sparc-local all Problem : can rsync locally but cannot rsync over network ; can rcp over network can rsync locally : oracle@sys2:/apps/oracle/dba> touch test oracle@sys2:/apps/oracle/dba> rcp test test2 oracle@sys2:/apps/oracle/dba> rsync test test3 oracle@sys2:/apps/oracle/dba> ls test test2 test3 cannot rsync over network : oracle@sys1:/oracle> rcp nenxdba2:/apps/oracle/dba/test . <== this works o...
2003 Jan 20
0
Copy creates empty file then fails
...I'm only copying text files.) I tried using force create mode at 777 and it still fails. I mount the drive as mraynes, and that user owns the folder that I am trying to copy into. This is a before and after snapshot of the dos copy command # ls -ial total 6 5632 drwxrwxrwx 3 mraynes dba 512 Jan 20 13:11 . 2 drwxr-xr-x 4 root root 512 Jan 17 11:18 .. 11264 drwxrwxrwx 2 mraynes dba 512 Jan 20 14:26 csesched # ls -ial total 6 5632 drwxrwxrwx 3 mraynes dba 512 Jan 20 14:35 . 2 drwxr-xr-x 4 root root...
2004 Mar 10
1
coreutils-4.5.3-28 causing duplication?
...ilities perform as expected against non-OCFS volumes: $ rpm -q coreutils coreutils-4.5.3-27 # cat a 3 line test file. Works as expected $ cat /var/tmp/file line1 line2 line3 # copy that file. Works as expected $ cp /var/tmp/file /var/tmp/file2 $ ls -l /var/tmp/file* -rw-r--r-- 1 oracle dba 18 Mar 9 10:59 /var/tmp/file -rw-r--r-- 1 root root 18 Mar 10 09:09 /var/tmp/file2 ######################################################################## ##### But, after upgrading to 4.5.3-28, those same operations seem to be doing things twice: $ rpm -Uv coreutil...
2013 Apr 29
0
[JOBS] Entry-level-ish Rails Developer and DBA needed - Boston, MA
...ilities:** * · Maintain source code for Ruby on Rails application development · Identify, track, and fix bugs that our users encounter · Develop tools for interfacing with third party web applications · Develop new features in response to client needs and user feedback · Assist in day-to-day database management · Assist in the design of new MySQL database systems *Required Experience and Background:* · BS Computer Science or equivalent · Meticulous attention to detail · Experience developing and deploying web applic...
2010 Feb 13
2
Oracle Performance - ZFS vs UFS (Jason King)
...tics at the > OS level ). However perhaps now someone can implement the CR I filed > a long time ago to add ASM support to libfstyp.so that would allow > zfs, mkfs, format, etc. to identify ASM volumes =) While that would be nice, I would submit that if using ASM, usage becomes solely a DBA problem. From the OS level, as a system admin, I don''t really care?I refer any questions back to the DBA. They should have tools to deal with all that. OTOH, with more things stacked on more servers (zones, etc.) I might care if there''s a chance of whatever Oracle is doing affe...
2005 Sep 24
1
10gR2, oifcfg fails on ocfs2
...fact that ocfs2console apparently ignores nbd disks) mount says /dev/nbd1 on /opt/oradata/data1 type ocfs2 (rw,_netdev) on both nodes ls says (after runInstaller was started, so the files were created by the installer) [oracle@itchy ~]$ ls -lh /opt/oradata/data1 total 1.0K drwxr-xr-x 2 oracle dba 1.0K Sep 24 19:25 lost+found -rw-r----- 1 root dba 0 Sep 16 1971 ocr.dat -rw-r--r-- 1 oracle dba 0 Sep 16 1971 quorum The next task in runInstaller is the Cluster init with the configuration assistants, this is where oifcfg fails (according to $ORACLE_HOME/cfgtoollogs/configToolAllCo...
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