Refer to this Adobe Blog for solutions. In my particular case, upgrading the Intel HD video drivers from Intel website solved the problem.
http://blogs.adobe.com/flashplayer/2011/05/reported-issues-with-flash-player-10-3-and-internet-explorer-9.html
Thursday, May 26, 2011
Monday, May 16, 2011
How to move a Oracle Datafile to another partition
1) Query and write down the current location of the datafiles from the
2) Connect to SQL Plus as sysdba
3) Run the following commands from SQL Plus:
* SHUTDOWN IMMEDIATE
* HOST MOVE <<original location file>> <<new location file>>
* STARTUP MOUNT
* ALTER DATABASE RENAME FILE <<original file location obtained from step 1>> - (press enter after the dash)
> TO <<new file location>>; (the semicolon is important)
* ALTER DATABASE OPEN;
4) Repeat the initial query so you can verify that the the datafile has been renamed in the data dictionary
Note: file locations must be between apostrophes '...............'
V$DATAFILE
view: SELECT name FROM v$datafile;2) Connect to SQL Plus as sysdba
3) Run the following commands from SQL Plus:
* SHUTDOWN IMMEDIATE
* HOST MOVE <<original location file>> <<new location file>>
* STARTUP MOUNT
* ALTER DATABASE RENAME FILE <<original file location obtained from step 1>> - (press enter after the dash)
> TO <<new file location>>; (the semicolon is important)
* ALTER DATABASE OPEN;
4) Repeat the initial query so you can verify that the the datafile has been renamed in the data dictionary
Note: file locations must be between apostrophes '...............'
Monday, May 9, 2011
How do I shrink the sharepoint databases log file?
The following article worked for me with SQL Server 2008 R2
There are other articles with SQL commands that only work in previous versions of SQL Server. Truncate_Only has been deprecated by MS.
Subscribe to:
Posts (Atom)