Viewing 15 posts - 1,246 through 1,260 (of 2,905 total)
Your XML ends with:
<InterfaceDefinition><id>Radio
so right away, I see that id and InterfaceDefinition are both unclosed. I expect these are not root level XML tags, so you probably have more that...
April 23, 2021 at 2:04 pm
Quick look at your code, your XML is missing closing tags, so it is malformed XML and as such cannot be cast to XML.
April 22, 2021 at 6:12 pm
My opinion for process - install it on test, test the crap out of it, if no fault found, install on live.
As for "should" you install it? I would. SP2...
April 22, 2021 at 6:11 pm
Alternately to Ant-Green's suggestion, if you go to the SSRS webpage, there is a download button in the top right corner (if you didn't disable it) where you can download...
April 22, 2021 at 6:05 pm
To add to what Grant said, it could also be that there isn't much "new" to add. I forget the version, but I think it was 2014 where a lot...
April 22, 2021 at 6:03 pm
I've not set up a linked server to Access before, but my general checklist for things related to linked servers AND files on disk/network is:
1 - who is it connecting...
April 22, 2021 at 4:15 pm
Having then log out and back in would probably make sense as I expect it would refresh their permissions.
As for what they are doing in SQL, I would be mildly...
April 21, 2021 at 4:18 pm
I think probably what will help you the most is something like this:
https://aka.ms/sql-permissions-poster
It is a rather large poster, but it gives you all SQL related permissions, what they mean and...
April 16, 2021 at 5:43 pm
Granting connect is safe and required if you want a user to be able to connect to the SQL instance.
Granting read is again, something I try not to give away...
April 16, 2021 at 5:37 pm
The only issue I see is if developers don't need to see the definition of an object or the name of a database due to proprietary knowledge in or about...
April 16, 2021 at 3:51 pm
It depends. The favorite DBA answer.
From BOL - https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/snapshot-isolation-in-sql-server
Basically, if you have a lot of updates on the table, you will have a lot of tempdb growth. If the table...
April 16, 2021 at 12:49 pm
My next step then would be to check the error that popped up.
The error message is:
Unable to start the Transact-SQL debugger, could not connect to the Database Engine instance '<instance...
April 15, 2021 at 9:05 pm
With debugging SQL Server code, I do not use the debugger. I've never found it to be that useful with respect to TSQL. Maybe my code is not interesting enough...
April 15, 2021 at 7:01 pm
My opinion - it sounds like strategy one is the way to go. This lets you log all changes and you can select the changes you need to see. What...
April 15, 2021 at 6:10 pm
My next thought is that you removed something that is normally installed on a system (such as a C# redistributable package).
Might not hurt to do a repair install of the...
April 14, 2021 at 2:03 pm
Viewing 15 posts - 1,246 through 1,260 (of 2,905 total)