What Are Symbolic Links When you create a shortcut for a file or folder, all you are doing is pointing it to that specific file or folder, nothing more. Symbolic…Continue readingHow to add Symbolic Link
Sometimes, Oracle SQL Developer display the date format as ‘DD-MM-YY’ although I changed the format on the preference. To change it manually on the session run following query. ALTER SESSION…Continue readingHow to change NLS Setting
These are the common case to use XCopy in windows. Copy folders and subfolders using Xcopy command in Windows: To move folders and subfolders in cmd, the most used command…Continue readingHow to use xcopy in windows.
You can use the net use command to map network drives persistently, here is an example: net use z: \\pcA\folderA /user:peter 123456 /p:yes z: drive letter name(A-Z) Eeter: user name…Continue readingHow to set drive on Command Prompt
Having the repository pattern provide these benefits: Increase Testability: Repository systems are good for testing. One reason is you can use dependency injection. You create an interface for the repository…Continue readingGeneric Repository for Entity Framework.
The syntax for the CREATE TABLE AS statement that copies all of the columns in Oracle/PLSQL is: CREATE TABLE new_table AS (SELECT * FROM old_table); Example Let’s look at a…Continue readingOracle / PLSQL: CREATE TABLE AS Statement