我想详细说明数据库实例如何找到密码文件?按名字?由于通过命令orapwd创建了密码文件,我们仅指示文件名中的SID。或者是否存在关联数据库实例和密码文件的某种机制?
实例是否尝试使用remote_login_passwordfile ='EXCLUSIVE'从另一个副本访问密码文件?谁跟踪?
答案 0 :(得分:0)
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
// todo: goto back activity from here
Intent intent = new Intent(CurrentActivity.this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}