Viewing 15 posts - 166 through 180 (of 7,466 total)
That is normal as security has become tighter with the lastest updates.
To ommit this extra security for dbatools you can use
<# https://docs.dbatools.io/Set-DbatoolsInsecureConnection.html
Synopsis
Sets the default connection settings to...
August 29, 2024 at 5:57 am
August 27, 2024 at 1:09 pm
I asked Copilot how to overrule an Nhibernate generated query:
To overrule or customize an NHibernate-generated query, you can use native SQL queries or HQL (Hibernate Query Language). Here are...
August 27, 2024 at 8:22 am
Of course, splitting the query and using UNION ALL to put it all together may be an option too.
August 22, 2024 at 1:00 pm
did you switch from 32-bit version to 64-bit version of the software ? ( We're using the 64-bit versions whenever available )
64-bit versions have always been advised to set max-memory-size...
August 22, 2024 at 11:23 am
of course, there's also the database's page verify option, that protects page content ...
August 21, 2024 at 8:55 am
Anyone who has write auth on the backup file, can manipulate it.
Will it be restorable?
August 21, 2024 at 7:11 am
btw: if you also want an inventory of all members of db group db_owner in all db, you'll need to provide the account Connect to all db.
use...
August 20, 2024 at 2:09 pm
To see the actual db owner of a db, you only need a login.
CREATE LOGIN [test] WITH PASSWORD=N'123Test...........', DEFAULT_DATABASE=[master];
When logged in as that account, the following query...
August 20, 2024 at 8:08 am
Did you try:
Select 'Restored' as source, AppUser.UserId, usergroup.Name, AppUser.UserName
from AppUser
INNER JOIN RestoredDatabase.dbo.AppUser_UserGroup
ON AppUser.UserId = AppUser_UserGroup.UserId
INNER JOIN RestoredDatabase.dbo.UserGroup
...
August 1, 2024 at 6:03 am
Glad you already got a solution.
The flaw / bug in my script was that I hard coded "'production' as source,".
If you remove that "source" column from both queries, you'll get...
July 30, 2024 at 12:17 pm
Did you try:
Select 'Restored' as source, AppUser.UserId, usergroup.Name, AppUser.UserName
from AppUser
INNER JOIN RestoredDatabase.dbo.AppUser_UserGroup
ON AppUser.UserId = AppUser_UserGroup.UserId
INNER JOIN RestoredDatabase.dbo.UserGroup
ON...
July 30, 2024 at 8:16 am
Can you post the exact error message?
July 22, 2024 at 9:50 am
After long hours, days and weeks the system back to healthy state. The biggest problem was bad developers code that had to be changed. That was killing...
July 18, 2024 at 7:45 am
Viewing 15 posts - 166 through 180 (of 7,466 total)