Sponsored Content
Full Discussion: Sun EBS Networker 7.3
Special Forums UNIX and Linux Applications Sun EBS Networker 7.3 Post 302194179 by Neo on Monday 12th of May 2008 11:34:12 AM
Old 05-12-2008
Seems the database is so large (relative to your I/O processing power) that the time it takes to back it up is so long that the database is updated in a way that affects the byte check, doesn't it?

Isn't this normal behavior with large DBs constrained by disk I/O?
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Legato Networker

Has anyone ever used Networker to backups a SunSolaris 5.4 system. I have all the my other OS on the network being backup except for the 5.4 systems. It's has to do with a daemon. So help me out this doesn't make any since> (3 Replies)
Discussion started by: aojmoj
3 Replies

2. HP-UX

Legato networker on hp-ux

Hello, Firstable I am new on hp-ux (well long time ago) I am more aix admin.... Legato networker is the tool backup use on the hp-ux. I don't know this tool and would like to know where to find some docs or training. My first question will be : when a system (hp-ux B.11.0) is backuped on a... (8 Replies)
Discussion started by: touny
8 Replies

3. UNIX for Dummies Questions & Answers

networker

hi all, I have just installed networker 7.3 on my HPUX machine, licenced and ready to go, however, when I try to load/inventory/label a type using the autochanger I am getting the following error: Cannot find attribute 'operation instance' for resource 'NSR jukebox'. When I check to see what... (1 Reply)
Discussion started by: macgre_r
1 Replies

4. Virtualization and Cloud Computing

How to grow an EBS Array at AWS

This process was collected by trial and error (mostly error) since most of the documents I found on the 'net were incomplete. The cookbook/walkthrough on how to grow an Array on EBS at AWS... # walkthrough by John Jones (jjones at cirrhus9 dot com) umount /dev/md0 mdadm --stop /dev/md0... (0 Replies)
Discussion started by: Habitual
0 Replies

5. UNIX for Dummies Questions & Answers

Legato networker 7.6

Hi ALl I have recently installed networker 7.6 on my solaris 10 host(V240). My bosses requirement was that the GUI was still availible (nwadmin). However on 7.6 there is no GUI and nwadmin does not exist. I have copied nwadmin over from the previous version of legato i had installed (6.2), and... (5 Replies)
Discussion started by: brian112
5 Replies

6. UNIX for Dummies Questions & Answers

Networker upgrade

Hi Guys, we are currently upgrading our networker to a newer version on newere hardware. We are currently running networker 6.1.2 adn are upgrading to Networker 7.6sp2. I was wondering if there was a way to migrate our indexes (so that from the old version(on E450) to the new version of... (0 Replies)
Discussion started by: brian112
0 Replies

7. AIX

Networker : LUS Passthrough driver

Hi. AIX 7.1, Networker 7.6.3. My system detect all drives, but a jbconfig sent me this message : "You must install the LUS SCSI passthrough driver" I have Atape driver 12.3.9 on my AIX. Tks (0 Replies)
Discussion started by: stephnane
0 Replies

8. UNIX and Linux Applications

Mod_proxy_html on Oracle EBS

Hi , I am trying to impliment mod_proxy and mod_proxy_html as a reverse proxy for oracle EBS. Everything is working fine except the submenu links (still pointing to the internal url) of the modules tree view. Please help me. Regards, Arumon (0 Replies)
Discussion started by: arumon
0 Replies

9. Shell Programming and Scripting

AWS Cloud EBS limit script!

Hi, I am trying to correct the following script to get total EBS usage from Amazon cloud. Can someone please help in correcting it. It appears that its not working properly. t=0; for i in `ec2-describe-volumes | grep VOLUME | grep standard | awk '{print $3}'`; do t=`expr $t + $i`; done;... (2 Replies)
Discussion started by: amar0000
2 Replies

10. Solaris

Legato Networker

Hi , I have a lot of Tape device with backups from solaris sparc servers. This tape are in Legato Networker Format and now I need access and search an old backup. I know that Legato needed a Server , but this server is wrong , this down long time ago. I have a Legato Networker Server/Client... (10 Replies)
Discussion started by: z0rtiz
10 Replies
PG_LO_CREATE(3) 														   PG_LO_CREATE(3)

pg_lo_create - Create a large object

SYNOPSIS
int pg_lo_create ([resource $connection], [mixed $object_id]) DESCRIPTION
int pg_lo_create (mixed $object_id) pg_lo_create(3) creates a large object and returns the $OID of the large object. PostgreSQL access modes INV_READ, INV_WRITE, and INV_AR- CHIVE are not supported, the object is created always with both read and write access. INV_ARCHIVE has been removed from PostgreSQL itself (version 6.3 and above). To use the large object interface, it is necessary to enclose it within a transaction block. Instead of using the large object interface (which has no access controls and is cumbersome to use), try PostgreSQL's $bytea column type and pg_escape_bytea(3). Note This function used to be called pg_locreate(3). PARAMETERS
o $connection - PostgreSQL database connection resource. When $connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(3) or pg_pconnect(3). o $object_id - If an $object_id is given the function will try to create a large object with this id, else a free object id is assigned by the server. The parameter was added in PHP 5.3 and relies on functionality that first appeared in PostgreSQL 8.1. RETURN VALUES
A large object $OID or FALSE on error. CHANGELOG
+--------+-------------------------------------+ |Version | | | | | | | Description | | | | +--------+-------------------------------------+ | 5.3.0 | | | | | | | The optional $object_id was added. | | | | +--------+-------------------------------------+ EXAMPLES
Example #1 pg_lo_create(3) example <?php $database = pg_connect("dbname=jacarta"); pg_query($database, "begin"); $oid = pg_lo_create($database); echo "$oid "; $handle = pg_lo_open($database, $oid, "w"); echo "$handle "; pg_lo_write($handle, "large object data"); pg_lo_close($handle); pg_query($database, "commit"); ?> PHP Documentation Group PG_LO_CREATE(3)
All times are GMT -4. The time now is 03:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy