Viewing 15 posts - 1 through 15 (of 144 total)
I have been sitting here with an upgrade to an Oracle 10 system lingering on the books for the last 2.5 years. I am thinking of having a little party...
February 11, 2020 at 4:30 pm
The problem is that charindex will return the position of the beginning of the token (files_), rather than the position of the end of the token. If you add 6...
January 24, 2020 at 7:39 pm
OK. Found the relevant bit here: https://docs.microsoft.com/en-us/sql/relational-databases/security/authentication-access/database-level-roles?view=sql-server-ver15
db_securityadmin
Members of the db_securityadmin fixed database role can modify role membership for custom roles only and manage permissions. Members of this role...
January 24, 2020 at 4:59 pm
You can get around this, by creating a role, and adding that new role as a user to the db_datareader group. Then your user can add members to the new...
January 24, 2020 at 4:52 pm
You probably want to have a look at the COALESCE function:
This is assuming that the query you have already has all of the required columns available in the...
January 22, 2020 at 4:13 pm
I would be tempted to run perfmon alongside the event session, to see if the number of Batch Requests/sec does not also jump at the same time. It may be...
January 13, 2020 at 7:29 pm
Actually, my first thought is probably a little off.
The difference is in the predicate on the table Podrobnosti (P). Since the (first) inner join is on the TaxonAutoID, it can...
January 13, 2020 at 7:21 pm
Think of "Left Join" as a different operator from "Inner Join". That is why SQL Server is needing to generate a different plan. Unless you put in parentheses to force...
January 13, 2020 at 6:58 pm
I think the order of operations regarding the left join is coming into play here. The optimizer is leaving the door open to the join between P and T filtering...
January 13, 2020 at 4:37 pm
Instead of setting the database to Single User mode, you may have been able to simply set that database offline, then drop. Drops of offline databases do not include file...
December 18, 2019 at 8:25 pm
For item 1, you can try the v$license view to see what the high water mark is for sessions. The users may not be actually running anything with those sessions,...
December 11, 2019 at 8:05 pm
I agree. The uninstaller could use a bit better wording. I have been caught trying to uninstall some feature or other, and thinking exactly that the whole installation would be...
December 11, 2019 at 3:47 pm
Heh. I think you trust me more than my boss does 😉
December 11, 2019 at 3:01 pm
Hmm. Same query plan? Are there any external influences? References to other databases, linked servers, or even custom CLR types/functions?
December 10, 2019 at 4:42 pm
Biggest question is going to be where are the ReportServer and ReportServerTempDB databases? If they are on the local database engine, then they would have to be moved somewhere with...
December 10, 2019 at 4:18 pm
Viewing 15 posts - 1 through 15 (of 144 total)