Viewing 15 posts - 1,696 through 1,710 (of 6,679 total)
Then you need to run an extended event session to capture the SQL statements during the load process. You can then review those statements to see how they are updating...
July 14, 2020 at 8:36 pm
One other point about AD groups...you can treat an AD security group as a 'role' in SQL Server instead of creating a role in SQL Server and adding the security...
July 14, 2020 at 7:08 pm
How are these tables replicated/mirrored from the production system? There has to be a process in place to insert/update/delete data - unless it is a 'full' refresh of the data...
July 14, 2020 at 6:57 pm
You need to grant the users access to database mail - to do that you need to add the group to the msdb database and add them to the DatabaseMailUserRole.
Note:...
July 14, 2020 at 5:03 pm
I've removed PK of LegalReferrence Table. Logical Read reduced for this table very good.
Why would you remove the PK constraint from a table? That doesn't make any sense...
July 14, 2020 at 4:42 pm
So - in your for-each loop all you are doing is creating the directory if it doesn't exist? If so - then all you really need to do is move...
July 14, 2020 at 4:41 pm
You can remove the CONCAT function or modify to use + to build that string. That column isn't used.
July 14, 2020 at 1:55 pm
To be honest, I've tried several and I prefer the homegrown native backup methods.
I switched from Quest Litespeed back to native compressed - even on my 3TB+ system. I...
July 14, 2020 at 12:24 am
@Jeffrey Williams...
<li style="list-style-type: none;">
- Due to your hard-coded offsets for the start of each quarter, what's going to happen on a Leap Year?
Nothing - the hard-coded offsets are...
July 14, 2020 at 12:11 am
How are you determining what periods to include? Are you looking for any charges that are due based on the current date - or something else?
Using what I previously posted...
July 13, 2020 at 9:53 pm
Hi Steve, appreciate this article. I realize it's getting close to a year old, so not sure if you will see this, but was curious about something... It seems...
July 13, 2020 at 4:39 pm
John,
I don't. MS has been very resistant to syntactic sugar, basically anything that isn't hard to program, they don't want to build and support. They think this is why...
July 13, 2020 at 4:35 pm
How about something like this:
Drop Function If Exists dbo.fnGetDates;
Go
Create Function dbo.fnGetDates (
@fromDate...
July 12, 2020 at 5:31 pm
If I am reading your function correctly - all it is doing is splitting the delimited string and returning the values as rows. There is no reason to...
July 11, 2020 at 4:30 pm
If I am reading your function correctly - all it is doing is splitting the delimited string and returning the values as rows. There is no reason to do this...
July 11, 2020 at 2:27 pm
Viewing 15 posts - 1,696 through 1,710 (of 6,679 total)