Viewing 15 posts - 5,161 through 5,175 (of 39,774 total)
Thanks. I don't see the tag on Twitter. Did it get tagged elsewhere?
July 6, 2018 at 9:43 am
Call Microsoft. The log file needs the data file. The data file can be read with a hex editor, but you need someone with the expertise to do that.
July 6, 2018 at 9:33 am
July 6, 2018 at 9:31 am
SELECT t.x.value('COLUMN[1]', 'varchar(50)') AS FirstName
, t.x.value('COLUMN[2]', 'varchar(50)') AS LastName
, t.x.value('COLUMN[3]', 'varchar(50)') AS CountryName
FROM @xml.nodes('/RESULTS/ROW') AS t(x);
July 6, 2018 at 9:20 am
You are welcome. Hope we see some posts.
For the tagging, I'll think a bit and try to structure the issues as I see them.
July 5, 2018 at 4:37 pm
Tagging is coming (I think) in the upgrade to this forum software. We have that on top of a list, just waiting on a few resources. Tagging for articles is...
July 5, 2018 at 1:54 pm
I'd add a field to the staging table that allows me to batch things. So if I loaded 10 records, I'd mark those 10 as "in process", and if there...
July 5, 2018 at 11:03 am
You can use Get-Credential to enter new credentials.
July 5, 2018 at 10:59 am
Thom has some good thoughts. I'd also add what is your skillset? Or that of your team?
If you have mostly Linux or Windows experience, it's a con to...
July 5, 2018 at 10:53 am
There are items inside SQL Server that use the CLR objects, so the .NET framework is required.
July 5, 2018 at 9:54 am
run dbcc to check this table, and really, you ought to run a dbcc checkdb across the entire database.
July 5, 2018 at 9:44 am
Well, no real problem, but often the patching process will require the service to stop and restart. A host OS reboot might occur. Actually, I'm not sure if any CU...
July 5, 2018 at 9:44 am
I think you're right, in that you need SA and you get one failover. You'd be OK with the licensing here. We have BAGs here, but we assume that failover...
July 5, 2018 at 9:39 am
July 5, 2018 at 9:31 am
Are you trying to somehow track a missing index to a query?
You capture warnings: https://sqlperformance.com/2015/10/extended-events/capture-plan-warnings
July 5, 2018 at 9:30 am
Viewing 15 posts - 5,161 through 5,175 (of 39,774 total)