Forum Replies Created

Viewing 15 posts - 4,666 through 4,680 (of 39,740 total)

  • RE: The Linux CoC

    stevescanlan - Wednesday, November 14, 2018 10:13 AM

    Are you saying that these conventions are taking place in a location that isn't...

  • RE: Licensing

    There isn't an expiration date, as noted, for licenses editions. For evals, use this:

    SELECT

    @@SERVERNAME SERVERNAME,

    CREATE_DATE ‘INSTALALTIONDATE’,

    SERVERPROPERTY(‘EDITION’) ‘Version’,

    DATEADD(DD, 180, CREATE_DATE) AS ‘EXPIRY DATE’

    FROM SYS.SERVER_PRINCIPALS

    WHERE SID =...

  • RE: The Linux CoC

    skeleton567 - Wednesday, November 14, 2018 9:28 AM

    Steve, this will possibly get me banned from this site,.

    Not banning you, and not...

  • RE: The Linux CoC

    Eric M Russell - Wednesday, November 14, 2018 10:03 AM

    ..Certainly some people want the freedom to behave as they see fit,...

  • RE: The Linux CoC

    It's not just booze and it's not not something I have a solution for. In any size group, there will be people that behave poorly. Rather than create stringent rules,...

  • RE: SQL Auditing

    There isn't a best solution. Every solution has tradeoffs, and depending on what you audit, this can be a tremendous amount of data.

    If you use SQL Audit...

  • RE: TDE and Dynamic data mask

    This does work. I tested it today to verify.

    TDE encrypts data at rest. When an authorized user connects and queries data, the database engine decrypts the data in...

  • RE: Good resources for learning T-SQL reasonably thoroughly?

    That's where I'd start. The stairway gets you moving. Itzik's book is great. From there you could look at the Hi Performance SQL Server book and the T-SQL Recipes books,...

  • RE: SQL ALWAYS ON with Failback and Log Update

    Let's make this easier. Node1 is the original primary and Node2 is the original secondary.

    When Node1 comes back, it's not going to failback immediately. It comes back as...

  • RE: SQL Auditing

    What are you trying to accomplish with tracking changes? What's the purpose?

  • RE: cloning Azure DEV to Azure Prod

    Did you choose the Azure Resource Manager (ARM) deployments? All these resources should have ARM templates available in the portal or with AzureRM PoSh cmdlets. You can get the templates,...

  • RE: Windows Updates cause applications to disconnect from SQL Server

    What I would do is have other apps that can connect to the instance (SQLCMD, SSMS, etc.) and verify they work after the kbs are installed. Ultimately, without a test...

  • RE: Trigger on saving a stored procedure or function.

    Not to be pedantic, but you're not saving the procedure or function. You're compiling it each time. If you want to do this, you can use a DDL trigger,but you...

  • RE: Short Masks

    Thanks

Viewing 15 posts - 4,666 through 4,680 (of 39,740 total)