Viewing 6 posts - 1 through 6 (of 6 total)
Thanks everybody, for their valuable contribution on the above subject.
I have created the below sp to accomplish the above task. This adds category dynamically to the main query.
Create proc...
February 21, 2016 at 11:50 pm
Hi,
Below is the script generated for 2 tables
CREATE TABLE [dbo].[Order](
[OrderId] [int] IDENTITY(1,1) NOT NULL,
[OrdDate] [date] NOT NULL,
[Customer] [varchar](50) NOT NULL,
[OrdValue] [numeric](18, 2) NOT NULL,
CONSTRAINT [PK_Order] PRIMARY KEY CLUSTERED
(
[OrderId]...
February 19, 2016 at 5:30 am
Hi there,
Thnx for your reply. I tried your work around but it seems to be not working, may be I am making some mistake, but let me tell you what...
July 3, 2009 at 5:51 am
Hi there,
Nice article, I have one question. When I change your sample code from
use AdventureWorks;
......
declare @t table (col1 int not null, col2 varchar(30));
insert into @t (col1, col2)
values
(
......
TO
use AdventureWorks;
......
declare @t...
July 2, 2009 at 9:12 am
Hi there,
Can you please tell in precise what is not working the SP or the Reporting Serv part.
Regards,
a_k93
February 1, 2006 at 11:19 pm
Viewing 6 posts - 1 through 6 (of 6 total)