similar to: db2 is running out of shared memory

Displaying 20 results from an estimated 100 matches similar to: "db2 is running out of shared memory"

2020 Oct 23
0
Apache HTTPD not picking up environment variables.
On Fri, Oct 23, 2020 at 04:27:34PM +0000, Harold Pritchett wrote: > I'm trying to install DB2 on a CentOS 7 server. The problem I'm > seeing is that the Apache httpd server fails to pick up the db2 > environment variables. On an older version running under CentOS 5 > this was done by inserting the following lines into the httpd start > script in /etc/sysconfig/httpd: >
2020 Oct 23
2
Apache HTTPD not picking up environment variables.
I'm trying to install DB2 on a CentOS 7 server. The problem I'm seeing is that the Apache httpd server fails to pick up the db2 environment variables. On an older version running under CentOS 5 this was done by inserting the following lines into the httpd start script in /etc/sysconfig/httpd: if test -f /db2home/db2inst1/sqllib/db2profile; then . /db2home/db2inst1/sqllib/db2profile fi
2011 Aug 24
3
How to connect Ruby with MySQL (XAMPP)?
*Dear All:* I need your help on following points. 1. Can I connect Ruby with MySQL in XAMPP server? 2. Could someone tell me that how to connect MySQL with Ruby? I have XAMPP server installed and want to connect with ruby. I am using Ruby1.8.7. I tried following code: require ''rubygems'' require ''mysql'' begin # connect to the MySQL server
2008 Nov 26
3
MS-SQL Connection Problem
Hi, i?m trying to access a MSSQL server (in a windows machine in the network) from a Visual Basic Application running under wine, using an ODBC driver. Since there aren?t any MSSQL drivers for linux i decided to use de native ones, so i installed mdac_typ.exe . Then i configured the DSN using odbcad32.exe but when i tested the connection (configured using tcp/ip) an error message appeared
2006 Apr 11
1
Foxpro with MYSQL
G'day If I have VFP9 working, a Mysql DSN which I can contact via isql and using unixODBC for this. Do I need to do anything else to wine ie; install MySQL drivers (Windows version) to get connectivity? I just finished checking out Paul McNett's pages, however the MYSQL drivers he used for VFP8 are "no longer supported" when I do "wine setup.exe". I have a saved
2006 Sep 07
0
Need help with accessing MS SQL Server from Mac OS X
I am trying to get access to a Microsoft SQL Server 2k installation on my network. To this point I''m not having any luck. I''ve followed the instructions at http://wiki.rubyonrails.com/rails/pages/HowtoConnectToMicrosoftSQLServerFromRailsOnOSX up to the point where you run the iodbctest where I get an error. The errors are: iODBC Demonstration program This program shows an
2001 Oct 19
4
Exclude
Hi Folks, I'm running rsync between an NT client and a Solaris 7 Server (Ver 2.4.6). I'd like to be able to exclude the following directory: /opt/IBMHTTPDLOG/archivelogs but retrieve /opt/IBMHTTPDLOG My setup is: rsync -av -p -e rsync@server1.cna.com:/opt/IBMHTTPDLOG/ F:/opt/IBMHTTDLOG (client) rsync --daemon --exclude-from=/etc/rsync.exclude (server) What I get is
2016 Apr 14
0
How to optimize for IBM db2?
Hi. I have performance problems with IBM DB2 10.5 server on KVM guest: [db2inst1@wc8ws-auth ~]$ time db2 create db test DB20000I The CREATE DATABASE command completed successfully. real 7m46.155s user 0m0.022s sys 0m0.027s It takes 30 seconds to create a database on an image mounted with -oloop. I think it's because db2 uses O_DIRECT to ensure
2013 Oct 08
0
[LLVMdev] Subregister liveness tracking
What I didn't mention in r192119 is that mthi/lo clobbers the other sub-register only if the contents of hi and lo are produced by mult or other arithmetic instructions (div, madd, etc.) It doesn't have this side-effect if it is produced by another mthi/lo. So I don't think making mthi/lo clobber the other half would work. For example, this is an illegal sequence of instructions,
2013 Oct 08
2
[LLVMdev] Subregister liveness tracking
Currently it will always spill / restore the whole vreg but only spilling the parts that are actually live would be a nice addition in the future. Looking at r192119': if "mtlo" writes to $LO and sets $HI to an unpredictable value, then it should just have an additional (dead) def operand for $hi, shouldn't it? Greetings Matthias Am 10/8/13, 11:03 AM, schrieb Akira
2009 Jun 29
2
java application with db2 fail with:A communication error ..
I am new user of wine. I have centos 2.6.18-128.el5 x86_64 GNU/Linux and wine-1.0.1. I installed jre for windows in wine and run .bat program that run a java SWT application taht access a database db2. After running for a few moments an error is generated, this error occurs only under wine. DB2 use port 50000. Application.commit Text : [ibm][db2][jcc][t4][2030][11211] A communication
2006 Dec 14
1
re: different availability requirements for multiple ocfs2 volumes?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Folks, quick question. In our current 3 node RAC cluster we have 2 ocfs2 volumes setup. We have a volume for sharing oracle CRS files (ocr.crs and vote.crs) and a 2nd volume is going to be used to store backups and archivelogs. We will copy backups and archivelogs via RMAN from the flash recovery area, onto this volume .. and eventually gets
2009 Jul 22
1
Cannot generare SSPI context
OS: SUSE Linux Enterprise Desktop(SLED) 11 wine version installed on SLED11: samba-3.2.7-11.6.i586.rpm samba-client-3.2.7-11.6.i586.rpm samba-winbind-3.2.7-11.6.i586.rpm wine is also installed on SLED11: wine-1.1.26-1.1.i586.rpm MS SQL Server 2000 SP3 is a Member server. SLED11 is also a MS Active Directory Domain member/client Login as Administrator on the MS AD Domain from SLED11 run the
2009 Jan 09
1
shake rattle() and roll
Graham, nice package this :-)-O. It was easy to set up MySQL but I struggled immensely to get the stock ODBC working with PostgreSQL (8.3), which has been discussed on the mailing list before (Prof Brian): Warning messages: 1: In odbcDriverConnect(st, ...) : [RODBC] ERROR: Could not SQLDriverConnect 2: In odbcDriverConnect(st, ...) : ODBC connection failed aka (DBD::ODBC in Perl) Missing
2013 Oct 09
4
[LLVMdev] Subregister liveness tracking
On Oct 8, 2013, at 2:06 PM, Akira Hatanaka <ahatanak at gmail.com> wrote: > What I didn't mention in r192119 is that mthi/lo clobbers the other sub-register only if the contents of hi and lo are produced by mult or other arithmetic instructions (div, madd, etc.) It doesn't have this side-effect if it is produced by another mthi/lo. So I don't think making mthi/lo clobber the
2005 Feb 22
0
ocfs and DB_RECOVERY_FILE_DEST
what do you guys think about the best way to use DB_RECOVERY_FILE_DEST with ocfs? specifically, I'm wondering about archive logs... one thing i really like about using a flash recovery area it's space management features (after i copy my archivelogs to tape, it still keeps a copy around until it needs to reclaim the space) with ocfs v1 i've always wanted to give each node it's
2003 Dec 09
1
samba - sql server authentication
samba 2.2.8a/LDAP backend Red Hat 7.3 Windows 2000 server, connected to the samba controlled domain Sql Server 7.0 It seems that my sql server does not want to run scheduled jobs as a domain user, I am needing to do this for a network share that I am saving to, otherwise I would just run as SA Error from sql server: The job failed. Unable to determine if the owner (PRUPREF.COM\Administrator)
2012 Jun 14
0
[ocfs2-announce] OCFS2 1.4.10-1 released
All, We are pleased to announce the release of OCFS2 1.4.10-1 and OCFS2 tools 1.6.3-2 for Oracle Linux 5 Update 7 and higher and Redhat Enterprise Linux 5 Update 7 and higher. Oracle's Unbreakable Linux Network users who are subscribing to the "OCFS2 1.4 packages for Enterprise Linux 5" channel can upgrade to this release by running up2date. Red Hat's Enterprise Linux 5
2010 Apr 19
0
FW: [Ocfs2-announce] OCFS2 1.4.7-1 and OCFS2 Tools 1.4.4-1 released
Does this release also include what our DBA referenced below regarding indexed directories fix? Thanks,? ? George Burgos Linux Systems Administrator LPIC I/OCA-DBA Senior Systems Analyst Powell Industries, Inc. gburgos at powellind.com Tel:???????? (713)947-4493 Fax:??????? (713)943-1268 -----Original Message----- From: Hu, Linn Sent: Monday, April 19, 2010 1:20 PM To: OracleDBA; _LinuxAdmins
2004 Apr 21
1
Fwd: RE: OCFS Hang
Oh yeah - easy way to check, Randy: Next time your node hangs, get on the OTHER NODE and go into each directory where files are being opened (datafiles, archivelogs, controlefiles, redo logs, etc) and delete a file (you can create one first then delete it). If this causes the hung node to recover then you're having the same problem I was having. Jeremy >>> "Jeremy