The 10 best IT certifications

MCITP - Microsoft Certified IT Professional credential
Track:
  1. Database developer,
  2. Database administrator,
  3. Enterprise messaging administrator, and
  4. Server administrator
MCTS - Microsoft Certified Technology Specialist
Track:
  1. SQL Server 2008 Business Intelligence
  2. SQL Server 2008 Database Development
  3. SQL Server 2008 Implementation and Maintenance
  4. Security+ – CompTIA’s Security+
Security+ – CompTIA’s Security+
MCPD - Microsoft Certified Professional Developer
Track:
  1. Windows Developer 3.5
  2. ASP.NET Developer 3.5 and
  3. Enterprise Applications Developer 3.5
CCNA - Cisco Certified Network Associate
A+ – CompTIA’s A+
PMP – Project Management Professional
MCSE/MCSA – Microsoft Certified Systems Engineer/Microsoft Certified Systems Administrator
CISSP - Certified Information Systems Security Professional
LINUX+

2 comments December 13, 2008

Integrate Google Task into Gmail

Google just rolled out new functionality that can able to add task into your Gmail.
Settings –> Labs –> Enable (Select Google task) Option.

gmailtasks

Add comment December 13, 2008

The New OS from Microsoft – Windows Vienna

windows-vienna

Add comment December 12, 2008

Run Query on Two Different Database on Two Different Servers

A linked server configuration allows Microsoft SQL Server to execute commands against OLE DB data sources on different servers. Linked servers offer these advantages:

  • Remote server access.
  • The ability to issue distributed queries, updates, commands, and transactions on heterogeneous data sources across the enterprise.
  • The ability to address diverse data sources similarly.

Managing a Linked Server Definition

Register the connection information and data source information with SQL Server.

You can create or delete a linked server definition with stored procedures or through SQL Server Enterprise Manager.

With Stored Procedure:

Create a linked server definition using sp_addlinkedserver.

Syntax

sp_addlinkedserver [ @server = ] ’server’ 

    [ , [ @srvproduct = ] ‘product_name’ ] 

    [ , [ @provider = ] ‘provider_name’ ] 

    [ , [ @datasrc = ] ‘data_source’ ] 

    [ , [ @location = ] ‘location’ ] 

    [ , [ @provstr = ] ‘provider_string’ ] 

    [ , [ @catalog = ] ‘catalog’ ]

Example

EXEC sp_addlinkedserver 

   @server = ‘SEATTLE Mktg’, 

@srvproduct = ‘OLE DB Provider for Jet’,

   @provider = ‘Microsoft.Jet.OLEDB.4.0′, 

   @datasrc = ‘C:\MSOffice\Access\Samples\Northwind.mdb’

Delete a linked server definition using sp_dropserver.

Syntax

sp_dropserver [ @server = ] ’server’ 

     [ , [ @droplogins = ] { ‘droplogins’ | NULL} ]

Examples

sp_dropserver ‘SEATTLE Mktg’, ‘droplogins’

 

With SQL Server Enterprise Manager:

  • SQL Server Enterprise Manager Console —  Server objects — Linked Servers
  • Right Click — New Linked Server
  • Define the name, provider properties, server options, and security options for the linked server.
  • Edit a linked server definition by right-clicking the linked server and clicking Properties.
  • Delete a linked server definition by right-clicking the linked server and clicking Delete.

When executing a distributed query against a linked server, include a fully qualified, four-part table name for each data source to query. 

This four-part name should be in the form linked_server_name.catalog.schema.object_name.

Select * From [linkedservername or IP].DatabaseName.sys.Columns

Add comment December 12, 2008

Pseudo Validator for a Pseudo Standard

Web 2.0 validator tool:

http://web2.0validator.com/

Add comment December 12, 2008

Previous Posts


Blog Stats

Archives

Categories

 

November 2009
M T W T F S S
« Dec    
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Meta