Viewing 15 posts - 2,026 through 2,040 (of 2,883 total)
that is, as far as I can see, an older paper.
Visual Studio Subscriptions (formerly MSDN subscriptions) - latest licensing whitepaper here.
from it
Different Licensed Users Can Run the Same...
April 8, 2020 at 6:59 pm
Quick thing about MSDN licensing - End users who are doing acceptance TESTING do not require a license. To quote Microsoft's licensing terms:
Acceptance Testing and Feedback. Your end users may...
April 8, 2020 at 4:57 pm
This would probably be written better as an "IF" statement rather than a CASE... something along the lines of:
IF EXISTS (SELECT 1 FROM [ITRM_ITBF].[Dflt].[MANUAL_LSV_PERMISSIONS] WHERE USERNAME =...
April 8, 2020 at 4:45 pm
Blanks are a bit harder to deal with. One way would be to add a UNION onto the query... something like:
UNION
SELECT NULL
WHERE NOT EXISTS(SELECT 1
FROM <table>
WHERE SSN...
April 8, 2020 at 3:36 pm
My preference is to avoid maintenance plans wherever possible. I have run into issues with them and when a problem comes up, it can be tricky to reproduce and debug. ...
April 8, 2020 at 3:27 pm
I've not used developer edition, but we also run SQL Server Standard at my workplace. I am just offering a different option: Visual Studio subscription licensing for your test/dev environment. Everyone...
April 8, 2020 at 3:07 pm
Hello JSB_89,
Have you checked the logs? That would be my first step. Check PBI logs and IIS logs and windows event logs. One of them should have something useful in...
April 7, 2020 at 8:52 pm
Your max memory is set way too high. I would drop that down to a more reasonable value.
As Frederico_fonseca said, you should have at LEAST 1 GB free for the...
April 6, 2020 at 2:37 pm
Looking at the log it says it out of memory. "Memory allocation failure". You need more memory on your VM or need to allocate your memory differently.
April 3, 2020 at 6:31 pm
As a thought, do you have a linked server on Server1 that points back to Server1?
April 3, 2020 at 6:28 pm
If this is a manual process of extracting the data to CSV, you could probably do a find-and-replace in the CSV.
If you are using a tool (SSRS for example), you...
April 2, 2020 at 3:05 pm
The link in the whitepaper seems to be broken :(.
April 1, 2020 at 2:48 pm
Not looking through the logs sounds like you don't really want to find out what caused the problem. That is what the logs are there for. Without finding the cause,...
March 31, 2020 at 7:27 pm
My best guess as to why it suddenly broke is that something changed on your system. Could have been a windows update, a sql update (although those are both unlikley),...
March 25, 2020 at 9:55 pm
To address the security certificate message, that is semi normal. Computers generate a certificate to be used for RDP connections. It is used to encrypt the connections. It should have...
March 25, 2020 at 9:36 pm
Viewing 15 posts - 2,026 through 2,040 (of 2,883 total)