Viewing 15 posts - 1 through 15 (of 27 total)
Where this table came from dbo.Numbers
June 4, 2009 at 1:48 pm
I need rest of the columsn too......which are not same ......so i cannot do group by on those coloumns.......
April 24, 2009 at 8:20 am
Thank you very much....for your help.......you almost solved my problem.......
April 9, 2009 at 2:24 pm
I want the output in these 3 columns the clolumns for example columns BON as 456 which repeats 2 times so i want the output as
like
TXNCD TXNCD ...
April 9, 2009 at 2:20 pm
@Christoper
Its working when i use nvarchar(max)
March 24, 2009 at 9:05 am
when i use nvarchar......it is not executing the entire proc......
March 24, 2009 at 8:56 am
CREATE PROCEDURE [IDENTIFICATIONCLAIMS]
(
@UniTab varchar(max)
)
as
DECLARE @sSQL varchar(max)
SET @sSQL=
'SELECT [RID] , DIS =''P1'' FROM
( SELECT [RID]
FROM '+@UniTab+ ' R7
INNER JOIN [dbo].[TABA1]...
March 24, 2009 at 8:47 am
there is no front end people......i need to display the result set in reporting.....If i use varchar it is print the proc.......but when i execute its is giving an ERROR:Procedure...
March 24, 2009 at 8:15 am
Viewing 15 posts - 1 through 15 (of 27 total)