Viewing 15 posts - 886 through 900 (of 2,857 total)
It might not hurt to reach out to Vormetric as well. It is a paid tool, so might as well get their support.
From my experience, once corruption happens, unless I...
September 1, 2021 at 4:16 pm
I think your problem is with your WHEN statements. Let us look at the first one:
WHEN CAST(CONCAT(CREATE_DATE, ' ', CREATE_TIME) AS DATETIME) BETWEEN
dateadd(hh, 15, dateadd(dd, -1, convert(datetime,...
August 31, 2021 at 7:00 pm
I agree... there isn't much to go on.
Having an execution plan and DDL would definitely help us help you. Without that, it is impossible to know what would help. Adding...
August 31, 2021 at 5:43 pm
An alternate solution that doesn't rely on the DelimitedSplit8K:
WITH [SampleData2] ([PERSONNUM], [ORGPATHTXT])
AS
(
SELECT
231089
, './Company/20-00001/120---30-00006/40-00506/50-99506/60-29145/97455001/0097455001/Fire-Grill'
UNION ALL
SELECT
121564
, './Company/20-00001/120---30-00006/40-00073/50-00075/60-26275/68990001/0068990001/Location3/Burger-Cook'
UNION ALL
SELECT
999998
, './Company/20-00001/120---30-00006/40-00073/50-00075/60-26275/77990993/0077990993/Location6/Food-Worker'
)
, [sampledata3] ([PERSONNUM], [ORGPATHTXT], [NoLocation], [ContainsLocation])
AS
(
SELECT
[SampleData2].[PERSONNUM]
, [SampleData2].[ORGPATHTXT]
, REPLACE( [SampleData2].[ORGPATHTXT]
,...
August 31, 2021 at 3:38 pm
Oh I completely agree. you should clone to your local disk, not a network share. And a good way to prove to them that is the way to go -...
August 30, 2021 at 9:00 pm
I'm not that familiar with RStudio, but I know git and their idea of versioning by folder is something unneeded in git.
In git, the way I would handle it is...
August 30, 2021 at 8:18 pm
I actually thought the same thing as homebrew01 - when the query completes, the table should go away. The exception is with temporary tables, which would go away when the...
August 30, 2021 at 5:12 pm
I did find one way to do this, but it relies on the query still being in the plan cache and is not a very "automated" approach and has potential...
August 27, 2021 at 9:23 pm
I was actually just experimenting with this and I am mistaken on how you would find it.
Turns out the plan cache doesn't map this up either... I am going to...
August 27, 2021 at 6:04 pm
Are the table names consistent? What I mean is are they always the same 8 hex characters? If so, then you could use a tool like SQL Search (RedGate free...
August 27, 2021 at 3:57 pm
I think this is possible but messy and mildly risky. Mildly risky as you would need to use dynamic SQL and there is a chance you could lock out an...
August 27, 2021 at 2:17 pm
Going back to the IIF approach, could you not do something like:
=IIf(Parameter!ProviderID.Value = 1, 'A,B',
IIf(Parameter!ProviderID.Value = 2, 'B,C',
IIf(Parameter!ProviderID.Value =...
August 25, 2021 at 3:30 pm
That is just telling you that you need more memory to store query plans OR you need fewer unique query plans running against the instance. With the most of your...
August 24, 2021 at 4:36 pm
I just wanted to second Ant-Green's statement about buying a tool. SQL Monitoring tools are a must for any SQL instance you care about.
And his statement about checking the logs...
August 24, 2021 at 4:24 pm
First, I'd recommend posting some DDL so we can consume your data and do some tests. Nothing worse than untested code, right?
Looking at the image, a potential solution would be...
August 24, 2021 at 4:12 pm
Viewing 15 posts - 886 through 900 (of 2,857 total)