Forum Replies Created

Viewing 15 posts - 16 through 30 (of 9,244 total)

  • Reply To: An Introduction To Database Diagrams

    Just about all professional DBAs revoke access to database diagram SPs, it's a best practice.

    I have used dbForge and it's useful but you wouldn't broadcast this to all and sundry

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Disaster Recovery for Azure SQL

    Have you read the documentation Microsoft provide for Azure SQL DB redundancy, that would be a good starting place

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Service Principal Name (SPN) getting this error and then sqlserver restarting.

    Jeffrey Williams wrote:

    I would add to Perry's statements - ideally you should be using MSA or gMSA accounts to run SQL Server services.

    agree, gMSAs are way forward.

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Service Principal Name (SPN) getting this error and then sqlserver restarting.

    EdVassie wrote:

    I found it is best to create the SPN manually, and assign to it the permissions it needs.Β  Doing things this way also requires that you use the same...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: AlwaysOn Standard o Enterprise edition

    Jeffrey Williams wrote:

    https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.html

    Not sure on the licensing - that is going to depend on how AWS charges for each instance.Β  I would definitely look into that and compare the costs.

    It...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Service Principal Name (SPN) getting this error and then sqlserver restarting.

    message 1 is a warming so you can ignore it.

    message 2 is informing you an SPN couldnt be created, what account do you run the sql server service under, guessing...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: SQL Backup folder permission issue

    No you’re just changing the owner of the folder, is your sql instance running under system account Β and not user acct or msa?

    once you’ve taken ownership you can add acls...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Backup taking too much time

    VastSQL wrote:

    Hi Experts,

    One of my Large database having about 4TB in size is taking almost 3 days to complete the backup . To reduce the backup I stripped the same...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Column Encryption/Exporting Windows Certificate

    Steve Jones - SSC Editor wrote:

    There isn't a setting in SSMS I'm aware of.

    No, its pretty much all at the external level to sql server

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Column Encryption/Exporting Windows Certificate

    ok, using AlwaysEncrypted.

    Firstly do you understand exactly how this feature works and the degrees of separation that can be used, see my blog post at this link

    Is your colleague...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Fix orphaned users after restoring database to another server.

    Take this as a base to identify orphaned windows and instance logins, then wrap around to create statements required

    select dp.name, sp.name 
    from sys.database_principals dp
    LEFT OUTER JOIN sys.server_principals...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: KB5046856 fails to install

    also, check the log produced by the installer, full details are in there for failures

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: SQL Backup folder permission issue

    take ownership and change the owner from system to the sql admins group if you have one or server admins.

     

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Column Encryption/Exporting Windows Certificate

    EsquireDeveloper wrote:

    So random question about Windows Certificates --

    I administer and develop a SQL Server DB App -- Back End is on an Azure Server/Front End is MS Access, about 35...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Reply To: Fix orphaned users after restoring database to another server.

    don’t use sysusers and sp_change_users_login, they’re deprecated and will be removed, also don’t use a cursor.

    use the ALTER USER command to fix orphaned database users

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

Viewing 15 posts - 16 through 30 (of 9,244 total)