Saturday, April 29, 2017
INSTALLING FIREFOX ON WINDOWS
Download the software from https://www.mozilla.org/en-US/firefox/new/
Right click on the setup file and click open
click run
In the welcome screen click next
In the setup Type screen select standard and click next
In the summary screen click install to continue the installation
click finish to compete the installation.
Right click on the setup file and click open
click run
In the welcome screen click next
In the setup Type screen select standard and click next
In the summary screen click install to continue the installation
click finish to compete the installation.
Wednesday, April 26, 2017
Tuesday, April 25, 2017
Installing Oracle 11g Client Database on Windows
Go to the Software folder and Right click on the Setup file and open with Run as Administrator
Select Administrator option
Click next
Select English and Click next
Specify the directory path to install and click next
Click Finish
Click Close to finish the installation.
Copy tnsnames.ora file from database server to the client into the C:\app\USER1\product\11.2.0\client_1\network\admin folder in order to establish connection between server and client databases.
Select Administrator option
Click next
Select English and Click next
Specify the directory path to install and click next
Click Finish
Click Close to finish the installation.
Copy tnsnames.ora file from database server to the client into the C:\app\USER1\product\11.2.0\client_1\network\admin folder in order to establish connection between server and client databases.
Important SQL Queries
Finding the user name of a Table:
select owner, table_name
from all_tables where table_name like 'Table_name';
select B.FILE_NAME from
dba_segments a, dba_data_files b
where
a.header_file=b.file_ID and segment_name='Table_Name';
Finding Tablespace name and their properties:
select TABLESPACE_NAME,
INITIAL_EXTENT, NEXT_EXTENT,
MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE, STATUS,
CONTENTS from
dba_tablespaces order by TABLESPACE_NAME;
Finding temporary table spaces:
SELECT TABLESPACE_NAME,
BYTES_USED, BYTES_FREE FROM V$TEMP_SPACE_HEADER;
Finding temporary tablespace of a user:
select
username,temporary_tablespace from dba_users where username like 'Table_Name';
Finding temporary tablespace file properties:
select * from
v$tempfile;
SELECT file_name, bytes,
status, autoextensible FROM dba_temp_files;
Finding default temp tablespace of the database:
SELECT * FROM
DATABASE_PROPERTIES where PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
Finding max size of the table spaces:
select tablespace_name,
max_size from dba_tablespaces;
Finding asm group disk information on database:
Properties of asm disk group:
select * from
v$asm_diskgroup;
Properties of asm file:
select * from
v$asm_file;
Properties of asm disk:
select * from
v$asm_disk;
Active operations on asm instance:
select * from
v$asm_operation;
Monitoring asm disk group:
SELECT
name group_name
, sector_size sector_size
, block_size block_size
, allocation_unit_size allocation_unit_size
, state state
, type type
, total_mb total_mb
, (total_mb - free_mb) used_mb
, ROUND((1- (free_mb / total_mb))*100,
2) pct_used
FROM
v$asm_diskgroup
ORDER BY
name
/
Monday, April 24, 2017
Browser not working but internet is connected
1) Click on Start -->
In search box, type cmd --> Then "CMD" will be displayed in the search --> Now right-click on "CMD" ---> Select "Run
as administrator".
2) Now run the below commands
2) Now run the below commands
netsh winsock reset (and)
netsh int ip reset resetlog.txt
Press "Enter".
3) Reboot your computer
Subscribe to:
Posts (Atom)
Opatch reports 'Cyclic Dependency Detected' error when patching ODI Issue: When applying a Patch Set Update (PSU) to WebLogic Se...
-
1. Creating a directory in hdfs $ hdfs dfs -mkdir <paths> 2. List the directories in hdfs $ hdfs dfs -l...
-
Getting the below error when installing oracle database 12c on linux machine Soft Limit: maximum stack size - This is a prerequisite con...
-
After configuring SSL with Custom Identity and Trust Keystores and when we try to start the servers getting the below error ...