Viewing 15 posts - 106 through 120 (of 241 total)
Sounds like you are running out of space.
Even though you using Init to overwrite the file I think the fact that that compression is being used will cause the bak...
July 8, 2016 at 1:26 pm
Try some of the courses on the MS Virtual Academy.
This one is probably best suited
https://mva.microsoft.com/en-US/training-courses/database-fundamentals-8243
July 8, 2016 at 10:51 am
Hi,
I noticed that index maintenance wasn't being carried out on the SSISDB so I updated the stats and rebuilt indexes and this appeared to fix the problem.
Note that I still...
July 8, 2016 at 8:17 am
Thanks Luis. I'll check out that MVA course - looks like a good starting point on the differences.
July 7, 2016 at 9:58 am
Firstly, according to your data you are selecting where all_ID = 5505 but in your results you have all_ID as 750 so is a bit confusing.
So in both select statements...
July 6, 2016 at 1:28 pm
Windows Server 2008R2 isn't a supported option for SQL Server 2016.
See link for details
https://msdn.microsoft.com/en-us/library/ms143506.aspx#pmosr
July 6, 2016 at 11:06 am
TRY_PARSE is a CLR function which could account for the performance difference.
I think the only benefit of using TRY_PARSE over TRY_CAST is when you need to pass the culture that...
June 30, 2016 at 10:25 am
I imagine you would have to set up a profiler trace to monitor if anyone is accessing the cube. I'm not sure about any other logging build into SSAS but...
June 29, 2016 at 2:34 pm
The query below should show you connections to the SSAS server. Not this is a DMX query not T-SQL.
SELECT * FROM $system.discover_connect
June 29, 2016 at 2:02 pm
Do the values in your parameter already contain quotes?
If so, in the data set under the parameter tab in the parameter value for state set the expression to be as...
June 28, 2016 at 8:28 am
homebrew01 (6/27/2016)
FridayNightGiant (6/27/2016)
Do you have RPC:Starting or RPC:Completed as Events in your trace?
No, this gives me 0 results, using the active trace file
select *
from fn_trace_gettable('D:\TraceFiles\MyDMLtrace_SQL_x160621_x146_10.trc', 1)
where textdata ...
June 27, 2016 at 11:18 am
Do you have RPC:Starting or RPC:Completed as Events in your trace?
June 27, 2016 at 8:29 am
Are you using the action functionality on the object? And selecting the go to report option?
Any time I have done that then just using the browser back button returns then...
June 24, 2016 at 11:35 am
If you want to see the values then you would need to use SQL profiler. Or you can add a a text box to your report and display the parameter...
June 24, 2016 at 8:22 am
If it is a multi select drop down then the parameters will be sent to the stored procedure as a comma separated string.
Depending on what this stored procedure does you...
June 24, 2016 at 7:32 am
Viewing 15 posts - 106 through 120 (of 241 total)