Sunday, 31 August 2014

Lyrics: Gulabi Aankhein Jo Teri Dekhi Md.Rafi

Gulabi Aankhein Jo Teri Dekhi (Md.Rafi) Movie/Album: The Train (1970) Music By: R. D. Burman Lyrics By: Anand Bakshi Performed By: Mohammed Rafi Gulaabi Aankhen Jo Teri Dekhi Sharaabi Yeh Dil Ho Gaya Sambhaalo Mujhko O Mere Yaaron Sambhalna...
READ MORE ...

Saturday, 30 August 2014

COMPUTER NETWORKS - VTU CSE/ISE CN LAB MANUAL

NETWORKS LABORATORY: CN LAB PROGRAMS FOR VTU CSE/ISE STUDENTS Subject Code : 06CSL77 IA Marks : 25 No. of Practical Hrs./ Week : 03 Exam Hours : 03 Total No. of Practical Hrs. : 42 Exam Marks : 50 Note: Student is required to solve one...
READ MORE ...

Friday, 29 August 2014

VTU: COMPUTER GRAPHICS LAB PROGRAMS FOR 6th SEM

COMPUTER GRAPHICS AND VISUALIZATION LABORATORY - VTU Subject Code : 06CSL67 IA Marks : 25No. of Practical Hrs./ Week : 03 Exam Hours : 03Total No. of Practical Hrs. : 42 Exam Marks : 50 DOWNLOAD PART - A IMPLEMENT THE FOLLOWING...
READ MORE ...

VTU CSE/ISE WEB PROGRAMMING LAB MANUAL

WEB PROGRAMMING LABORATORY 7th SEM Subject Code : 06CSL78 IA Marks : 25 No. of Practical Hrs./ Week : 03 Exam Hours : 03 Total No. of Practical Hrs. : 42 Exam Marks : 50 DOWNLOAD 1. Develop and demonstrate a XHTML document that...
READ MORE ...

Sunday, 24 August 2014

VTU CSE/ISE DBMS Lab Programs

 Database - DBMS Lab Manual - All Programs VTU 5 th Sem  Vtu Forum  SQL> create user username identified by password; SQL>create user santosh identified by manager SQL> grant connect, resource to username;  SQL> grant connect, resource to santosh; login with same account Program 1:  Consider the Insurance database given below. The primary keys are underlined and the data types...
READ MORE ...

Sunday, 17 August 2014

How to Increase Internet Speed using Google public DNS server

Very slow internet connection speed is common now a days, but you can make it faster using some DNS settings of your internet connection. Generally for connectivity we use Dynamic Host Protocol Configuration (DHCP) which assign dynamic IP...
READ MORE ...

Friday, 15 August 2014

How to Renew a Godaddy Domain Name before Expire

You must renew your domain name before it expire because after grace period Godaddy place your domain name in parked areas and it will cost much more than usual rates. Here you will learn how to renew domain step-by-step. Log in to...
READ MORE ...

Thursday, 14 August 2014

Lyrics: Tum Hi Ho by Arijit Singh - Aashiqui 2

Movie / Album: Aashiqui-2 Singer(s): Arijit Singh Lyricist(s): Mithoon Music composer: Ankit Tiwari, Mithoon, Jeet Ganguly, Music © T-Series Tum Hi Ho Lyrics Hum tere bin ab reh nahi sakte Tere bina kya wajood mera (x2) Tujhse...
READ MORE ...

Oracle: Recover Database Using RMAN Until a Log Sequence Number

In this scenario we will recover database using RMAN until a log sequence number SCN. First create a table called customers and count the number of rows. SQL> select count(*) from customers;   COUNT(*) ----------          4 SQL> alter system switch logfile; System altered. Check whether database is in archivelog mod or not. SQL> archive log list Database log mode      ...
READ MORE ...

Wednesday, 13 August 2014

Oracle: How to Get the DBID in NOMOUNT State

DBID is the most important parameter to restore and recover controlfile using Rman. You can easily find DBID in open state but what you will do in nomount stat. Steps to find DBID in NOMOUNT state: First, start the database in nomount state: SQL>startup nomount; Now set the label for identification of tracefile that will be generated during this process.  SQL>alter session set tracefile_identifier =santosh; Get...
READ MORE ...

Tuesday, 12 August 2014

RMAN-05541: No Archived Logs Found in Target Database

Issue: RMAN-05541: no archived logs found in target database. When performing a RMAN Database duplication, I get the following error: RMAN-03002: failure of Duplicate Db command at 07/30/2013 09:39:05 RMAN-05501: aborting duplication of...
READ MORE ...

Oracle: Find Default Permanent Tablespace using Database_Properties

To prevent people from accidentally having their own database objects in the SYSTEM tablespace Oracle introduced a default permanent tablespace because it is not healthy in terms of usability point of view to keep your own objects in SYSTEM tablespace. Every database users allocated a default permanent tablespace as USERS to store their own objects like tables and indexes. Sometimes Default Permanent Tablespace Set to a System...
READ MORE ...

Oracle: How to Find the Table Size

There are different ways to find table size in oracle, views associated to check size of tables are: DBA_EXTENTS USER_EXTENTS DBA_SEGMENTS Method 1: To find size of tables using view DBA_SEGMENTS: SQL> SELECT SEGMENT_NAME, SEGMENT_TYPE,...
READ MORE ...

Saturday, 9 August 2014

Oracle: Find Total Size of The Database

The size of the oracle database is the total size of the data files, redo log files and temp files that make up the tablespaces of the database. These details are found in the dba_extents view. Type the following lines at the SQL prompt: Method...
READ MORE ...

Sunday, 3 August 2014

Tere Hoke Rahenge Lyrics - Raja Natwarlal | Arijit Singh

Tere Hoke Rahenge Lyrics from movie Raja Natwarlal: The song Tere Hoke Rehengay is sung by Arijit Singh and music by uvan Shankar Raja. Song: Tere Hoke RehengayMovie: Raja Natwarlal (2014)Singer: Arijit SinghMusic: Yuvan Shankar RajaLyrics:...
READ MORE ...

Saturday, 2 August 2014

How to Make all Windows Version OS genuine using CMD

It is good prescription that you should always try to avoid pirated version of windows OS like WIN 7, 8, 8.1 etc., you must buy and use genuine operating system. Yes, there is no doubt that it cost much but after and all, it's all features...
READ MORE ...

Friday, 1 August 2014

How to Enable/Disable Archive Log Mode in 10g/11g

By default when you enter CREATE DATABASE statement, it is in noarchive log mode, to change the archiving mode of the database, use the ALTER DATABASE statement with the ARCHIVELOG or NOARCHIVELOG clause using administrator privileges (AS SYSDBA). By default, Oracle database store archive logs data into the flash recovery area. If you want to set  new location for archive logs, you can set using the parameter LOG_ARCHIVE_DEST_n...
READ MORE ...

Oracle: How to Find the Database ID (DBID)

Every Oracle database has it's unique identifier called DBID which is necessary in most critical situations like recovery from loss of all control file using rman autobackup. How to find Oracle DBID ? Method 1: You can easily find...
READ MORE ...

How to Restore/Recover Lost of Control File Using Rman

Oracle database maintain three copies of Controlfile at three different locations. There are some situations arises when you loses all your controlfile. So in this case how to restore and recover controlfile using RMAN autobackup option. One...
READ MORE ...