This is my Technical area of troubleshooting and learning new Programming skills and many more. Here you will find answers for many new technologies like asp.net 2.0/3.5,4.0 C# access, mysql, Amazon Webservice ,Sql-server, JD Edwards, SAS, Salesforce, APIs, MVC and many more. please visit & discuss.
Sunday, August 31, 2014
If and Like with Stored Proc
Substring,Left,right
SELECT LastName,firstname, SUBSTRING(LastName, 4, 4) as Initial
FROM Person.Person
WHERE LastName like 'Barl%'
ORDER BY LastName;
select * from Person.Person
--SUBSTRING ( expression ,start , length )
Select AddressLine1,SpatialLocation,SUBSTRING(cast(SpatialLocation as varchar(50)), 4, 4) as Address
from Person.Address
select PostalCode from Person.Address
SELECT firstName,lastname,RIGHT(FirstName, 4) AS 'First Name'
FROM Person.Person
SELECT firstName,lastname,left(FirstName, 2) AS 'First Name'
FROM Person.Person
SELECT firstName,lastname,SUBSTRING(FirstName,1,2) AS 'First Name'
FROM Person.Person
Saturday, August 30, 2014
IIS Wiki
Friday, August 29, 2014
JavaScript Tutorial
Monday, August 18, 2014
Linked Servers SQL Server
Configure a linked server to enable the SQL Server Database Engine to execute commands against OLE DB data sources outside of the instance of SQL Server. Typically linked servers are configured to enable the Database Engine to execute a Transact-SQL statement that includes tables in another instance of SQL Server, or another database product such as Oracle. Many types OLE DB data sources can be configured as linked servers, including Microsoft Access and Excel. Linked servers offer the following advantages:
SQL Server Replication
Sunday, August 17, 2014
SQL Server Interview Question
Rajeev Kumar
949-378-6094
Launching Performance Monitor
Launching Performance Monitor
You can launch Performance Monitor a few different ways.
Start > Control Panel > Administrative Tools > Performance Monitor or you can launch PerfMon.exe. Once this is running you will get an interface like the following:
http://www.mssqltips.com/sqlservertutorial/283/performance-monitor/