Viewing 15 posts - 241 through 255 (of 1,957 total)
Jeff Moden (6/4/2015)
The more I see about XE, the less I like it.
Yes, that's why I'm trying to improve my experience 😀
Grant Fritchey (6/4/2015)
June 5, 2015 at 2:51 am
Well, of course it's obvious if you explain it clearly 🙂
In my defence, I never said I knew anything about anything!
Thanks Jacob
June 2, 2015 at 11:36 pm
Yes, I do:
Setup some test data first:
use tempdb;
go
-- create some test data, only 10 rows is fine
if object_id('test') is not null
drop table test;
go
create table [dbo].[test](
[id] [char](10) not null,
[dated] [date] null,
[value]...
June 2, 2015 at 6:03 pm
I think the reports are "compiled" into the Segments table, so not easily changeable via TSQL.
You can use Powershell and the SSRS Web Services, here is a starter link: https://msdn.microsoft.com/en-GB/library/dn747196.aspx
May 30, 2015 at 3:46 am
DamianC (5/26/2015)
I've done a bit of digging (including ringing MS) and found that its available on earlier versions but not...
May 26, 2015 at 9:50 am
DamianC (5/26/2015)
Unfortunately, it seems as though the home version does not get Powerpivot or view
I would have to buy the full blown Excel product
Would have thought MS...
May 26, 2015 at 9:15 am
Ok, so the method I would use is this:
1) Create a dataset that retrieves the user's TimeZone from the database.
2) Create a hidden parameter that takes its default value from...
May 24, 2015 at 7:15 pm
I'm struggling to understand how you can convert a date to Local Time to display it, but not calculate UTC from Local Time to use in a query, could you...
May 23, 2015 at 5:21 pm
ChrisM@Work (5/18/2015)
SELECT i.*
FROM @invoice i
WHERE i.org_id in (select item from dbo.DelimitedSplit8K(@org_list,','))
SELECT i.*
FROM @invoice i
INNER JOIN dbo.DelimitedSplit8K(@org_list,',') d ON d.item = i.org_id
In the first...
May 18, 2015 at 1:46 pm
It would be great if that post had some links for further reading 🙂
May 17, 2015 at 3:13 am
Jeff Moden (5/16/2015)
TomThomson (5/14/2015)
Jeff Moden (5/13/2015)
TomThomson (5/13/2015)
Jeff Moden (5/11/2015)
May 17, 2015 at 3:08 am
You haven't said anything about your level of programming skills, so it's pretty hard for anyone to give decent advice.
For complete novices, I would suggest taking a look at Visual...
May 15, 2015 at 4:24 pm
Just add a second query to the dataset/procedure (You are using Stored Procedures?)
SELECT resultid , resultvalue from ACTIONRESULT where actionid = @actionid;
IF @@ROWCOUNT=0
SELECT resultid , resultvalue from ACTIONRESULT...
May 15, 2015 at 4:14 pm
Do you mean Tasks...Generate Scripts?
If so, (and even if not), you can tell that not to script triggers in the Advanced Scripting Options.
May 14, 2015 at 12:56 pm
There you go - this time with RowVisibility, which is a better way for your needs.
May 14, 2015 at 7:21 am
Viewing 15 posts - 241 through 255 (of 1,957 total)