Viewing 15 posts - 1,036 through 1,050 (of 1,838 total)
There's a few things that it could be, the first two things that come to mind would be statistics and what's called parameter sniffing.
Statistics play an important part...
March 24, 2017 at 3:04 pm
I don't think there's a greater test of one being a DBA than being...
March 24, 2017 at 9:17 am
Restoring a backup from a 32 bit install to a 64 bit install shouldn't be a problem, I've done that myself a number of times during upgrades like this. You...
March 24, 2017 at 8:34 am
We have a fairly standard process, separate environments for development, quality assurance. user acceptance, production, and appropriate approvals between each level, with a change management meeting occurring before UA things are...
March 24, 2017 at 7:44 am
you can do an UPDATE with a JOIN in it like it shows in this link:
https://msdn.microsoft.com/en-us/library/ms177523.aspx#OtherTables
March 23, 2017 at 1:53 pm
March 23, 2017 at 11:53 am
March 23, 2017 at 11:40 am
it's hard to tell without knowing what the source tables structure is and the data in them look like. Is the MRN number what relates these records together?
March 23, 2017 at 11:15 am
maybe a database level DDL trigger like this?
CREATE TRIGGER audit_Security_events ON DATABASE --ALL SERVER --DATABASE
FOR GRANT_DATABASE, DENY_DATABASE, REVOKE_DATABASE
AS
DECLARE @event xml, @subject...
March 22, 2017 at 3:32 pm
I'm not sure what you mean by 2 parameters, it looks like your dbo.Log procedure has 6 parameters. You'd probably want to call this in some kind of TRY-CATCH block, such...
March 22, 2017 at 2:59 pm
Unfortunately the easiest way to look at this is using the old sys.sysindexes catalog view which has the rowmodctr column. SQL Server won't automatically update statistics until 20% + 500...
March 22, 2017 at 2:43 pm
March 22, 2017 at 1:32 pm
I don't know if you can get an e-mail at the time when a permission change happens, I've created reports before using the default trace like the following code:
[code...
March 22, 2017 at 1:22 pm
how about doing something like this?
DECLARE
@BeginDate DATETIME = DATEADD(wk, DATEDIFF(wk, 0, GetDate())-1, 0),
@EndDate DATETIME = DATEADD(wk, DATEDIFF(wk, 0, GetDate()), 0);
...
WHERE...
March 22, 2017 at 11:57 am
Index maintenance such as rebuild or reorganization will both contribute to transaction log file growth:
https://blogs.msdn.microsoft.com/timchapman/2012/09/28/index-rebuild-vs-reorganize-the-transaction-log-edition/
How are you performing your index maintenance? Hopefully something like the free scripts...
March 20, 2017 at 2:30 pm
Viewing 15 posts - 1,036 through 1,050 (of 1,838 total)