2012年6月27日 星期三

SharePoint 2010 Installation issue: Cannot Login to Central Administration

Check on this:

  • UAC Enabled on the machine
    • Start => Administrator Tools => Server Manager => Configure IE ESC under Security Information.
  • User Account Control setting blocks the access.
    • Control Panel => User Accounts => User Accounts => Change user Account Control settings

2012年6月20日 星期三

Oracle: identifier 'UTL_FILE' must be declared

RUN SQL command:
grant execute on utl_file to public;

Oracle: create directory

Create directory:

create or replace directory [mydir] as ‘C:/temp’

Grant user:
grant read,write on directory [mydir] to [username]

List directory:
select * from dba_directories;