Oracle
Lab Questions
1.
Create
the table Dept based on following information.
Column
Name
Datatype
Length
Constraint
ID
Number
5
Primary
Key
Dept_name
Varchar2
50
Not
Null
CREATE
TABLE `Dept` (
`Id` int(5) NOT NULL,
`Dept_name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`Id`)
)
2.
Insert
the values in Dept table as follows.
ID
...
top ad
Friday, June 20, 2014
Monday, June 16, 2014
linux method to write practical
Aim of the ExperimentCreate a user Student and assign the password to P@ssw0rd.ObjectiveThe main objective of the experiment is to create a user and assign password. We need to use ‘useradd’ command, which is responsible for creating a new user or update default new user information.The ‘useradd’ command creates a new user account using the values specified on the command line and the values from the system. The new user account will be entered into the system files (/etc/passwd) as needed, the home directory (/home/username) will be created, and initial files copied, depending on the command...
Linux Practical
Linux Lab QuestionsCreate a user Student and assign the password to P@ssw0rd.Open terminal Switch user to root # su password: <root password>Synax: useradd <username>passwd <username>solution: # useradd Student# passwd Studentnew unix password : P@ssw0rdretype new unix password : P@ssw0rdDisplay the name of current working directory.Syntax : pwd# pwd/home/studentList all the files and directories in /etc file system.Syntax : ls <dir name># ls /etcList all the hidden files and directories in your home directory.Syntax : ls –a <dir...
Thursday, June 12, 2014
Subscribe to:
Posts (Atom)