EO.clearEntityCache() does not force VO to requery data!

Hi,
I want to force all ViewObjects which are based on EntrityObject 'MyEO' to reload their RowSet from database.
Currently, it does not work with my solution:
class MyEOImpl{
public void afterCommit(TransactionEvent e) {
super.afterCommit(e);
e.getDBTransaction().clearEntityCache("MyEO");
My problem occurs when I create a new MyEO which should be available in each associated List-Of-Values VO, but it is still missing!
Clearing the entity cache whenever a MyEO is commited does not help.
Why does not all associated VOs requery their data because 'their' EOs are not available in memory?
Any hints are welcome, thanx.
Ciao Markus

still looking for some anwsers...
thanks,
Markus

Similar Messages

  • Why java does not force to declare atleast one abstract method

    hi,
    i can define an abstract class without declaring any abstract method in that class. But why wud i do this ? i mean when i have decided that a particular class should be inherited by other subclass and subclass should porvide implementation then there should be atleast one method in the abstract super class which requires implementation.
    All i want to know is why java does not force to declare atleast one abstract method in abstract class.
    there may be some situations where this restriction can create problem if it is like that then can anybody give some example.
    manish

    hi,
    i didn't get u.
    u r trying to say that i have an abstract class with
    only static methods then my questions is why wud
    declare such a class as 'abstract' class? because a
    static method can't be abstract also. Even then if
    somebody want to define such a class with only static
    methods then compiler should force him to declare
    atleast one abstract method which can be implemented
    by subclass, because as i said before if sumbody
    decide to define a class abstract then he wants that
    it should be inhereted but as u r saying a class with
    only static methods then it should not be an abstract
    class it can be a simple class.there's no functional reason, really... actually, factory-like classes are often defined the way Ceci described
    "abstract" only ensures that nobody can ever get an instance of that class (as a matter of fact, what would be the point of getting an instance, if no instance method exists ?)

  • Named Criteria created, but it does not show up in the Data Controls view

    Hello there,
    I wish to use a data-bound ADF Mobile ListView in one of the pages on the app. However, only entries of the underlying data that fulfill a certain condition shall be displayed in the list. The condition basically is an "Equals" test against a bind variable in the pageFlowScope. Therefore, I have created a corresponding Named Criteria for the data control - proceeded like described here:
    https://blogs.oracle.com/adf/entry/create_named_criteria_in_ejb
    The Named Criteria, in my case, has been created and saved, yet it does not show up in the Data Controls view of JDeveloper. Therefore, I cannot drag it on a UI element to use it.
    I only have the "Operations" folder where the quick guide above also shows a "Named Criteria" folder.
    Refreshing or restarting JDeveloper did not solve this.

    It was all taken care of by Gaurav Aggarwal
    He got me all fixed up, Thank you for your concern.
    Daniel Walters

  • HT1347 I have an mp3 DVD with episodes of Gunsmoke.  iTunes imports them, but does not sort them correctly by date or episode.  One file name is GS 52-04-26 001 Billy the Kid.mp3

    I have an mp3 DVD with episodes of Gunsmoke.  iTunes imports them, but does not sort them correctly by date or episode.  One file name is GS 52-04-26 001 Billy the Kid.mp3.  iTunes sorts them by month/day/year.  How can I fix that?

    The weird thing is, it worked before. I encoded all the videos previously and had them all listed and didn't encounter this problem, but I noticed I'd forgotten to decomb/detelecine the videos so I deleted everything and re-encoded it all. AFter filling the tags out and setting poster frames again I was thinking of making life easier by just pasting the same artwork for every episode, so I did, but didn't like the results so I deleted it again (I selected every video, used Get Info and pasted the artwork that way).
    I think it was after this that the problem started to occur. In any case I've been through every episode and made sure the name, series, episode and episode id fields are all filled in with incremental values and they are. I even made sure the Sort Name field was filled in on every video. But this didn't work either.
    So, thinking another restart was needed I deleted every video again. Re-encoded them all, again. Set the tags for every video and poster frame again. Finished it all off nicely, checked cover flow and was highly annoyed to find it was STILL showing the same two pieces of art work for every video as shown in that image I posted.
    Ultimately, I wouldn't care so much that cover flow is screwing up like this as I always intended to sort by program anyway so it would only ever display one piece of artwork for an entire series of videos, however where-as when it was working it picked the artwork for the first episode of a series to display, its instead picking one of the latter episodes. I can't seem to find any way of choosing what artwork I want displayed.

  • ODI 11g 11.1.1.7 with Win64 bit OS : Starange problem : Right click does not work for Create new data server in Topology.

    ODI 11g 11.1.1.7 with Win64 bit OS : Strange problem : Right click does not work for Create new data server in Topology.
    On right click nothing happens at all. I have  reinstall the ODI multiple times with right installer. issue persist.
    Please help.

    Hi,
    Did you use the generic installer or the win32 one ? You should use the former with Win64.
    You can also check that your version of Java is supported in the certification matrix.
    Regards,
    JeromeFr

  • Start screen does not exist in batch input data

    I'm using .NET Connector calling Rfc_Call_Transaction funtion throught a proxy, i stablished all the params as you can see in the code below, but i get the message cited in the subject 'Start screen does not exist in batch input data'.
    What do you think is happening? or Where can i get the samples needed for perform this type of request?
            private BDCDATA FillBDCDATA(string Program,
                                        string Dynbegin,
                                        string Dynpro,
                                        string Fnam,
                                        string Fval)
                BDCDATA st_DATA = new BDCDATA();
                st_DATA.Program = Program;
                st_DATA.Dynbegin = Dynbegin;
                st_DATA.Dynpro = Dynpro;
                st_DATA.Fnam = Fnam;
                st_DATA.Fval = Fval;
                return st_DATA;
            private void button3_Click(object sender, System.EventArgs e)
                SAPProxy proxy = null;
                try
                    proxy = new SAPProxy("ASHOST="  + txtHost.Text +
                        " SYSNR="  + txtSysnr.Text +
                        " CLIENT=" + txtMand.Text +
                        " LANG="   + txtLang.Text +
                        " USER="   + txtUser.Text +
                        " PASSWD=" + txtPass.Text);
                catch(Exception excpt)
                    txtMsg.Text = excpt.Message;
                if (proxy == null)
                    return;
                BDCDATATable tblBDCDATA = new BDCDATATable();
                MESSAGEINF infMessage = new MESSAGEINF();
                //BDCDATA st_DATA = new BDCDATA();
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA", "0111", "0111", "BDC_OKCODE", "/00"));
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA", "0111", "0111", "BPDY-BLDAT", "30.12.2004"));
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA", "0111", "0111", "BPDY-VERSN", "0"));
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA", "0111", "0111", "FMPS-FIKRS", "ente"));
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA", "0111", "0111", "BPDY-JAHR",  "2005"));
                proxy.Rfc_Call_Transaction("FM9J","", out infMessage, ref tblBDCDATA);
                txtMsg.Text = infMessage.Msgtx;

    Jose,
    I imagine you are passing, for the Dynbegin parameter of the private method FillBDCDATA, invalid values.
    Why don't you try this way:
    tblBDCDATA.Add(FillBDCDATA("SAPMKBUA", "X", "0111", " "," "));
    tblBDCDATA.Add(FillBDCDATA(" ", " ", " ", "BDC_OKCODE", "/00"));
    tblBDCDATA.Add(FillBDCDATA(" ", " ", " ", "BPDY-BLDAT", "30.12.2004"));
    tblBDCDATA.Add(FillBDCDATA(" ", " ", " ", "BPDY-VERSN", "0"));
    tblBDCDATA.Add(FillBDCDATA(" ", " ", " ", "FMPS-FIKRS", "ente"));
    tblBDCDATA.Add(FillBDCDATA(" ", " ", " ", "BPDY-JAHR", "2005"));
    I hope I could help you.
    Regards,
    Daniel Carvalho

  • J2sdk1.4.2_12 does not support the 64 bit data model

    Hi guys,
    I need support for instalation NW2004R1 for windows x64bit.
    in the step "define parameters" I need set JDK Directory, I setting C:\j2sdk1.4.2_12 and when click in botton next, I receive the message " The JDK installed in directory C:\j2sdk1.4.2_12 does not support the 64 bit data model. Choose a different JDK. "
    I search documents but not found.
    Anybody can help-me ???
    thanks
    Henrique Mattos.

    Hi,
    You can get more information related to your issue from
      service.sap.com
    https://sdlc2e.sun.com/ECom/EComActionServlet;jsessionid=606D9ABC1A37F8F6D7517A9B77ACA38B
    Regards
    Agasthuri Doss

  • The JDK installed in directory /usr/java14 does not support the 64 bit data

    I'm installing the Java Add-in for the ECC 60 SR1 and suddendly during the instalation of the module for the creation od the db schema I recive the error:
    "The JDK installed in directory /usr/java14 does not support the 64 bit data model"
    I'm using the JSDK 1.4_2 SR3 for AIX, and till now this JSDK was the rigth JSDK for the installation.
    What does it means ? DO I have to download the latest JSDK for AIX ?
    The only thing changed at Os level before of that error on the JSDK is the installation of the latest perating system patch, but I should be very surprised if there is a relation with the error I'm reciving now.
    Regards

    I do have the same problem. For me the java worked with AIX 5.2 but failed with AIX 5.3
    bash-2.05b# which java
    /usr/java14/.private142/bin/java
    bash-2.05b# java -fullversion
    java full version "J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)"
    bash-2.05b# uname -a
    AIX vcsaix101 2 5 00C888AC4C00
    bash-2.05b# which java
    /usr/java14/.private142/bin/java
    bash-2.05b# java -fullversion
    java full version "J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)"
    bash-2.05b# uname -a
    AIX vcsaix11 3 5 00C7690E4C00
    Any idea?
    Regards,
    Venkat

  • Facetime not working "the device to register does not have the correct access data"

    I can't use my facetime on my macbook anymore. I used it already a lot of times, but now I have to log in with my Apple ID (and password) before I can use it. After this it asks which emailadress I want to use to make and get calls. After choosing this, it states that "the device to register does not have the correct access data". I can also not change anything at the preferences of facetime, as it has become unclickable (probably because I am not logged in). What to do now?

    Create another standard user on your MB. I bet facetime will work from there. Unless you have replaced a motherboard and Apple forgot to flash your old serial number into it. Check serial number in About this mac. If it's not there it is your likely problem.
    There might be other problems. Have you tried checking with Apple?

  • Does not make sense in evaluating data using isnull(Command.name)

    Hi,
    Environment:
    Os - Windows 7
    Crystal report developed in CR2008 - .rpt developed and running successfully here with the same formula.
    VS2010
    CRforVS2010
    Does not make sense in evaluating data using isnull(Command.name)  function when the report is integrated into VS2010 using Crystal report for VS2010 (13.0.2).
    But the same report is running in crystal report 2008 (12.3.0.601)  report Dev environment when previewed.
    Please reply me ASAP.
    Thanks & Regards,
    Mani G.S.

    Thank you and are you using the MS SQL Native 10 drivers.
    And still need to know if you are using ODBC or OLE DB?
    Can you copy the SQL in and use the PUBS sample database? Or import the xtreme.mdb and use one those tables. You can get it from our sample reports:
    https://smpdl.sap-ag.de/~sapidp/012002523100005852352008E/cr_xi_xtreme_rep_smpl_en.zip
    Thanks again
    Don

  • Blog Archive Webpart Does Not List Posts When Publish Date is About early months,years in sharepoint 2013

    I create blog posts . Their publish date are different from now and their publish date are the early months. For example i create 30 blog bosts in 15.08.2014. But 10 blog posts' publish date is 15.04.2013,20 blog posts' publish date is 15.03.2012. I can
    not see them in the blog archive part. There must be April 2013 and March 2012 in the archive part,but i can not see them.
    How can i see them in the blog archive webpart?
    When i create a blog post, what is the main issue about the date? What is the main issue about date about grouping them.
    How can i show the blog posts according to the publish date not create date? İs it possible?
    Can you help me please?

    It seems you created another thread for same issue. Let's wait for the response from original thread, instead of creating a new one.
    http://social.msdn.microsoft.com/Forums/en-US/2a3f7d99-c74b-4554-94bf-e597a88b5425/blog-archive-webpart-does-not-list-posts-when-publish-date-is-about-early-monthsyears-in-sharepoint?forum=sharepointcustomization
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Chaning headers in Xcode 1.5 does not force recompile

    I have a problem with Xcode not recompiling source files when one of its headers that it includes gets changed. I have had this problem before but I have never been able to fix it. I looked over at IDevGames and people have had the same problem but never got it fixed. It gets quite annoying when you figure out the bug you have been trying to fix for the last hour was a problem compiling. It is easy to fix if you edit one file and then you notice if it isn't compiling, but when you are working on multiple files you don't notice as much. The only fix I can find is to edit the source file that includes the file, but that does not always work so I have to do a clean build which takes up a lot of time. I have Predictive Compiling turned off so this is not the problem. Does anyone know how I can fix this?
    Thanks,
    vbuser

    No this is not a system header. It is a custom header that is included in the project. It normally works correctly recompiling when I change a header, but sometimes something happens to the project and all of a sudden it will not recompile when I change the header that I am including in my source files. I have tried creating a new project when this happened before but the problem seemed to come back quickly.

  • Wikiadmin does not seem to migrate wiki data

    I recently upgraded from lion server to mountain lion server. Wikis did not automatically migrate. I saved old wiki data in ~/server.library.backup/Wiki/ and I tried using wikiadmin to migrate the data:
    1. stop wiki service
    2. sudo wikiadmin migrate -r server.library.backup/Wiki/
    3. start wiki service
    Now there was something moved to:
    /Library/Server/Wiki/FileData
    [root@truffula]FileData# ls -l
    total 0
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 3d
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 50
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 c3
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 d1
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 e4
    drwxr-x---+ 3 _teamsserver  _teamsserver  102 Dec  6 10:10 fb
    However, it does not show up when I log into the wiki, and it is far too small
    original files du -h
    796M
    /Volumes/disk1/home1/kirkw/server.library.backup/Wiki/
    new files du -h
    96K
    Any advice on what to try next would be most appreciated. And by the way... I can create a new wiki, so I know that the sevice is working properly.
    Here is a copy of the output form running wikiadmin migrate:
    [kirkw@truffula]~$ sudo wikiadmin migrate -r server.library.backup/Wiki/
    Password:
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [main.m:189 72665180 +0ms] Repository location appears to be a relative path (server.library.backup/Wiki), prepending --sourceRoot ()
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [main.m:192 72665180 +0ms] Repository location is server.library.backup/Wiki
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [CSConfig:54 72665180 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:61 72665180 +4ms] -[PGCConnection connect] with [user=collab dbname=collab]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +5ms] Executing update [SET bytea_output TO escape]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT true FROM pg_attribute WHERE attrelid='global_settings'::regclass AND attname='value_int']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +4ms] Executing scalar query [SELECT value_int FROM global_settings WHERE key = 'com.apple.setting.schema_version']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:148 72665180 +0ms] Updating schema...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SELECT * FROM entity_acls WHERE entity_uid_fk = '19A307C1-82BC-45C7-845A-21839FB222C7']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT true FROM pg_attribute WHERE attrelid='global_settings'::regclass AND attname='value_int']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT value_int FROM global_settings WHERE key = 'com.apple.setting.schema_version']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:442 72665180 +0ms] Schema updates completed.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:770 72665180 +0ms] Migrating...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [SELECT uid FROM entity WHERE uid = $1::UUID OR tiny_id = $2 LIMIT 1] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb",
                  m5v217
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [SELECT * FROM user_entity LEFT OUTER JOIN entity ON user_entity.entity_uid_fk = entity.uid WHERE external_id = $1] with params [(
                  "FFFFEEEE-DDDD-CCCC-BBBB-AAAA00000000"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [UserMigrator:66 72665180 +0ms] found already migrated user 9762a4b8-713d-4336-a3a4-d24b84149828
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, long_name, ownedby_uid_fk, createdby_user_fk) VALUES ($1::UUID, $2, 'com.apple.entity.Migration', $3, $1::UUID, $4::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb",
                  m5v217,
                  20121206T102050,
                  "9762a4b8-713d-4336-a3a4-d24b84149828"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +5ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [INSERT INTO migration_entity (entity_uid_fk) VALUES ($1::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE master_entity_scratch_20121206T102050 AS SELECT * FROM entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +4ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [ALTER TABLE master_entity_scratch_20121206T102050 ADD COLUMN original_location varchar]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE document_entity_scratch_20121206T102050 AS SELECT * FROM document_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE page_entity_scratch_20121206T102050 AS SELECT * FROM page_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE user_entity_scratch_20121206T102050 AS SELECT * FROM user_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE project_entity_scratch_20121206T102050 AS SELECT * FROM project_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE blog_entity_scratch_20121206T102050 AS SELECT * FROM blog_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_attrs_scratch_20121206T102050 AS SELECT * FROM entity_attrs WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_private_attrs_scratch_20121206T102050 AS SELECT * FROM entity_private_attrs WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_acls_scratch_20121206T102050 AS SELECT * FROM entity_acls WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE file_entity_scratch_20121206T102050 AS SELECT * FROM file_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE file_data_entity_scratch_20121206T102050 AS SELECT * FROM filedata_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_changesets_scratch_20121206T102050 AS SELECT * FROM entity_changesets WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE entity_comment_scratch_20121206T102050 AS SELECT * FROM entity_comment WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE saved_query_entity_scratch_20121206T102050 AS SELECT * FROM savedquery_entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE relationship_scratch_20121206T102050 AS SELECT * FROM relationship WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +2ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [CREATE TABLE subscription_scratch_20121206T102050 AS SELECT * FROM subscription WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:776 72665180 +0ms] Migrating known users
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Warning>: [UserMigrator:269 72665180 +0ms] No Users directory found. Skipping.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:778 72665180 +0ms] Generating placeholders for all known pages and wikis
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Warning>: [ProjectMigrator:267 72665180 +0ms] No Groups directory found. Skipping.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:780 72665180 +0ms] Found 0 pages belonging to 0 wikis and 1 users.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:783 72665180 +0ms] Re-scanning 0 pages for pasted image/attachment URLs
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:536 72665180 +0ms] Copying content to real tables...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SET maintenance_work_mem TO '1GB']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [DELETE FROM migrationplaceholder_entity WHERE entity_uid_fk IN (SELECT uid FROM entity WHERE ownedby_uid_fk = $1::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:430 72665180 +0ms] Executing count query [DELETE FROM entity WHERE entity_type_fk = 'com.apple.entity.MigrationPlaceholder' AND ownedby_uid_fk = $1::UUID] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [UPDATE master_entity_scratch_20121206T102050 SET revision = 1 WHERE revision IS NULL]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [UPDATE master_entity_scratch_20121206T102050 SET is_hidden = false WHERE is_hidden IS NULL]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_blog_enabled) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_blog_enabled FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Project')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Blog')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO blog_entity (entity_uid_fk) (SELECT entity_uid_fk FROM blog_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, revision FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Page')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO document_entity (entity_uid_fk, original_location) (SELECT uid, original_location FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.Page')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO page_entity (entity_uid_fk, is_detail_page, is_blogpost) (SELECT entity_uid_fk, is_detail_page, is_blogpost FROM page_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO project_entity (entity_uid_fk, detail_page_fk) (SELECT entity_uid_fk, detail_page_fk FROM project_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.FileData')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO filedata_entity(entity_uid_fk, size, uti, content_type, data_uri) (SELECT entity_uid_fk, size, uti, content_type, data_uri FROM file_data_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity (uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden) (SELECT uid, tiny_id, entity_type_fk, short_name, long_name, description, create_time, update_time, createdby_user_fk, updatedby_user_fk, ownedby_uid_fk, owner_entity_type_fk, is_hidden FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.File')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO document_entity (entity_uid_fk, original_location) (SELECT uid, original_location FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk='com.apple.entity.File')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO file_entity (entity_uid_fk, content_type, data_uid_fk) (SELECT entity_uid_fk, content_type, data_uid_fk FROM file_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_changesets (uid, entity_uid_fk, entity_revision, change_user_fk, change_action, change_type, change_time, change_comment, change_fields, change_data_bin) (SELECT uid, entity_uid_fk, entity_revision, change_user_fk, change_action, change_type, change_time, change_comment, change_fields, change_data_bin FROM entity_changesets_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_attrs (entity_uid_fk, attrs_bin) (SELECT entity_uid_fk, attrs_bin FROM entity_attrs_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_private_attrs (entity_uid_fk, attrs_bin) (SELECT entity_uid_fk, attrs_bin FROM entity_private_attrs_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DELETE FROM entity_acls WHERE entity_uid_fk IN (SELECT entity_uid_fk FROM entity_acls_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_acls (entity_uid_fk, eval_order, login, external_id, action, allow) (SELECT entity_uid_fk, eval_order, login, external_id, action, allow FROM entity_acls_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_comment (uid, parent_uids, entity_uid_fk, title, body, author_user_fk, is_approved, approvedby_user_fk, approval_time, create_time) (SELECT uid, parent_uids, entity_uid_fk, title, body, author_user_fk, is_approved, approvedby_user_fk, approval_time, create_time FROM entity_comment_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO savedquery_entity (entity_uid_fk, query_bin) (SELECT entity_uid_fk, query_bin FROM saved_query_entity_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO relationship (uid, source_uid_fk, target_uid_fk, reltype, create_time) (SELECT uid, source_uid_fk, target_uid_fk, reltype, create_time FROM relationship_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO subscription (user_uid_fk, entity_uid_fk, notification_type) (SELECT user_uid_fk, entity_uid_fk, notification_type FROM subscription_scratch_20121206T102050)]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SELECT uid, avatar_uid_fk FROM master_entity_scratch_20121206T102050 WHERE entity_type_fk != 'com.apple.entity.User']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:641 72665180 +0ms] Destroying migration entity and scratch tables...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE master_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE document_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE page_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE user_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE project_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_attrs_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_private_attrs_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_acls_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE file_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE file_data_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE blog_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE saved_query_entity_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_changesets_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE entity_comment_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE relationship_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [DROP TABLE subscription_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [DELETE FROM migration_entity WHERE entity_uid_fk IN (SELECT uid FROM entity WHERE ownedby_uid_fk = $1::UUID)] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [DELETE FROM entity WHERE uid = $1::UUID] with params [(
                  "595b8ea9-1a99-4df2-95d9-6eafac83aecb"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +7ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:669 72665180 +0ms] Done
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_attrs (entity_uid_fk) (SELECT uid FROM entity WHERE uid NOT IN (SELECT entity_uid_fk FROM entity_attrs))]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [INSERT INTO entity_private_attrs (entity_uid_fk) (SELECT uid FROM entity WHERE uid NOT IN (SELECT entity_uid_fk FROM entity_private_attrs))]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [UPDATE entity SET is_hidden = true WHERE entity_type_fk = 'com.apple.entity.User' AND is_hidden = false AND (short_name = 'unauthenticated' OR short_name = 'authenticated')]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:793 72665180 +0ms] Importing user preferences
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSWorkerPool:151 72665180 +5ms] All workers finished, continuing
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:702 72665180 +0ms] Rebuilding search index...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +0ms] Executing query [SELECT true FROM entity WHERE false]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSConnectionPool:95 72665180 +1ms] Opening DB connection
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:61 72665180 +0ms] -[PGCConnection connect] with [dbname=collab application_name=wikiadmin client_encoding=utf-8 options='-c bytea_output=escape' user=collab]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:233 72665180 +2ms] Executing query [SELECT oid FROM pg_type WHERE typname='hstore']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [SELECT array_agg(uid::varchar) FROM entity]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [CREATE TABLE search_index_scratch_20121206T102050 AS SELECT * FROM search_index LIMIT 0]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +3ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=0
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSWorkerPool:151 72665180 +177ms] All workers finished, continuing
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:456 72665180 +0ms] Executing count query [SELECT true FROM search_index_scratch_20121206T102050 LIMIT 1]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [TRUNCATE TABLE search_index]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +3ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [INSERT INTO search_index SELECT * FROM search_index_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +6ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=139
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [DROP TABLE search_index_scratch_20121206T102050]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +3ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [SET maintenance_work_mem TO '1GB']
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [VACUUM FULL ANALYZE search_index]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +29ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [CSConnectionPool:291 72665180 +0ms] Closing DB connection
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:469 72665180 +0ms] -[PGCConnection close]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:469 72665180 +0ms] -[PGCConnection close]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:728 72665180 +0ms] Done
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [MigrationController:799 72665180 +0ms] Migration complete
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [BEGIN]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:457 72665180 +0ms] Running post-migration updates...
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:106 72665180 +0ms] Executing migration SQL script /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/sql/migra tions/36.sql
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [/**
               * Copyright (c) 2010-2012, Apple Inc. All rights reserved.
               * IMPORTANT NOTE: This file is licensed only for use on Apple-branded
               * computers and is subject to the terms and conditions of the Apple Software
               * License Agreement accompanying the package this file is a part of.
               * You may not port this file to another platform without Apple's written consent.
               * IMPORTANT NOTE: This file is licensed only for use with the Wiki Server feature
               * of the Apple Software and is subject to the terms and conditions of the Apple
               * Software License Agreement accompanying the package this file is part of.
              UPDATE entity e
                 SET blog_uid_fk=(SELECT uid FROM entity b WHERE b.ownedby_uid_fk=e.uid AND b.entity_type_fk='com.apple.entity.Blog' LIMIT 1)
               WHERE e.blog_uid_fk IS NULL
                 AND (e.entity_type_fk='com.apple.entity.User' OR e.entity_type_fk='com.apple.entity.Project')
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:106 72665180 +0ms] Executing migration SQL script /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/sql/migra tions/48.sql
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [/**
               * Copyright (c) 2010-2012, Apple Inc. All rights reserved.
               * IMPORTANT NOTE: This file is licensed only for use on Apple-branded
               * computers and is subject to the terms and conditions of the Apple Software
               * License Agreement accompanying the package this file is a part of.
               * You may not port this file to another platform without Apple's written consent.
               * IMPORTANT NOTE: This file is licensed only for use with the Wiki Server feature
               * of the Apple Software and is subject to the terms and conditions of the Apple
               * Software License Agreement accompanying the package this file is part of.
              INSERT INTO user_activity (user_uid_fk, action, entity_uid_fk, entity_revision, action_time, parent_uids, container_uid_fk)
                  SELECT cs.change_user_fk AS user_uid_fk,
                         CASE cs.change_type
                           WHEN 'create' THEN 'com.apple.activity.EntityCreated'
                           WHEN 'edit' THEN 'com.apple.activity.EntityUpdated'
                         END AS action,
                         cs.entity_uid_fk,
                         cs.entity_revision,
                         cs.change_time AS action_time,
                         e.parent_uids::uuid[],
                         e.container_uid_fk
                    FROM entity_changesets cs
                      LEFT OUTER JOIN entity e ON (e.uid=cs.entity_uid_fk)
                   WHERE cs.change_type IN ('create', 'edit')
                     AND e.uid IS NOT NULL
                     AND cs.change_user_fk NOT IN (SELECT uid FROM entity WHERE entity_type_fk='com.apple.entity.User' and short_name='serverhomeu')
                     AND NOT (cs.entity_uid_fk IN (SELECT entity_uid_fk FROM page_entity WHERE is_detail_page) AND cs.change_type='create')
                     AND e.entity_type_fk IN ('com.apple.entity.Page', 'com.apple.entity.File', 'com.apple.entity.Project')
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=3
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:118 72665180 +0ms] Executing migration block #58
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:205 72665180 +0ms] Executing query [INSERT INTO session (uid, user_uid_fk, auth_token) SELECT uuid_v4(), entity_uid_fk, $1 FROM user_entity WHERE external_id='unauthenticated' RETURNING uid] with params [(
                  "2v1V8rG49lJPGyKedAXCRwJUX8KV0wUcVM4jO9P136Q="
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:289 72665180 +0ms] Executing update [INSERT INTO preview_queue (entity_uid_fk, session_uid_fk) SELECT entity_uid_fk, $1 FROM page_entity] with params [(
                  "ce2c5184-4316-9868-0784-b78c2a54eaf1"
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=6
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:106 72665180 +0ms] Executing migration SQL script /Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/sql/migra tions/68.sql
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:388 72665180 +0ms] Executing scalar query [/**
               * Copyright (c) 2010-2012, Apple Inc. All rights reserved.
               * IMPORTANT NOTE: This file is licensed only for use on Apple-branded
               * computers and is subject to the terms and conditions of the Apple Software
               * License Agreement accompanying the package this file is a part of.
               * You may not port this file to another platform without Apple's written consent.
               * IMPORTANT NOTE: This file is licensed only for use with the Wiki Server feature
               * of the Apple Software and is subject to the terms and conditions of the Apple
               * Software License Agreement accompanying the package this file is part of.
              UPDATE entity e
                 SET blog_uid_fk=(SELECT uid FROM entity b WHERE b.ownedby_uid_fk=e.uid AND b.entity_type_fk='com.apple.entity.Blog' LIMIT 1)
               WHERE (e.blog_uid_fk IS NULL OR e.blog_uid_fk=e.uid)
                 AND (e.entity_type_fk='com.apple.entity.User' OR e.entity_type_fk='com.apple.entity.Project')
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +1ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=1
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:464 72665180 +0ms] Post-migration updates completed.
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [COMMIT]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Info>: [SchemaMigrator:469 72665180 +0ms] Performing a VACUUM FULL ANALYZE of user_activity
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:320 72665180 +0ms] Executing update [VACUUM FULL ANALYZE user_activity]
    Dec  6 10:20:50 truffula.fr.umn.edu wikiadmin[26344] <Debug>: [PGCConnection:181 72665180 +8ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    [kirkw@truffula]~$

    Hi,
    Interestingly, the same app seems to deploy to a stand alone OC4J(9.0.4)server without any problems. The version of 9ias that I'm working with is 9.0.3.1
    Thanks,
    David R

  • AR Down Payment Invoice Does Not Reflect in BP Master Data...

    We have placed a sales order for a BP. 
    We select payment means and accept the payment
      In the background a AP Down Payment Invoice is created
    When we view the BP master data - the account ballance window does NOT reflect this "down payment"
    If we select the golden arrow at account ballance, uncheck "reconciled transactions" you can see the payment and AP down payment and they clear each other out.
    The problem is that when the final invoice is created it is not obvious that a down payment has been received.  Even if you are simply working at the BP master data window, it is not obvious that a down payment has been received. I belive our process is correct because If you click the TDP box, the payment is listed and will be applied to the final invoice.
    It simply does not alert the user that a payment had been received. 
    What are we doing wrong?????\
    Thank you!
    Edited by: Andrew Bleier on Feb 4, 2009 1:27 AM

    Keith Taylor
    You are right this feature is only available in Version 2007A.  There account posting happen purely due to the pay SAP has been designed and the configuration of GL Accounts.
    To make fundametal change to the core product is very difficult if you explain me your business process exactly as you do, I could think of alternatives.
    Please let know.
    Suda

  • Field BSEG-HKTID does not exist in the additional data Screen

    Hi
    We are facing a problem while posting the parked document. Field BSEG-HKTID does not exist in the screen SAPLF040 0331.
    As we want to avoid entering the field-data at the time of payment proposal run using T.code F110, we prefer to enter at the time of posting a parked document or at the time of parking.
    We had checked the field status (of Posting key and GL) and its not available.
    We refered note 953374 House bank details: Account ID in the document. It asks to activate the RE-FX component. However, we are not in the real estate business hence not logical to do so. How do we need to proceed?
    PP

    To do the same change with the transaccion FB02 y FB03, create an enhancemente point in the program: SAPMF05L dynpro: 1301, module: DYNPRO_MODIFIKATION, at the of perform open_fi_dynpro_mod and write:
    LOOP AT SCREEN.
      IF sy-tcode = 'FB02'.
        IF screen-name = 'BSEG-HKTID'.
          screen-input = 1.
          screen-invisible = 0.
          screen-active = 1.
          screen-output = 1.
          screen-group4 = ' '.
          MODIFY SCREEN.
          EXIT.
        ENDIF.
      elseif sy-tcode = 'FB03'.
          IF screen-name = 'BSEG-HKTID'.
          screen-input = 0.
          screen-invisible = 0.
          screen-active = 1.
          screen-output = 1.
          screen-group4 = ' '.
          MODIFY SCREEN.
          EXIT.
        ENDIF.
      endif.
      ENDLOOP.
    and, all ready.

Maybe you are looking for