Viewing 15 posts - 226 through 240 (of 1,838 total)
Things to check that you may not realize are stored in the "system" databases:
SELECT...
October 28, 2019 at 3:13 pm
you can try looking in the SQL Server error log like this:
EXEC master.dbo.xp_readerrorlog 0, 1, N'Login Failed'
October 25, 2019 at 6:08 pm
pass.org says the London group can be found at:
meetup group at:
https://www.meetup.com/Microsoft-Data-London/
you may have better luck there.
PASS is the Professional Association of SQL Server, and has lots of resources,...
October 25, 2019 at 5:56 pm
To understand what this query is doing, think about the sets of data this represents. To me, this query says:
October 25, 2019 at 2:14 pm
I believe that the optimizer will see the estimated count from the subquery and determine that the list of postid from the Comments table won't be selective enough to justify...
October 24, 2019 at 6:25 pm
I can answer some of your questions. It is a good decision to not run SSIS as part of the cluster, since it's not a cluster aware process and has...
October 23, 2019 at 7:31 pm
The main confusion I've experienced with the Access Database Engine redistributable is based on trying to install it on a developers computer. Since Visual Studio is still a 32 bit...
October 23, 2019 at 2:25 pm
Also, the Browns haven't won a Superbowl, haven't played a Superbowl and haven't even hosted a Superbowl. That's just sad.
They did win the NFL championship for the 1964 season...
October 22, 2019 at 4:15 pm
is the remote procedure being called with a 4 part name directly or by using OPENQUERY? I try to avoid cross instance items where I can but I do try...
October 22, 2019 at 3:38 pm
Understanding the impact of creating a potential index requires you take a more holistic approach to how that table is used. If you look at sys.dm_db_index_operational_stats and sys.dm_db_index_usasge_stats, you can...
October 22, 2019 at 3:04 pm
I'm a Browns fan... we've forgotten what a "game we shouldn't loose" is.
October 22, 2019 at 12:52 pm
Can the pivoting be done in Excel or whatever reporting tool your company uses? While I have seen the dynamic SQL type solutions work for this, it's probably best to...
October 21, 2019 at 6:57 pm
Over the years as both a Database Developer and DBA, I've found SSIS to be a good tool. As others have said, not necessarily the best tool, but it exposes...
October 21, 2019 at 6:50 pm
The interaction between DBAs and Database Developers can vary from company to company. The Brent Ozar article linked by Beatrix is a good overview of the different positions though. From...
October 21, 2019 at 6:15 pm
I tend to use this instead:
ALTER DATABASE [mydbname] SET RESTRICTED_USER WITH ROLLBACK IMMEDIATE;
this would prevent any non SYSADMIN type users from getting in before the restore...
October 21, 2019 at 6:05 pm
Viewing 15 posts - 226 through 240 (of 1,838 total)