Viewing 15 posts - 196 through 210 (of 1,957 total)
pietlinden (8/23/2015)
Any idea why the parameters button would be grayed out? I'm using Integrated Security, and the SQL Instance is on my local PC.
So I can't specify a parameter as...
August 24, 2015 at 12:16 am
kirkevans (8/20/2015)
Thank you!This is just what I need, with one small problem - I can't find the "Parameters" button that you mention.
Connection properties window.
August 23, 2015 at 5:16 pm
Eric M Russell (8/11/2015)
mister.magoo (8/6/2015)
Perhaps...
August 11, 2015 at 3:33 pm
Sqlbill, how do they restrict the network people that can grant access to the account/group so that they don't work in cahoots with the villain?
August 7, 2015 at 2:46 pm
The other problem you will have to contend with (aside from not being able to prevent new sysadmin accounts), is that the quality of your DBAs will decrease as the...
August 7, 2015 at 10:11 am
You'll be in a big pile of do, because you won't even know who did it - as you want them all using the same ID.
Perhaps you should just have...
August 6, 2015 at 4:49 pm
It's very simple.
You add an action to the textbox that contains the value. The action links to the detail report and passes parameters to it from the data row/group that...
August 6, 2015 at 8:33 am
Thanks, but I thought you wanted to specify a node name as well?
Otherwise, you could just take node 1?
Edit:Much later, with no further input, I will offer this suggestion:
DECLARE @tmpTbl...
August 5, 2015 at 9:49 am
Please read the link in my signature "Forum Etiquette: How to post data/code on a forum to get the best help"
August 5, 2015 at 9:13 am
windows_mss (8/4/2015)
Thanks for your reply, the value int the parent node "ADT_A03_26_GLO_DEF" will vary for each and every record.
That's no problem, just post some sample data and I'll show you...
August 4, 2015 at 4:40 pm
declare @x xml = '<ns0:ADT_A03_26_GLO_DEF xmlns:ns0="http://microsoft.com/HealthCare/HL7/2X">test</ns0:ADT_A03_26_GLO_DEF>';
declare @t table(col sysname);
insert @t values('ADT_A03_26_GLO_DEF');
with xmlnamespaces(default 'http://microsoft.com/HealthCare/HL7/2X')
select *, @x.value('(//*[local-name() = sql:column("col")]/text())[1]','varchar(100)')
from @t
If you declare the namespace as default, then it will work.
August 3, 2015 at 5:21 pm
mister.magoo (7/30/2015)
Please post the execution plan (.sqlplan, not an image) and the table definitions.How many rows are in the tables on the remote server?
If you answer this, I may be...
July 30, 2015 at 2:25 pm
Please post the execution plan (.sqlplan, not an image) and the table definitions.
How many rows are in the tables on the remote server?
July 30, 2015 at 2:41 am
Maybe this will get you somewhere, but it's not quite right according to your desired output, I just don't have time to to spend trying to fix it and I...
July 29, 2015 at 5:45 pm
Viewing 15 posts - 196 through 210 (of 1,957 total)