Sunday, November 23, 2014

wi fi host port

Using Windows' Command Prompt, you can create a virtual network and share it to provide internet access to other devices:
Launch a Command Prompt with Administrator privileges and enter the following command:

netsh wlan set hostednetwork mode=allow ssid=sanjay key=7359977215

Change the SSID value to choose a different name if you want, and use "key" to set a password. This will create a virtual network adapter.
Start the new virtual adapter by running the following command:

netsh wlan start hostednetwork

Go to the Control Panel and open up the Network and Sharing Center. You should see your new virtual adapter listed there (as shown in the screenshot above). Click the "Local Area Connection" link (or whatever shows up next to "Connections").
Click the Properties button in the window that appears.
Head to the Sharing tab and then check the "Allow other network users to connect through this computer's Internet connection" box.
Use the drop down menu to select the virtual network adaptor you've created.
Click OK followed by Close.

If you want to remove oracle manually. follow the following simple steps

If you want to remove oracle manually. follow the following simple steps.
1.              Remove oracle from Registry.
2.              Remove oracle installed folder.
3.              Remove oracle from folder from program file or program files (x86)
4.              Remove oracle services.


Setps
Ø   Press Windows key + R
Description: D:\web host  self pripaid\run.jpg
Then type
Ø   services.msc

Open the Dialog box show all the  services
Then show oracle services

Description: D:\web host  self pripaid\set services automatic 1.jpg

Description: D:\web host  self pripaid\set services automatic 2.jpg
This services  you are find  specific secvices after choose a remove services name


Press windows key  and search regedit.exe
Description: D:\web host  self pripaid\find regedit 1.jpg
OR
Press windows key + R and type regedit.exe
Description: D:\web host  self pripaid\regedit 1.jpg

Ø  Remove oracle key from HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services.

 

 

Description: D:\web host  self pripaid\registry edit 2 .jpg

 

 

 

Delete each oracle key independently.

Description: D:\web host  self pripaid\registry edit 3.jpg

 

 

 

 

Ø  Remove folder where oracle is installed. Oracle 10g generally installed with the name oracle.

Ø   Remove oracle folder from program files or program files (x86).
8. Now you have manually uninstalled Oracle 10g from your PC.

 

Ø  Restart your PC.

Ø  Then reinstall oracle data base. software

 



WiFi connection

 Know if your neighbours are stealing your WiFi connection
command prompt codesCommand Prompt can let you know if someone is connected to your Local Area Connection and using it. Just follow the steps:-
1) Open your browser and visit http://192.168.1.1 or http://192.168.0.1 depending on your router.
2) Find the tab that mentions “Attached Devices” or something similar.
3) Find the computer name, IP address and MAC Address (sometimes called Physical Address or Hardware Address) of your computer using the previous trick.
4 )Compare it with those displayed by your router in Step 2. If you notice some strange devices, then your neighbour has been sneaking in on your internet connection and it is best to add a password.





What are Cursors?

What are Cursors?
A cursor is a temporary work area created in the system memory when a SQL statement is executed. A cursor contains information on a select statement and the rows of data accessed by it. This temporary work area is used to store the data retrieved from the database, and manipulate this data. A cursor can hold more than one row, but can process only one row at a time. The set of rows the cursor holds is called the active set.
There are two types of cursors in PL/SQL:
Implicit cursors:
These are created by default when DML statements like, INSERT, UPDATE, and DELETE statements are executed. They are also created when a SELECT statement that returns just one row is executed.
Explicit cursors:

They must be created when you are executing a SELECT statement that returns more than one row. Even though the cursor stores multiple records, only one record can be processed at a time, which is called as current row. When you fetch a row the current row position moves to next row. 

data structure

A data structureis an organized collection of data with specific aggregate properties

An algorithmis a sequence of program instructions designed to compute a particular result