Monday, January 30, 2012

Creating Exe in C# and Deploying sql server with exe

http://balanagaraj.wordpress.com/2007/05/29/create-exe-or-setup-file-in-net-windows-application/

Monday, January 23, 2012

My RESUME




Er. Gourav Khanna

Mobile No: +91-9988124581
 
gauravkhanna1058@yahoo.co.in
gauravkhanna1058@gmail.com




Objective



To seek the challenging position in Software
development industry that needs innovation, creativity, dedication and
enable me to continue to work in a challenging and fast paced environment,
leveraging my current knowledge and fostering creativity with many
learning opportunities.

Summary


Total 3 years of competitive experience in IT industry (Dot Net, SQL server 2008,2000)        
 and 6 month of industrial training experience.


Experience of working in the Software development life cycle involving
development, documentation and maintenance.
·     
Good work ethics with good
communication and interpersonal skills.
·       
Capable to delve into the new leading Technologies.
    Ability to work well in both a team environment and individual environment.

 


Technical Skills


Web Technologies

Visual
Studio-2010,Visual Studio-2008,Visual Studio-2005,JavaScript,Sql 2008

Advance Technology

Basic knowledge of Silverlight, WPF,
WCF ,MVC Architecture



Languages

C#.Net, JavaScript, JQuery , Html ,
Css



Databases

SQL Server 2008,2005,2000
Operating Systems

Windows 2000/98/XP

 
Experience Summary




 


     Total IT
Experience: 3 Years


 

·       

Total IT Experience of 3 Months in Software
Industry.

·       

Experience in ASP.Net using C# & VB Language,
JavaScript, SQL Server 2000, 2005, 2008.


 

 



Work Experience





 

§ 


Currently

working with Gray Cell Technologies
Exports, Chandigarh
as Software Engineer from
April 3rd, 2010

§ 

Worked as Software Engineer in
Intiger.com
, Chandigarh from
August 1st, 2009.   


 

 


Professional Experience:



MoveForFree



Website




Environment


ASP.NET 2.0, C#.Net, JavaScript, JQuery, Custom Ajax

 



Database


SQL Server 2000



Role


Team Work



Team Size


6


Responsibilities

Web developer.



Description
:
MoveForFree.com began advertising in June of 2000 and very quickly became
the fastest growing locator service in the country. Website provides services in
Dallas, Fort Worth, Houston, Austin, Atlanta and San Antonio and represents
thousands of apartment communities across the country. Moveforfree.com’s
services are similar to a traditional apartment locating service. However,
website provides a free move unlike any of our traditional apartment locating
competitors. Website provides users with up to date information on properties
including prices, floor plans, amenities and policies.





Quote Builder



Website




Environment


ASP.Net 3.5, C# Language, JavaScript

 



Database

MYSQL



Role


Team Work



Team Size


4


Responsibilities

Web developer.


Description
:
Quote builder is a secure FBI website which sells camera and other parts
including hardware and cameras  depends on
their user roles.
Their goal is to enhance security
enforcement on all levels.


 

National vehicle location service




Website

secure



Environment


ASP.Net 3.5,C# Language, JavaScript

 



Database

SQL Server 2008



Role


Team Work



Team Size


4


Responsibilities

Web developer.


Description
:
NVLS is also a secure FBI site  which
is
Detects and records


license plate numbers on moving cars, and compares them in real-time to
"Hot-List" data to offer alarms where and when needed - specifically for
proactive security.

 


 Nancarrow realty group




Website


http://www.nancarrowrealtygroup.com/



Environment


ASP.Net with C# Language, JavaScript,Bing Map API’s

 



Database

SQL Server 2005



Role


Team Work



Team Size





Responsibilities

Involved in
Bing Map API’s Implementation


Description
:
A real estate website using Bing maps Api’s

 


Vision Dream board system




Desktop




Environment


WPF using c#, xml

 



Database

SQL Server 2008



Role


Team Work



Team Size


5


Responsibilities



 


Description : -


This project is a desktop application i.e. installer for creating/managing own
Image library, Video library and music library . Installer include creating some
predefined categories like Weath, Heath, Kids, Spritual, Relationship with the
functionality of creating own custom category. Installer also includes slide
show and run/create/save vision board by using WPF application development.

 



Carpooling System



Website




Environment


ASP.Net with C# Language, JavaScript, Google Map API’s

 



Database

SQL Server 2005



Role


Team Work



Team Size





Responsibilities

Involved in
Google Map API’s Implementation, Ajax Pro.


Description
:
mapmycarpool.com System includes sharing of vehicles in India. It implements powerful Google Map API’s to
show maps of different locations. Interaction between client side and server
side code using Ajax Pro. Facilities include live chat, storing of routes for
specific users, searching maps created by different-2 users.

 


College Website



Website

College Website.



Environment


ASP.Net with C# Language




Role


Individual


Responsibilities


Developer



Description
:

The objective of project is to redesign existing website by adding some new features
in existing site
.

 



CO-CURRICULAR ACTIVITIES




§ 

Created my own website i.e “www.videoonfacebook.com”

§ 

Participated in Blood donation camp organized in Office and College.

§ 

Sports Participation :

o   


Participated in Athletics Competition

o   


Inter College Cricket Player

 

 



Academic Credentials





Degree



  Year


Board/University

Percentage



Class


B.Tech (I.T)


  2009


Punjab

Technical University


75.00 %

  First Class



Intermediate


  2005


P.S.E.B.


57.00 %

  Second

class





10th


  2003


P.S.E.B.


75.00 %

  First

class










 

 

 

 

 

 

 

 



Personal Information:





Name



Gourav Khanna



Date Of Birth


15th April,1988



Languages Known


English, Hindi, Punjabi



Marital Status





Single



Hobbies


Reading Articles ,Surfing, Listening Music



Address

#1058/B, K.s.m Road,Rajpura

 



Email


 

                      

 

 

 

 

 

 

 

 

 

Wednesday, January 18, 2012

To find duplicate record in table

To find duplicate record in table
Query :

SELECT mff_id,
 COUNT(mff_id) AS NumOccurrences
FROM SmartMap
GROUP BY mff_id
HAVING ( COUNT(mff_id) > 1 )


Thanks