Viewing 15 posts - 616 through 630 (of 927 total)
is it a system generated number ? or enter by users
April 23, 2014 at 11:41 pm
Ratheesh.K.Nair (4/22/2014)
Thanks Lowell for the reply.I am looking for procedures calling multiple same procedure inside.
u mean SP calling itself ?
April 22, 2014 at 5:17 am
you can do this in t-sql using Format function.
Declare @tbl table ( id int, assignment decimal(11,8))
insert into @tbl
select 1, 10.00 union all
select 1, 8.55 union all
select 1, 0.55
select id,...
April 22, 2014 at 5:09 am
When you fill the FACT Table, how you are making Source,
Like a T_SQL staging table joining with dimensions to get the dimension id.
or u r using Lookups? because there...
April 22, 2014 at 4:10 am
are you using SSIS or T-SQL to load the dimension/Fact table?
and did you tried to disable your index before loading data ?
April 22, 2014 at 1:36 am
its look like a cross tab report to me, you can do it with 2 ways
1) create a cross tab report, doing so you can have 'N' number of...
April 22, 2014 at 12:11 am
Koen Verbeeck (4/18/2014)
Too easy 😀Have a nice Easter weekend, and don't eat too much chocolate!
+1000 :hehe:
April 18, 2014 at 12:11 am
feroz_tt (4/16/2014)
I'm getting some problem here
;with Numbers (Number) as
(select row_number() over (order by object_id)
from sys.all_objects)
select dateadd(month, number, '2014-09-01')
from Numbers
where number <= datediff(month, '2014-09-01', '2016-03-31')
Low no of months.
Select datediff(month,...
April 16, 2014 at 4:32 am
ashalatha.cse76 (4/16/2014)
it is displaying as zero records
i have tested this script before sharing. It should return 1 row.
Following is the result set
ID ...
April 16, 2014 at 1:23 am
Changed the column Name from 'maturnity' to 'maturity'.
Declare @Table1 table
(
ID int
, Age int
, gender varchar(10)
)
Declare @Table2 table
(
ID int
, maturity varchar(10)
, gender varchar(10)
)
insert into @Table1 (ID, Age, gender)
select 1,...
April 16, 2014 at 12:55 am
ashalatha.cse76 (4/16/2014)
April 16, 2014 at 12:36 am
surya.mekala (4/16/2014)
Yeah the limit is upto 10 columns.And dynamic SQL ? Could you please guide me in writing that query in dynamic sql
Ok, as per your answer you donot need...
April 16, 2014 at 12:34 am
ashalatha.cse76 (4/16/2014)
i cant understand what u are saying
i also cant understand what u r saying, still i tried the following:
Declare @Table1 table
(
ID int
, Age int
, gender varchar(10)
)
Declare @Table2 table
(
ID int
,...
April 16, 2014 at 12:20 am
you should read the following
How to post data/code on a forum to get the best help[/url]
Give your question a chance of being answered correctly.
April 15, 2014 at 11:51 pm
It can be done in dynamic sql but 1st i need to know, is there any limit of there will always be Price1, Price2 & Price3 etc columns, or you...
April 15, 2014 at 11:47 pm
Viewing 15 posts - 616 through 630 (of 927 total)