Viewing 15 posts - 1 through 15 (of 22 total)
IT and I solved the issue. I chose a IP for the cluster that I thought wasn't in use, but apparently it was, so the cluster would go down after...
February 19, 2021 at 6:32 pm
in this case, there's only one Address element per XML column row.
The issue is that this is unstandard XML, it should have been all defined as all elements in this...
July 6, 2020 at 4:52 pm
The XML is really simple - it would probably be another 100 nodes more than what's on there.
Query:
SELECT
A.SOURCE_PKEY,
XmlColumn.value('(profile/entity[@name="ADDRESS"]/attr[@name="NAME1"])[1]', 'varchar(255)') NAME1,
XmlColumn.value('(profile/entity[@name="ADDRESS"]/attr[@name="STREET"])[1]', 'varchar(255)') STREET,
XmlColumn.value('(profile/entity[@name="ADDRESS"]/attr[@name="CITY1"])[1]', 'varchar(255)') CITY1,
XmlColumn.value('(profile/entity[@name="ADDRESS"]/attr[@name="REGION"])[1]', 'varchar(255)') REGION,
XmlColumn.value('(profile/entity[@name="ADDRESS"]/attr[@name="POST_CODE1"])[1]', 'varchar(255)') POST_CODE1
.
FROM Table
where XmlColumn...
July 2, 2020 at 10:22 pm
since this is an exercise in synching between machines, is it possible for me to spin up a new server not using AlwaysOn, backup/restore, then set up some sort of...
October 12, 2019 at 12:25 am
> Set NEXT USED *before* doing the SPLIT.
AH! That was the secret sauce. Thanks!!!
October 4, 2019 at 7:37 pm
in this case, not using partitions for archiving purposes at all.
What I am using it for is for physical file allocation purposes - we want to isolate certain huge part...
October 4, 2019 at 7:06 pm
adding the multisubnetfailover=true didn't do much.
Strictly using SSMS, I added the multisubnetfailover=true option in the Additional Connection Properties tab and it didn't do much. Whenever it was able to...
March 16, 2016 at 4:52 pm
one table in one file on a separate windows disk (E: drive )
I'm sorry that I used the word "partition"
February 19, 2015 at 1:42 pm
no, I don't have a partitioned table. Just one table on a separate partition.
February 19, 2015 at 1:30 pm
this was all done way before my time.
Partitioning is not feasible at this point - what would you partition on (what would the partition function be?). I...
July 21, 2014 at 1:11 am
looks like we're headed that direction, if I have my way. I was preparing for other options in case management said no.
April 30, 2014 at 9:05 am
when I transfer the temp #t1 table to the S1 server and run everything locally on S1, the query takes about 1 minute and the number of reads is about...
September 19, 2012 at 1:21 pm
Hi Lynn - Unfortunately, on my production server I have a situation where I only have 500G remaining to begin with, so its a chicken and egg thing - I...
July 19, 2012 at 3:14 pm
well, it's not on the default filegroup. Hmm...why do you ask and/or what info are you looking for?
July 19, 2012 at 3:04 pm
Robert Davis (7/19/2012)
July 19, 2012 at 2:56 pm
Viewing 15 posts - 1 through 15 (of 22 total)