Viewing 9 posts - 1 through 9 (of 9 total)
where do you want to display...Report, or UI or Query result?
January 29, 2013 at 1:12 am
SQL 2008 R2 - Change Tracking may help you...
http://msdn.microsoft.com/en-us/library/cc280462(v=sql.105).aspx
January 29, 2013 at 1:07 am
[font="Verdana"]i have similar issue, a store procedure was called from ETL Packages.
when executed store procedure alone warning was shown on result window but executing from pacakges was failed due to...
November 6, 2012 at 9:56 pm
following will remove only duplicate records
here is example
DECLARE @tmpTable table(
--CREATE TABLE @phonebook (
[id] [varchar] (30),
[firstname] [varchar] (30),
[lastname] [varchar] (30),
[company] [varchar] (100)
)
INSERT @tmpTable SELECT '902','suresh','bangalore','sm soft'
INSERT @tmpTable SELECT '905','ramesh','xyz','company llc'
INSERT @tmpTable...
June 13, 2011 at 1:25 am
write vbscript task and reset object name to empty
April 9, 2007 at 10:24 pm
Check Orignial File Name and Current File(s) Location
and Also what database you are creating in Attach as 'xxxx' and specify database owne 'sa' or backup user name
Suresh
December 4, 2005 at 4:21 pm
Try recreate table by delete table and create new table with same name.
sometimes or.. Rename doesn't rename table name in sysobject
August 18, 2005 at 5:25 pm
Try this,
Select Patient,invoice count(*)
From TablepateientInvoice
Group by Patient,invoice
Having count(*) > 1
July 20, 2005 at 5:59 pm
Viewing 9 posts - 1 through 9 (of 9 total)