Viewing 15 posts - 871 through 885 (of 2,857 total)
I think the big questions that come to mind are:
1 - are you fully patched?
2 - is the latest .NET installed?
3 - how are you calling the linked server? Is...
September 15, 2021 at 9:39 pm
To me it looks like it isn't a SQL Server issue, but something with "PIPC" or "pisdk". Not sure what those are, but google makes it look like it is...
September 15, 2021 at 7:00 pm
There is a lot of area to go with your question. Not seeing high CPU, memory, or disk queue may or may not tell you much. For example, if your...
September 14, 2021 at 5:58 pm
Looks like a permission related error to me. Since it works with the local account, it is probably configured to allow that account to view contents (browse at a minimum),...
September 14, 2021 at 5:42 pm
Personally, this feels like a job for powershell, not SQL Server.
Just because SQL Server CAN do it, doesn't mean it SHOULD do it.
SQL Server is a database engine and you...
September 14, 2021 at 5:39 pm
As a thought - are you sure it is the conversion that is causing the slowness?
What I mean is what if you take out the INSERT INTO statement and just...
September 13, 2021 at 7:42 pm
I am not certain on the default trace, but I think you could set up an XE session to capture that.
How is the tool running the drop script? I am...
September 13, 2021 at 7:29 pm
SSDT, if I remember right, allows for a lot of different things you can do with it including, but not limited to, SSRS, SSIS, SSAS, etc.
Knowing what type of project...
September 10, 2021 at 6:58 pm
To me it looks like whatever process you have for populating the parameter (@DBName) is busted.
Now as to why it isn't working, you would need to look into what populates...
September 10, 2021 at 6:07 pm
I agree with Grant and Piet here - there are no shortcuts with it.
One thing that can help though and I strongly recommend is to adopt a coding standard AND...
September 9, 2021 at 8:02 pm
My approach would be to look at where the problem is and determine what you want to do to fix it.
What you indicated is that the string MUST end in...
September 9, 2021 at 5:43 pm
If I am understanding your request properly, something like this should work, right:
WITH [cte]
AS
(
SELECT
[Mobile]
, [WorkTelephone]
, [HomeTelephone]
, [FirstName]
, [LastName]
, [PolicyNumber]
, COUNT(1) OVER (PARTITION BY
[Mobile]
, [FirstName]
,...
September 8, 2021 at 2:39 pm
oh sorry. I misunderstood. I think that will be a bit more challenging as you are essentially going to need to rip apart the XML. I think this may fall...
September 3, 2021 at 2:48 pm
I don't see why you can't do this. You already have it started, just need to expand on it to capture each and every element in the XML. Something along...
September 2, 2021 at 5:24 pm
Viewing 15 posts - 871 through 885 (of 2,857 total)