Viewing 15 posts - 3,316 through 3,330 (of 4,820 total)
ShorePatrol (8/7/2015)
I have some indexes over 30% fragmented. Some are much more...
I have a job maintenance plan to "re-organize" indexes every Sunday on all databases. I didn't know if...
August 7, 2015 at 8:08 am
Usually, if the number of records to appear in a separate report is small enough, there's really no reason NOT to have a section whose visibility is controlled. ...
August 6, 2015 at 8:41 am
brett.walker (8/6/2015)
This question is regarding SQL Server 2008 R2 SSRS. Please let me know if this is the incorrect forum and I'll move it.
I have a balance sheet report...
August 6, 2015 at 8:20 am
ldanks (8/6/2015)
Thank you both for your help - I'll try and setup a test with real data 🙂
Depending on how you need to make this decision, try something along the...
August 6, 2015 at 8:10 am
Okay, two things:
1.) By just throwing out "Invalid" instead of a negative result, you end up hiding the true cause of the problem, AND you might well entirely miss any...
August 6, 2015 at 7:56 am
fnndala2 (8/5/2015)
August 6, 2015 at 6:48 am
nugentgregg (8/3/2015)
I am in a little confusion about it. I got a good result. Please give me a detailed explanation.
The original Oracle query was recursive, and the CTE, or Common...
August 5, 2015 at 8:04 pm
I think I'd take the source and re-compile using a .NET 4.0 or later framework and at least Visual Studio 2008, if you haven't already tried that... Beyond...
August 5, 2015 at 7:45 pm
Yogeshwar Phull (8/5/2015)
I have a procedure that was taking around 11-12 seconds to run on SQL Server 2012 Enterprise edition with Always ON configured..
There is table named fs.performance that has...
August 5, 2015 at 3:26 pm
s.chandrahasan (8/5/2015)
declare @var varchar(8000)
set @var='Name1~50~20~50@Name2~25.5~50~63@Name3~30~80~43@Name4~60~80~23'
---------------------
Create table #tmp(id int identity(1,1),Name varchar(20),Value1 float,Value2 float,Value3 float)
Insert into #tmp (Name,Value1,Value2,Value3)
Values ('Name1',50,20,50 ), ('Name2',25.5,50,63 ), ('Name3',30,80,43 ),...
August 5, 2015 at 8:20 am
dmartins.dam (8/5/2015)
Correct query :
select b.isin, a.market, a.ccy, a.stock_mkt, max(a.year)
,max(a.month), max(a.day) from market_table a inner join
isin_table b on a.id =...
August 5, 2015 at 8:05 am
Luis Cazares (8/4/2015)
Steve,That was bad generated sample data, not the real structure of the data.
I know, but at the time I started that post, no one else had responded yet....
August 4, 2015 at 3:53 pm
kennyhuang0108 (8/4/2015)
I think the result I would like to see is as below
sorry for the confusion.
Bf_ORGN_CD LEV5 ...
August 4, 2015 at 1:10 pm
Luis Cazares (8/4/2015)
What you explain might be possible, but a simple pdf with truncated rows won't help. We need DDL, sample data as insert statements and...
August 4, 2015 at 12:44 pm
Eirikur Eiriksson (8/4/2015)
sgmunson (8/4/2015)
Eirikur Eiriksson (8/3/2015)
Quick suggestion, use sys.dm_exec_describe_first_result_set or sys.dm_exec_describe_first_result_set_for_object, to get the structure of the output of the stored procedure.😎
According to MS doc, that applies only to...
August 4, 2015 at 11:21 am
Viewing 15 posts - 3,316 through 3,330 (of 4,820 total)