Thursday, March 24, 2011

Dinesh Arya a student of HCL CDC Janakpuri found Big Activation Bug in WinRAR latest Version

Dinesh Arya a student of HCL CDC Janakpuri found Big Activation Bug in WinRAR latest Version

WinRAR_4Beta6

WinRAR is the latest version of WinRAR enterprise . WinRAR is a shareware file archiver and data compression utility, WinRAR is a must-have in any modern-day PC toolkit. This application not only includes support for extracting virtually any kind of file compression format, it also boasts a no-nonsense approach to reducing file sizes..
But beside these features, big "Activation Bug" WinRAR by Dinesh Arya a student of HCL CDC at Janakpuri Centre.

A shocking bug has been occurred at Janakpuri's HCL CDC in aspect of WinRAR activatation, Dinesh Arya a student of HCL CDC Janakpuri centre found activation bug WinRAR. He believe that, he could cracked the WinRAR latest version on front of any one. It seems WinRAR Corporation a big giant for Software Development and they needs attention and improve their software security.

 
 
 
 
 
 
 
 
 
 
 
 
 
Dinesh Arya - Student HCL CDC Janakpuri

Tuesday, January 18, 2011

Backup & Restoration in Windows

Backup & Restoration in Windows

HCLCDC Janakpuri has conducted a seminar based on  Backup & Restoration in Windows that would help in Hardware Networking as well as in Software.
Introduction the Backup Utility:-

Windows Provides the Backup OR Restore Wizard,which allows you to easily backup data.You can use the backup OR restore wizard to backup data manually or to schedule unattended backup jobs on a regular basis.You cam backup data to a file or to a tape. Files can be stored on hard disks , removable disk and recordable compact discs and optical drives.It also provides access to the Automated System Recovery wizard to take the backup of Operating System.

Planning Issues for Backups & Restoration:-
Providing Fault Tolerance & Recover the DATA from Software Trade
Determine which Target Media to use for storing backup data
Determine whether to perform network or local backup jobs
Using the Automated System Recovery Wizard
Preparing for Disaster Recovery
Backing up Data
Scheduling Backup Jobs
Restoring Data
Configuring Shadow Copies
Recovering from Server Failure
Backup Device's

Mr. Manoj Sehgal

Friday, October 8, 2010

RHCE Certfication Examination

RHCE Certification Exam held successfully at HCL CDC Janakpuri

As the journey of success continues, HCL CDC Janakpuri again delivered best in the field of IT professionals. RHCE Certification Examination held on 28-Aug-2010 & 28-Sep-2010 & successfully completed at HCL CDC Janakpui Centre.In this examination 70% students has archived 100 out of 100.
Two exams were conducted, they are:
1. RHCT
2. RHCE

Thursday, October 7, 2010

Seminar on Windows XP SP3 Installation through USB Flash Drive

Windows XP SP3 Installation through USB Flash Drive


The USB flash drive is now ready to install XP to any hardware that is supported by the Windows XP CD. However there are some minor modifications, while installing Windows XP. The speed at which Windows XP installs using USB stick is MUCH faster than installing through an optical drive (CD/DVD). During installation it gets boots from the USB flash drive, and it will show two options:

1.GUI environment


 2.Text Mode
Choose the Text Mode option first. Now you will see initial screen of Windows XP installation as similar shown by an optical drive. Now Just follow the on-screen instructions as shown. Now after that all goes through and the PC restarts, simply chose the GUI option on the menu and let the Windows XP install as it normally does. While installation DOES NOT REMOVE the USB stick until it passes the setup stage. Once you have just booted into Windows XP for the first time, you can go ahead and remove the USB stick. Congratulations! You have just installed Windows XP without using any optical drive. The benefits of installing Windows XP from USB are plentiful; you need not require scratching your optical drive again. This will help you all to reduce the amount of time spend to install Windows XP as before. One can also repair the existing operating system through this pen drive in case of Any disaster happened to OS.

Tuesday, September 21, 2010

SQL SERVER 2005 - Seminar

SEMINAR ON SQL SERVER 2005
Conducted by PRIYANKA CHOPRA & PARMINDER SINGH SAINI
Introduction to Database:
A database consists of an organized collection of data for one or more uses, typically in digital form. Digital databases are managed using database management systems, which store database contents, allowing data creation and maintenance, and search and other access.

Database management systems

A database management system (DBMS) consists of software that operates databases, providing storage, access, security, backup and other facilities. Database management systems can be categorized according to the database model that they support, such as relational or XML, the type(s) of computer they support, such as a server cluster or a mobile phone, the query language(s) that access the database, such as SQL or XQuery, performance trade-offs, such as maximum scale or maximum speed or others. Some DBMS cover more than one entry in these categories, e.g., supporting multiple query languages.Examples of some commonly used DBMS are MySQL, PostgreSQL, Microsoft Access, SQL Server, FileMaker,Oracle, RDBMS, dBASE, Clipper,FoxPro,etc. Almost every database software comes with an Open Database Connectivity (ODBC) driver that allows the database to integrate with other databases.

Types of Databases:
Basic Queries  which were explained General Structure = SELECT, ALL/DISTINCT ,*, AS, FROM, WHERE
Comparison = IN, BETWEEN, WHERE, “%”, “_”
Grouping = GROUP BY, HAVING, COUNT(), SUM(), AVG(), MAX(), MIN()
Display Oreder =  ORDER BY, ASC/DESC
Logical Operator = AND, OR, NOT
Union = UNIONTypes of Joins
Joins are used to combine more than one or more than one table into single result set using different forms:
1. Inner Join
2. Outer Join
      * Left Outer Join
      * Right Outer Join
3. Self Join
4. NaturalOther topics
Union, Intersection and Cartesian Product Interview Questions on SQL SERVER 2005
This section consists the interview question which are commonly asked  for SQL SERVER 2005 related profiles.

There are different ways to define a database. Most commonly used type is relational database. They are defined below:
Network Database
Hierarchical Database
Relational Database


The Basics of the SQL Database and Advantages of SQL SERVER 2005
SQL (Structured Query language) is the language of choice for most modern multi-user, relational databases. That is because SQL provides the syntax and idioms (language) you need to talk to (query) relational databases in a standardized, cross-platform/product way (structured).

The beauty of SQL is that it idiomizes the relational model. Rather than refer to data as a set of pointers, SQL provides predefined procedures to allow you to use any value in a table to relate other tables in a database. So long as a database is structured using the relational model, SQL will be a natural fit because SQL was designed to make sense in a relational system. SQL by its very design is a language that can be used to talk about relating tables.Queries/Commands
SQL Commands are basically divided into Four type of commands
1. DDL = Data Definition Language that consists of the Create, Alter and Drop commands
2. DML = Data Manipulation Language that consists of Insert, Update and Delete commands
3. DQL = Data Query Language that consists of Select command
4. DCL = Data Control Language that consists of Grant and Revoke commands