Wednesday, March 9, 2011
Life
Allthings in life are temporary. If going is well, enjoy it they will not last forever. If going is wrong don’t worry, they can't last long either.
Friends Message
Old friends are like Gold! New friends are Diamonds! If you get a Diamond, don't forget the Gold! Because to hold a Diamond, you always need a base of Gold!
Tuesday, March 8, 2011
Hexaware - 2010 Freshers Off Campus Recruitment Drive
Dear All,
We are planning to recruit fresher passed out in year 2010 in the following streams with a consistent academic performance of 60% or more, for joining in Q1 and Q2 of 2011.
1. MCA
2. BE/BTech degree holders in the following branches.
CSE,IT,ECE,EEE,EIE/ICE
You may please ask candidates to send mails to the following email address as per the following format. Mails must be sent from the candidate’s email ids.
Mail id to which mails must sent: freshers2010mar11@hexaware.com <mailto:freshers2010mar11@ hexaware.com>
Subject : Degree (Branch ): Avg marks in degree: Avg marks in Higher Secondary Course: Avg marks in Secondary School course
Mail content to contain the following:
Candidate’s name:
Date of birth :
Mobile phone no. :
Email id:
Venue details will be communicated to the shortlisted candidates directly.
Please note that these referrals will not be entitled for any Buddy Incentives.
Regards,
Nazar
Human Resources
Extn - 51732
______________________________ __
Please do not print this email unless it is absolutely necessary.
______________________________ __
Please do not print this email unless it is absolutely necessary.
This e-mail communication and any attachments to it are confidential and privileged to Hexaware and are strictly intended only for the personal and confidential use of the designated recipient(s) named above. If you are not the intended recipient of this message, you are hereby notified that any review, dissemination, distribution or copying of this message is strictly prohibited and may be unlawful.
Please notify the sender immediately and destroy all copies of this message along with all attachments thereto.
We are planning to recruit fresher passed out in year 2010 in the following streams with a consistent academic performance of 60% or more, for joining in Q1 and Q2 of 2011.
1. MCA
2. BE/BTech degree holders in the following branches.
CSE,IT,ECE,EEE,EIE/ICE
You may please ask candidates to send mails to the following email address as per the following format. Mails must be sent from the candidate’s email ids.
Mail id to which mails must sent: freshers2010mar11@hexaware.com
Subject : Degree (Branch ): Avg marks in degree: Avg marks in Higher Secondary Course: Avg marks in Secondary School course
Mail content to contain the following:
Candidate’s name:
Date of birth :
Mobile phone no. :
Email id:
Venue details will be communicated to the shortlisted candidates directly.
Please note that these referrals will not be entitled for any Buddy Incentives.
Regards,
Nazar
Human Resources
Extn - 51732
______________________________
Please do not print this email unless it is absolutely necessary.
______________________________
Please do not print this email unless it is absolutely necessary.
This e-mail communication and any attachments to it are confidential and privileged to Hexaware and are strictly intended only for the personal and confidential use of the designated recipient(s) named above. If you are not the intended recipient of this message, you are hereby notified that any review, dissemination, distribution or copying of this message is strictly prohibited and may be unlawful.
Please notify the sender immediately and destroy all copies of this message along with all attachments thereto.
Monday, March 7, 2011
Railway Protection Force(RPF) Constable Recruitment-2011 (11952 Vacancies)
Applications are invited from eligible Indian Male and Female candidates for filling up the post of Constable (11952Vaccancies ) in the Railway Protection Force (RPF) including Railway Protection Special Force (RPSF), under Ministry of Railways, Govt of India.Name of the Post: Constable (Male and Female)
Total No of Vacancies: 11952
Age Limit: 18-25 yrs as on 01.07.2011
Pay Scale: Rs. 5200 – 20200 + Grade Pay Rs. 2000/-
Qualification: Matriculation or Equivalent examination conducted by recognized board.
Examination Fee: Rs.40 is payable in the form of a crossed Indian Postal Order or a crossed Bank Draft. No fee for SC/ST categories.
Click on the below image for more details.
Difference between stored procedure and functions in SQL Server
1. Functions are compiled and executed at run time.
Stored procedures are stored in parsed and compiled format in the database.
2. Functions cannot affect the state of the database which means we cannot perform insert,delete,update and create operations on the database.
Stored Procedures can affect the state of the database by using insert,delete,update and create operations.
3 Functions are basically used to compute values. We passes some parameters to functions as input and then it performs some operations on the parameter and return output.
Stored procedures are basically used to process the task.
4.Function can not change server environment and our operating system environment.
Stored procedures can change server environment and our operating system environment.
5.Functions can not be invoked from SQL Statements. Execute. SELECT
operating system can be invoked from SQL Statements. Execute. SELECT
6.Functions can run an executable file from SQL SELECT or an action query.
operating system use Execute or Exec to run
Stored procedures are stored in parsed and compiled format in the database.
2. Functions cannot affect the state of the database which means we cannot perform insert,delete,update and create operations on the database.
Stored Procedures can affect the state of the database by using insert,delete,update and create operations.
3 Functions are basically used to compute values. We passes some parameters to functions as input and then it performs some operations on the parameter and return output.
Stored procedures are basically used to process the task.
4.Function can not change server environment and our operating system environment.
Stored procedures can change server environment and our operating system environment.
5.Functions can not be invoked from SQL Statements. Execute. SELECT
operating system can be invoked from SQL Statements. Execute. SELECT
6.Functions can run an executable file from SQL SELECT or an action query.
operating system use Execute or Exec to run
What is table-space in DB
A tablespace is a logical group of data files in a database. A database typically contains at least one tablespace, and usually two or more. Within the database, the tablespace plays a role similar to that of a folder on the hard drive of a computer.
What is the difference between Execute Scalar and Execute Reader?
Execute Reader..
1.Returns a datareader with data.
2.It is done by command object.
3.It is readonly.
4.It executes only select command.
5. This is known as a forward-only retrieval of records.It uses your sql statement to read through the table from the first to the last.
Execute NonQuery..
1.It will not return any data.
2.It is used with insert and update.
3.It returns only the number of rows affected.
Execute Scaler..
1.It returns only one value.
2.That value will the first column first row value.
Execute Query..
1.Its for command objects.
2.It returns the value given by database through select statement.
1.Returns a datareader with data.
2.It is done by command object.
3.It is readonly.
4.It executes only select command.
5. This is known as a forward-only retrieval of records.It uses your sql statement to read through the table from the first to the last.
Execute NonQuery..
1.It will not return any data.
2.It is used with insert and update.
3.It returns only the number of rows affected.
Execute Scaler..
1.It returns only one value.
2.That value will the first column first row value.
Execute Query..
1.Its for command objects.
2.It returns the value given by database through select statement.
Difference between Web.Config and Machine.Config File
Machine.Config:-
1) This is automatically installed when you install Visual Studio. Net.
2) This is also called machine level configuration file.
3)Only one machine.config file exists on a server.
4) This file is at the highest level in the configuration hierarchy.
Web.Config:-
1) This is automatically created when you create an ASP.Net web application project.
2) This is also called application level configuration file.
3)This file inherits setting from the machine.config











