Viewing 15 posts - 421 through 435 (of 1,193 total)
Mike Good (5/27/2016)
May 27, 2016 at 11:45 am
The amount of space within the log file that is actively being used can fluctuate based on several things, including backups, active transactions, replication, Availability Groups, etc.
What you're seeing is...
May 26, 2016 at 12:57 pm
I guess my morning caffeine hadn't totally kicked in...
Heh, been there more times than I'd care to admit 🙂
May 26, 2016 at 12:35 pm
drew.allen (5/26/2016)
May 26, 2016 at 10:54 am
Exactly how are you comparing the before and after results (the query used)?
For the trace, are you sure there are no filters configured? Exactly how are you querying the trace...
May 26, 2016 at 10:52 am
ramana3327 (5/24/2016)
The alter database to restricted mode is failing because some other sysadmin connection is being used that time.
This is exactly running in step1
BEGIN
DECLARE @kill varchar(8000) = '';
SELECT...
May 24, 2016 at 1:35 pm
Pretty sure it requires sysadmin.
There's an active Connect item complaining about this: https://connect.microsoft.com/SQLServer/feedback/details/351698/msit-mso-debugging-sql-query-fails-with-an-error-the-execute-permission-was-denied-on-the-object-sp-enable-sql-debug.
The Microsoft engineer who responded initially said:
The minimum security requirement is sysadmin. This is by design from...
May 24, 2016 at 9:24 am
stephen.lawrenson (5/24/2016)
Hi Ryszard,...
A non clustered index, at the leaf level, contains the clustering key (hidden column/s at the end of the defined index).
...
Additionally, the clustering key is included...
May 24, 2016 at 8:34 am
If 1) this really is all in a single job, 2) the ALTER DATABASE ... SET RESTRICTED_USER is in the first job step, and 3) the first job step is...
May 23, 2016 at 2:14 pm
I've found that most commonly people hit that error when there's an ALTER DATABASE command to change the state of the DB that has not yet completed, usually because the...
May 23, 2016 at 12:57 pm
Is it possible, i.e., not a logical contradiction? Sure.
All it takes is for the queries blocking one another to tax a resource (most likely CPU or storage) for which response...
May 19, 2016 at 9:41 am
The most common cause of this is that the database is using the full recovery model but log backups are not being taken.
Check on that first.
Another common cause is a...
May 17, 2016 at 6:11 pm
sqlnaive (5/17/2016)
May 17, 2016 at 5:21 am
Ah, if you can check all the distinct dates, then it must be a small(ish) list.
Any chance of posting sample DDL and data that recreates the issue, or even just...
May 16, 2016 at 8:32 am
Also as I mentioned, if mentioning this only derivation in select clause, it works fine.
And I had explained how the inclusion of other columns could lead to such a...
May 16, 2016 at 7:51 am
Viewing 15 posts - 421 through 435 (of 1,193 total)