Search Results

1
vote
4answers
775 views

Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?

I have a strange problem on a PeopleSoft application. It appears that integration broker messages are being processed out of order. There is another possibility, and that is that the commit is …
6
votes

Migrating from MySQL to PostgreSQL

I have done a similar conversion, but for different reasons. It was because we needed better ACID support, and the ability to have web users see the same data they could via other DB tools (one I …
2
votes

Update VERY LARGE PostgresQL database table efficiently

While you cannot likely fix the problem of space usage (it is temporary, just until a vacuum) you can probably really speed up the process in terms of clock time. The fact that PostgreSQL uses MV …
0
votes

Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?

I heard from GSC. We had two domains on the sending end as well as two domains on the receiving end. All were active. According to them, it is possible when you have multiple domains for each …
0
votes

SQL clone record with a unique index

You could create an insert trigger to do this, however, you would lose the ability to do an insert with an explicit ID. It would, instead, always use the value from the sequence. …
1
vote

Tool: ETL from an ODBC to SQL 05?

At least with the older versions of SQL Server, they shipped with DTS. Not the simplest, but it does work with ODBC and SQL Server, and you may already have it. …
3
votes

Indexed Views in OLTPs?

Materialized views can be useful for reporting against OLTP, especially is large numbers of rows are aggregated to get the results. The space requirements are completely dependent on how much dat …
0
votes

Is there a postgres fuzzy match faster than pg_trgm?

Depending on what you are looking for, Postgres can also do matches on regular expressions, instead of the standard "like" syntax. It may be a better fit for you. …