Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > Pgsql General

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-09-2008, 11:18 PM
Erik Jones
 
Posts: n/a
Default WARNINGs after starting backup server created with PITR

I recently started up a server created using PITR (exact detail
below) and received about 125 of these type of errors spanning pages
in about 10 different tables:

2008-01-17 21:47:34 CST 7598 :WARNING: relation "table_name" page
5728 is uninitialized --- fixing

Looking in the archives I found this thread: http://
archives.postgresql.org/pgsql-general/2007-10/msg01538.php. However,
in that case he wasn't taking the base backup from the primary server
(which I did) and the actual warning was never explained by anybody
as to what it means, does it entail a botched backup?

This backup was made using rsync across co-locations, so before
actually running pg_start_backup and the actual PITR rsync run, we
ran rsync a couple times over a few days to shorten the amount of
time for the main rsync run. Sometime after the standby was current
we had an issue where a WAL file wasn't successfully archived to the
standby server (even though rsync apparently reported that it was as
seen in the successful archive message in the primary server's log),
so I stopped the standby and re-ran the backup process:
pg_start_backup('standby') -> rsync primary to standby ->
pg_stop_backup() -> start standby in recovery mode. At that point,
once the standby was again "caught up" with the most recently shipped
WAL file, I brought it out of recovery mode to run a dump. It was
once it was out of recovery that those warnings appeared.

Is this backup screwed?

Erik Jones

DBA | EmmaŽ
erik@myemma.com
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com




---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-09-2008, 11:18 PM
Tom Lane
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR

Erik Jones <erik@myemma.com> writes:
> I recently started up a server created using PITR (exact detail
> below) and received about 125 of these type of errors spanning pages
> in about 10 different tables:


> 2008-01-17 21:47:34 CST 7598 :WARNING: relation "table_name" page
> 5728 is uninitialized --- fixing


If you do a vacuum on the master, do you get the same warnings?

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-09-2008, 11:18 PM
Erik Jones
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR


On Jan 18, 2008, at 3:17 PM, Tom Lane wrote:

> Erik Jones <erik@myemma.com> writes:
>> I recently started up a server created using PITR (exact detail
>> below) and received about 125 of these type of errors spanning pages
>> in about 10 different tables:

>
>> 2008-01-17 21:47:34 CST 7598 :WARNING: relation "table_name" page
>> 5728 is uninitialized --- fixing

>
> If you do a vacuum on the master, do you get the same warnings?


/me runs VACUUM VERBOSE on the two tables that would matter.

Nope. What worries me is, that since I have a verified case of rsync
thinking it had successfully transferred a WAL, the same may have
happened with these files during the base backup. Does that warning,
in fact, entail that there were catalog entries for those files, but
that the file was not there, and by "fixing" it the server just
created empty files?

Erik Jones

DBA | EmmaŽ
erik@myemma.com
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com




---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org/

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-09-2008, 11:18 PM
Brian Wipf
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR

On 18-Jan-08, at 2:32 PM, Erik Jones wrote:

> What worries me is, that since I have a verified case of rsync
> thinking it had successfully transferred a WAL, the same may have
> happened with these files during the base backup. Does that
> warning, in fact, entail that there were catalog entries for those
> files, but that the file was not there, and by "fixing" it the
> server just created empty files?


We archive WALs directly to an NFS mount. We once had a zero-byte WAL
file archived, which I believe was the result of a temporary issue
with the NFS mount. We had to perform a new base backup since the WAL
was deleted/reused by PG because it was told it was archived
successfully. It sounds similar to the problem you experienced. Do you
rsync to an NFS mount?

If this issue is occurring when archiving WALs, I agree that it could
be occurring when trying to get a base backup.

Brian Wipf
<brian@clickspace.com>


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-09-2008, 11:18 PM
Erik Jones
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR


On Jan 18, 2008, at 4:43 PM, Brian Wipf wrote:

> On 18-Jan-08, at 2:32 PM, Erik Jones wrote:
>
>> What worries me is, that since I have a verified case of rsync
>> thinking it had successfully transferred a WAL, the same may have
>> happened with these files during the base backup. Does that
>> warning, in fact, entail that there were catalog entries for those
>> files, but that the file was not there, and by "fixing" it the
>> server just created empty files?

>
> We archive WALs directly to an NFS mount. We once had a zero-byte
> WAL file archived, which I believe was the result of a temporary
> issue with the NFS mount. We had to perform a new base backup since
> the WAL was deleted/reused by PG because it was told it was
> archived successfully. It sounds similar to the problem you
> experienced. Do you rsync to an NFS mount?
>
> If this issue is occurring when archiving WALs, I agree that it
> could be occurring when trying to get a base backup.


For our primary, er, main, onsite standby server that's also what we
do. But, this was a co-location to co-location transfer so there was
no NFS mount, it was a direct rsync to the server at the other co-
location. For WAL files, I've already decided to write a WALShipper
utility that will handle shipping WALs to multiple standbys with
verfication, but for the base backup, this is distressing. We do
have the option to do the base backup to a portable USB drive and
then carry it to the second co-lo for now. But, pretty soon we're
going to be surpassing the available limits in portably drive
capacity unless we invest in tape drives.

Erik Jones

DBA | EmmaŽ
erik@myemma.com
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com




---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org/

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-09-2008, 11:18 PM
Robert Treat
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR

On Friday 18 January 2008 18:04, Erik Jones wrote:
> For our primary, er, main, onsite standby server that's also what we
> do. But, this was a co-location to co-location transfer so there was
> no NFS mount, it was a direct rsync to the server at the other co-
> location. For WAL files, I've already decided to write a WALShipper
> utility that will handle shipping WALs to multiple standbys with
> verfication, but for the base backup, this is distressing. We do
> have the option to do the base backup to a portable USB drive and
> then carry it to the second co-lo for now. But, pretty soon we're
> going to be surpassing the available limits in portably drive
> capacity unless we invest in tape drives.
>


Are you guys running ZFS yet? If so it's snapshot / cloning capabilities might
be the way to go.

--
Robert Treat
Build A Brighter LAMP :: Linux Apache {middleware} PostgreSQL

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 04-09-2008, 11:18 PM
Simon Riggs
 
Posts: n/a
Default Re: WARNINGs after starting backup server created withPITR

On Fri, 2008-01-18 at 19:58 -0500, Tom Lane wrote:
> In any case, 125 different zeroed pages is pretty hard to explain
> by such a mechanism (especially if they were scattered rather than
> in contiguous clumps).


Can you show us the messages, so we can understand the distribution of
the pages?

Are there different numbers of rows in the two tables? Just a select
count(*) might do, but any way you have of verifying data between the
two systems would be very useful.

The page numbers are identical between both systems, so use the
contrib/pageinspect get_raw_page() function to record the contents on
both systems before they diverge too much. (BTW, the final commit of
those tools seems to have removed the docs I wrote for the original
version and haven't been replaced with a README -- huh!?).

create table bad_blocks as select <blockid> as blockid,
get_raw_page(<relname>, <blockid>)::bytea as raw_page;

I've got a bad feeling about rsync. Mason's recent problems used rsync
and so far they are not properly explained, except as a hardware
problem.

--
Simon Riggs
2ndQuadrant http://www.2ndQuadrant.com


---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 04-09-2008, 11:18 PM
Tom Lane
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR

Simon Riggs <simon@2ndquadrant.com> writes:
> The page numbers are identical between both systems, so use the
> contrib/pageinspect get_raw_page() function to record the contents on
> both systems before they diverge too much. (BTW, the final commit of
> those tools seems to have removed the docs I wrote for the original
> version and haven't been replaced with a README -- huh!?).


You mean
http://developer.postgresql.org/pgdo...geinspect.html
?

But in any case that module doesn't exist in 8.2 or before, so
Erik would probably have a hard time using it.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-09-2008, 11:18 PM
Simon Riggs
 
Posts: n/a
Default Re: WARNINGs after starting backup server created withPITR

On Sat, 2008-01-19 at 11:51 -0500, Tom Lane wrote:
> Simon Riggs <simon@2ndquadrant.com> writes:
> > The page numbers are identical between both systems, so use the
> > contrib/pageinspect get_raw_page() function to record the contents on
> > both systems before they diverge too much. (BTW, the final commit of
> > those tools seems to have removed the docs I wrote for the original
> > version and haven't been replaced with a README -- huh!?).

>
> You mean
> http://developer.postgresql.org/pgdo...geinspect.html
> ?


Many thanks, I didn't realise we had done that.

> But in any case that module doesn't exist in 8.2 or before, so
> Erik would probably have a hard time using it.


If we can diagnose a bug by doing this, surely that is the right thing
to do? I think the versions wouldn't be that different anyway.

If we can find a row that is missing in the standby version then we will
have at least found a bullet hole.

--
Simon Riggs
2ndQuadrant http://www.2ndQuadrant.com


---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-09-2008, 11:18 PM
Erik Jones
 
Posts: n/a
Default Re: WARNINGs after starting backup server created with PITR


On Jan 19, 2008, at 2:26 AM, Simon Riggs wrote:

> On Fri, 2008-01-18 at 19:58 -0500, Tom Lane wrote:
>> In any case, 125 different zeroed pages is pretty hard to explain
>> by such a mechanism (especially if they were scattered rather than
>> in contiguous clumps).

>
> Can you show us the messages, so we can understand the distribution of
> the pages?
>
> Are there different numbers of rows in the two tables? Just a select
> count(*) might do, but any way you have of verifying data between the
> two systems would be very useful.
>
> The page numbers are identical between both systems, so use the
> contrib/pageinspect get_raw_page() function to record the contents on
> both systems before they diverge too much. (BTW, the final commit of
> those tools seems to have removed the docs I wrote for the original
> version and haven't been replaced with a README -- huh!?).
>
> create table bad_blocks as select <blockid> as blockid,
> get_raw_page(<relname>, <blockid>)::bytea as raw_page;
>
> I've got a bad feeling about rsync. Mason's recent problems used rsync
> and so far they are not properly explained, except as a hardware
> problem.



All of the warnings are below. For tables that had multiple warnings
they seem to be for consecutive pages. All of these tables were
seeing some pretty decent write traffic during the base backup which
took place Tuesday night. The good news, for us, is that none of the
queue tables matter -- that was transient data. For the other two
history tables, since the PITR recovery ended at 4:58 am Wednesday
morning when it ran up against the dropped WAL file they've already
seen a good amount of traffic. However, I've been able to verify
missing data by checking the newest timestamp field is older than
those in other tables that had no errors, finding differences of as
much as 11 hours.

If the page_inspect module would work with 8.2 I wouldn't have a
problem building and using it, I already do that with pg_standby.
But, with three days of traffic on these table in the production
server and, having already verified some missing data, I don't see
the point now. Let me know if it would work, though, so that in
future I'll be aware of an available tool a little sooner.

And, yes, rsync does seem to be suspect, especially given that I'm
not the only one who has reported issues when using it. So far,
though, we haven't had any issues when using it over local networks,
just between our co-locations. As I mentioned before, where WAL
shipping is concerned, this can be beaten with a more complete and
versatile WAL shipping solution which will be a new personal project
for me. For base backups, though, it's probably time to explore
other options here. Also, since iirc, rsync is mentioned directly in
at least one of the chapters dealing with PITR, it may be a good idea
to qualify it's usage with a warning to the effect that some people
have reported inconsistent results from it's use.

2008-01-17 17:34:57 CST 7598 :WARNING: relation
"userdata_4212_messages_queue" page 170 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1320 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1321 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1322 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1323 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1324 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1325 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1326 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1327 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1328 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1329 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1330 is uninitialized --- fixing
2008-01-17 17:44:48 CST 7598 :WARNING: relation
"userdata_12176_messages_queue" page 1331 is uninitialized --- fixing
2008-01-17 19:57:05 CST 7598 :WARNING: relation
"userdata_8520_messages_queue" page 90 is uninitialized --- fixing
2008-01-17 20:02:33 CST 7598 :WARNING: relation
"userdata_1708_messages_queue" page 262 is uninitialized --- fixing
2008-01-17 20:03:36 CST 7598 :WARNING: relation
"userdata_7496_messages_queue" page 145 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30712 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30713 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30714 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30715 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30716 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30717 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30718 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30719 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30720 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30721 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30722 is uninitialized --- fixing
2008-01-17 21:10:04 CST 7598 :WARNING: relation
"userdata_7829_messages_history" page 30723 is uninitialized --- fixing
2008-01-17 21:42:05 CST 7598 :WARNING: relation
"userdata_16498_messages_queue" page 159 is uninitialized --- fixing
2008-01-17 21:42:05 CST 7598 :WARNING: relation
"userdata_16498_messages_queue" page 160 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8491 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8492 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8493 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8494 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8495 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8496 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8497 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8498 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8499 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8500 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8501 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8502 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8503 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8504 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8505 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8506 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8507 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8508 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8509 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8510 is uninitialized --- fixing
2008-01-17 21:47:05 CST 7598 :WARNING: relation
"userdata_16649_messages_history" page 8511 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5671 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5672 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5673 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5674 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5675 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5676 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5677 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5678 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5679 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5680 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5681 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5682 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5683 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5684 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5685 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5686 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5687 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5688 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5689 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5690 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5691 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5692 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5693 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5694 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5695 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5696 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5697 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5698 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5699 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5700 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5701 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5702 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5703 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5704 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5705 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5706 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5707 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5708 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5709 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5710 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5711 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5712 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5713 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5714 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5715 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5716 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5717 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5718 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5719 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5720 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5721 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5722 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5723 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5724 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5725 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5726 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5727 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5728 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5729 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5730 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5731 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5732 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5733 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5734 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5735 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5736 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5737 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5738 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5739 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5740 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5741 is uninitialized --- fixing
2008-01-17 21:47:34 CST 7598 :WARNING: relation
"userdata_16649_messages_queue" page 5742 is uninitialized --- fixing
2008-01-17 22:09:35 CST 7598 :WARNING: relation
"userdata_14692_messages_queue" page 449 is uninitialized --- fixing
2008-01-17 22:17:49 CST 7598 :WARNING: relation
"userdata_15375_messages_queue" page 24 is uninitialized --- fixing

Erik Jones

DBA | EmmaŽ
erik@myemma.com
800.595.4401 or 615.292.5888
615.292.0777 (fax)

Emma helps organizations everywhere communicate & market in style.
Visit us online at http://www.myemma.com




---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 10:38 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238