Viewing 15 posts - 436 through 450 (of 13,460 total)
this page specifically says, for SQL 2012, no retirement for exams are planned at this time:
http://blog.firebrandtraining.co.uk/2017/01/microsoft-exams-retiring-2017.html
As with SharePoint, we see only the planned retirement...
Lowell
July 9, 2017 at 8:39 am
you are correct.
SSAS can participate in a Cluster with shared storage, and is Cluster Aware.
but the service does not have the equivalent of Availability groups.
Lowell
July 7, 2017 at 10:05 am
don't test on production. Lowell
best practice is to test on a Development copy of production,s o you have no chance of actually screwing up important data.
never test on production.
--help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!
July 7, 2017 at 8:40 am
yeah now that we see the actual execution plan, we can see the impact of the nested views; there's a couple of tables like [ins_smr] and [ins_mod] that are joined...
Lowell
July 5, 2017 at 11:05 am
for me, your expression looks like the problem, but of course it depends on your data.
=IIf(Fields!NotificationType.Value = "Discharge",False,True
that is evaluated each row, right? so potentially some rows toggle...
Lowell
July 5, 2017 at 9:20 am
I'd look at the indexing and SQL code in the view; it could be using non-Sargable WHERE statements or join criteria, inline scalar functions, or just not have any indexing...
Lowell
July 5, 2017 at 8:51 am
create a table with the same schema as the table you want to audit.
add additional columns for capturing whodunnit information.
then you just need a trigger to handle update...
Lowell
July 5, 2017 at 7:13 am
somone already mentioned that the order by , when inserting into a table is an extra cost with no benefit;(a table has no implicit order...you have to use an order...
Lowell
July 5, 2017 at 6:19 am
here's your data setup with proper data types. your monthYr MUST BE a date datatype in order to get the proper order. you don't want the data to order in...
Lowell
July 3, 2017 at 7:24 am
Nice job Theo;
I had created a procedure to check the current patch version,all available patch version, and the suggested Service pack version, but it used an internally contained CTE full of...
Lowell
July 3, 2017 at 6:37 am
what you want is a case statement to pick one column or the other base don the value.
here's a complete working example based on what you posted. see how...
Lowell
July 2, 2017 at 8:09 pm
look specifically at the path in that Package.ConnectionManagers[StaffExport],
is it using a mapped drive, and not a unc path? ie the path should be \\servername\sharename\filename.txt, and not the T:\sharename\filename.txt
mapped...
Lowell
July 2, 2017 at 4:55 pm
I have a DBA_Utilities database that I keep tables in place for randomization. So for example i have a MovieStars database that is a cross join of Real Movie Starts...
Lowell
July 2, 2017 at 2:41 pm
Analysis server allows windows connections only, you are correct.
i those situations, we've added consultants to have a domain name on our network, and they connect via citrix to establish...
Lowell
July 1, 2017 at 5:07 am
I've done this with a Common Language Runtime (CLR)that was unsafe(due to windows.forms) so i could create an RTF object and get the MyObject.Text from it.
if you google, you...
Lowell
June 30, 2017 at 1:32 pm
Viewing 15 posts - 436 through 450 (of 13,460 total)