Viewing 4 posts - 1 through 4 (of 4 total)
THIS IS AN EXAMPLE WHICH I HAVE USED...
I HOPE THIS SCRIPT WILL HELP YOU OUT....
-- Delete duplicate records with out temporary tables.
CREATE TABLE #phonebook (
[phonenumber] [varchar] (30),
[firstname] [varchar] (30),
[lastname] [varchar]...
June 2, 2009 at 11:34 pm
It means that you are not getting an SQL Server connection. If you are using a linked server into an stored procedure then you have to add that server in...
April 13, 2009 at 1:19 am
--This will ceate a folder .. this might just help you by doing some changes....--
DECLARE@wk_no VARCHAR(2)
DECLARE@Path VARCHAR(100)
DECLARE @md VARCHAR(100)
SET @wk_no = DATEPART(wk, GETDATE())
SET @Path...
March 25, 2009 at 2:56 am
USE Northwind
GO
CREATE TABLE [Employee]
(
[ID] [int] NOT NULL ,
[Name] [nvarchar] (10) NOT NULL ,
[Salary] [money] NULL ,
)
GO
INSERT INTO Employee VALUES
(1, 'Dinesh', 1500)
(1, 'Dinesh', 25000)
(1, 'Dinesh', 15000)
SELECT * FROM Employee ORDER...
March 23, 2009 at 11:58 pm
Viewing 4 posts - 1 through 4 (of 4 total)