Forum Replies Created

Viewing 15 posts - 4,741 through 4,755 (of 39,824 total)

  • RE: Can a person learn to use SSIS for free ?

    Yes, there are free versions of Visual Studio and the BI development workload is free.

    You can also use developer of SQL Server for free, or Express.

  • RE: Auditing failed login attempts

    What's the code you tried to do these?

  • RE: SP2 CU4

    What if you ran the first time as admin? Or did you?

  • RE: Deterministic functions

    It's not listed in BOL. Perhaps because there could be some issues with AGs/clustering and having the database move between nodes. In that case, the same database you connected to...

  • RE: INSERT INTO one table from Multiple Tables

    What's the error you get? Also, remove the insert and write the select. What happens here?

  • RE: Deterministic functions

    Thanks

  • RE: The Top Rows

    Glad it made you think

  • RE: The Linux CoC

    Closing this thread as it has gotten off topic and a little out of hand. My apologies for not doing this sooner.

    If you wish to discuss politics or...

  • RE: Deleting older data from Large table

    The more data you delete in one batch, the larger the log records and and the more locks taken. Often easier and faster to delete in batches rather than one...

  • RE: SQL Auditing

    That's only a part of what auditing is. Auditing is deciding what information to capture, when, and for this objects. You have the last one, but what information needs to...

  • RE: SQL Auditing

    What do you need to audit? You still haven't defined this.

  • 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...

Viewing 15 posts - 4,741 through 4,755 (of 39,824 total)