Information

Showing posts with label SQL-SERVER. Show all posts
Showing posts with label SQL-SERVER. Show all posts
Tuesday, February 26, 2019

Sql Server - Create a copy of database and Renaming it

›
Steps to attach a database with different name: Detach database from local PC Copy the mdf and ldf files and rename them. Copy\Move t...
1 comment:
Tuesday, September 22, 2015

Stored procedure slow when called from web, fast from Management Studio

›
Some time this problem occurs due to compiled query plan became corrupt, or invalid. Stored procedure slow when called from web, fast fro...
Friday, October 19, 2012

Remove Duplicate Data from Sql-server 2005

›
First Declare a temp table DECLARE @table Table(column1 INT, Column2 INT, total int) insert duplicate data to temp table insert INTO...
Saturday, April 14, 2012

how to add A DAY IN DATE, SQL-SERVER

›
DATEADD ( type , value , date ) date is the date you want to manipulate value is the integere value you want to add (or subtract if yo...
Monday, October 18, 2010

Sql - server - Find Last updated stored procedures

›
SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' ORDER BY modify_date desc, create_date desc
›
Home
View web version
Powered by Blogger.