Best Of
Re: ODA backup report and arhivelog auto backup
problem solved… I do not know why… but at least something worked…
Re: Maintenance schedule PUM content
Hi,
Documentation for PUM Image 53 once it will be available, will pe posted in the below document:
PeopleSoft Update Manager (PUM) Home Page (Doc ID 1641843.2) > PeopleSoft Update Image Home Pages
Regards,
Re: How does Oracle AP6350 SBC select local-policy used to route a call?
Hello
as already told u in the previous post LP-A is matching because To-address has priority over From-address , and in this case To-address is matching that ip address .
For this type of scenario what u can do is to configure cost=1 on LP-A , leaving cost=0 on LP-B , but I'm unaware of other type of traffic that u need to handle .
Cheers
Antonio
Re: ODA X11 new deployment
Hi Tamil,
Thanks for the feedback.
We have ascertained that 23ai is not supported on BM but only on DBsystems/KVM.
A cleanup has been done and re-create appliance but failed because of customer's NTP is not working.
Once the NTP is resolved, the appliance will be re-created.
Thanks for your support.
Thanks,
James.
Re: Enter Feedback Here for the EBS Support Analyzer Bundle Menu Tool - Note 1939637.1
Hi Surya,
I discussed your error with our DBA expert and he offered
Oracle 8i SQL*Plus limits
While the definitive maximum statement length in Oracle is limited by several factors including database configuration, available disk space, and memory, this article states that there is no fixed number. However, it is possible to list several relevant limits related to SQL*Plus in Oracle 8i:
Additionally, after each error in your log shows :
Package body created.
No errors.
INFO: Dependency File exited with status: 0
so I think you are safe to ignore these.
To be sure, confirm that you are able to run the TITLE: Inventory Counting Analyzer (one example) from the bundle and as a concurrent request.
Let me know if you see a different message if you encounter this error.
Cheers,
Bill.
Re: oracle patch downlaod error
I have the same, and my temporary fix is still : use another type of browser. You should always have at least 2 types of browsers (and one of them not Microsoft).
Re: Extend the record retention period of Session Monitor
Hi Shilpi,
Thank you. I followed the documentation and adjusted the settings. I’ll keep monitoring it for a while.
Re: How to work with the ActivityFilter class in Primavera P6 API Integration
// This will load all filters by type activity
EnterpriseLoadManager elm = session.getEnterpriseLoadManager();
BOIterator<ActivityFilter> boiActivityFilter = elm.loadActivityFilters(ActivityFilter.getAllFields(), "FilterType = 'VT_LWF_FILTER'", null);
while (boiActivityFilter.hasNext()) {
ActivityFilter filter = boiActivityFilter.next();
System.out.println("Filter Id: " + filter.getActivityFilterId());
System.out.println("Filter Name: " + filter.getActivityFilterName());
System.out.println("Filter Criteria: " + filter.getFilterCriteria());
System.out.println("Filter Type: " + filter.getFilterType());
System.out.println("Filter UserId: " + filter.getUserId());
System.out.println();
}
Types include:
- 'VT_RISK'
- 'VT_FILTER'
- 'VT_TMUSER_FILTER'
- 'VT_FILTER_STANDARD'
- 'VT_ASSIGNS_FILTER'
- 'VT_PROJECTS_FILTER'
- 'VT_PROJ_FILTER_STAND'
- 'VT_ASSIGNS_FILTER'
- 'VT_ASSGN_FILT_STAND'
- 'VT_LWF_FILTER'
- 'VT_ASSGN_LWF_FILTER'
- 'VT_PROJ_LWF_FILTER'
- 'VT_TM_ACT_FILTER'
- 'VT_TM_TS_FILTER'
- 'VT_TM_ACT_STAND'
- 'VT_TM_TS_STAND'
Filter information can be found in the following PMDB table:
select * from viewpref;
Re: How to work with the ActivityFilter class in Primavera P6 API Integration
// This will use a filter called 'API Activity Filter' to read activity data
EnterpriseLoadManager elm = session.getEnterpriseLoadManager();
BOIterator<ActivityFilter> boiActivityFilter = elm.loadActivityFilters(ActivityFilter.getAllFields(), "ActivityFilterName = 'API Activity Filter'", null);
if (boiActivityFilter.hasNext()) {
ActivityFilter filter = boiActivityFilter.next();
BOIterator<Activity> boiActivity = elm.loadActivities(Activity.getAllFields(), filter.getFilterCriteria(), null);
while (boiActivity.hasNext()) {
Activity activity = boiActivity.next();
System.out.println(activity.getId() + " " + activity.getName());
}
}
else {
System.out.println("No filter named 'API Activity Filter' found.");
}
Re: Split maxvalue subpartition into multiple subpartitions
In PL/SQL there should be no ";" at the end of the command.
Example:
create table t1
(
id number not null
)
partition by range (id)
(
partition t1_maxvalue values less than (maxvalue)
) ;
begin
execute immediate 'alter table t1 split partition t1_maxvalue into (partition p1 values less than (100), partition t1_maxvalue);'; —« semicolon
end;
/
begin
*
ERROR at line 1:
ORA-14126: only a <parallel clause> may follow description(s) of resulting partitions
ORA-06512: at line 2
begin
execute immediate 'alter table t1 split partition t1_maxvalue into (partition p1 values less than (100), partition t1_maxvalue)';
end;
/
PL/SQL procedure successfully completed.


