Subscribe

Subscribe

Vladstudio

Fixing slow Save As problems.

Open RegEdit and go to :
HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers

and rename it to something like

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiersOLD

Bookmark and Share

How do you create Export/Import views

Run the “catexp.sql” as SYS. The file is located in $ORACLE_HOME/rdbms/admin.

SQL> @?/rdbms/admin/catexp.sql
Bookmark and Share

Renaming a SQL Server instance.


SQL> sp_dropserver 'oldservername';
SQL> sp_addserver 'newservername';

don’t run in same batch.
the two statements must be executed separately.

via sp_addserver Transact-SQL.

Bookmark and Share

How to turn on or off colors in bash

Type the following command for just this listing,
$ ls --color=none
Or remove the alias with the unalias command:
$ unalias ls

via How to turn on or off colors in bash.

Bookmark and Share

Moving an Oracle database to a newer Oracle home

Moving a database to a new oracle home, owned by a different user and running a newer version.

NOTE : This is how is worked in my environment. It might not work the same in your environment. This is meant as a guide only.

Continue reading Moving an Oracle database to a newer Oracle home

Bookmark and Share