Viewing 15 posts - 16 through 30 (of 47 total)
Thanks so much for the quick response! It's a difficult thing to Google, and I only use the ranking functions occasionally.
This returned exactly what I wanted:
March 23, 2017 at 12:38 pm
I don't know either. It's extremely frustrating that the primary software I use to do my job has so many problems with the interface itself.
I'm changing the...
March 17, 2017 at 10:26 am
I'm wondering if this has something to do with IE? The "About" information from SSMS says 9.11, but I have 11.54 installed. I suppose SSMS IE is different than the...
March 13, 2017 at 4:07 pm
Well, I guess I answered my own question.. unless someone can offer a better solution:
with a as (
select 'start' [eventtype],cast('2016-05-17 08:00:00' as datetime) [eventdatetime]
union select 'start',cast('2016-05-17 09:10:00' as datetime)
union select...
May 27, 2016 at 2:11 pm
The intent was to avoid having to do a complete code and proc sweep to implement this change. I'm not trying to avoid the structure of the table,...
March 24, 2016 at 3:20 pm
Yes, that was the answer I was looking for. I ended up being able to tweak my formulas to come up with the calculated columns I needed:
TotalPayments:=CALCULATE(SUM(Payment[PaymentAmount]),FILTER(Payment,Payment[CustomerID] =...
March 24, 2016 at 12:56 pm
I am just trying to get a list of reports in the ReportServer catalog that have not been executed recently, knowing that execution log contains last run information (partial).
Simply stated,...
February 13, 2015 at 4:44 pm
You can also do the same thing in your report query. Let SQL Server handle the heavy lifting.
SELECT LEFT(mycol,50) AS [firstPart], SUBSTRING(mycol,51) AS [secondPart], ...
December 5, 2014 at 8:54 am
You may be able to fix that issue by flushing your IE cache.
December 5, 2014 at 8:51 am
in field1 use this expression to get the first 50 characters (for instance):
=LEFT(Fields!FieldName.Value,50)
in field2, basically do the same thing:
=MID(Fields!FieldName.Value,51,LEN(Fields!FieldName.Value))
December 4, 2014 at 3:49 pm
I can tell there is a slight hesitation the first time I type in a query in a new query window at the time when it should be popping up...
December 4, 2014 at 1:30 pm
the working and non-working databases have identical settings.
I had the Max Script size set to 1MB, but it doesn't matter what it is set on, does not help. All...
September 17, 2014 at 2:07 pm
Microsoft SQL Server Management Studio11.0.5058.0
Microsoft Analysis Services Client Tools11.0.5058.0
Microsoft Data Access Components (MDAC)6.1.7601.17514
Microsoft MSXML3.0 5.0 6.0
Microsoft Internet Explorer9.11.9600.17239
Microsoft .NET Framework4.0.30319.18444
Operating System6.1.7601
I'm used to the Intellisense being pretty quirky.. It's...
September 17, 2014 at 12:25 pm
Also, the users affected are connecting using Windows Authentication, and are members of an AD group that has been granted SYSADMIN on the db server in question, and I ensured...
September 17, 2014 at 10:46 am
SSMS is 2012 also. We have a couple developers using SSMS 2014.
This appears to be the case for several different users for only these databases on this server, running...
September 17, 2014 at 10:36 am
Viewing 15 posts - 16 through 30 (of 47 total)