Forum Replies Created

Viewing 15 posts - 2,746 through 2,760 (of 6,035 total)

  • RE: Examining SQL Server 2016

    The addition of primary keys, foreign keys, and non-clustered indexes to Clustered ColumnStore makes it more of a mature candidate for data warehousing tables. Also, our department may be implementing...

  • RE: Track Your Consultants

    Has anyone confirmed this works with SSMS and know what steps are needed for the client side connection?

    How to configure SSL encryption in SQL Server

    https://www.mssqltips.com/sqlservertip/3299/how-to-configure-ssl-encryption-in-sql-server/

  • RE: Track Your Consultants

    I'd be more wary of fresh interns and fly by night contractors than I would consultants.

  • RE: Cross data between Oracle and SQL

    ODBC is just the provider library. OLEDB is another option, but I guess you're really asking about how to setup a linked server, for querying Oracle within SQL Server.

    To create...

  • RE: Track Your Consultants

    Where does optional SSL encryption fit into this picture? Does anyone here use this?

    https://technet.microsoft.com/en-us/library/ms189067(v=sql.105).aspx

  • RE: On formatting SQL code

    andrew gothard (3/29/2016)


    Eric M Russell (3/29/2016)


    If management measures developer productivity by the daily average number of lines coded and unit tested, then that obviously influences how aggressively you would use...

  • RE: DBA Service

    Ask them what monitoring tools they use: SQLSentry, RedGate SQL Monitor, etc. They should also provide you with regular status reports and visibility into the monitoring logs.

  • RE: On formatting SQL code

    If management measures developer productivity by the daily average number of lines coded and unit tested, then that obviously influences how aggressively you would use line breaks. 😎

  • RE: Varchar usage

    Setting the upper limit on a VarChar(X) column is a form of logical constraint where X is the maximum length of data that a user would correctly supply. It's sort...

  • RE: Protecting sa

    It should be considered best practice to drop the 'SA' account. However, I still create a MSSQL authenticated account with SYSADMIN membership, because there are a handful of occasions where...

  • RE: On formatting SQL code

    TomThomson (3/28/2016)


    ...

    Most stored procedures should fit onto a page (A4 or American letter) - say 60 lines of tex using sensible font. A page and a half or...

  • RE: Querying multiple databases

    kaplan71 (3/28/2016)


    Hello --

    ...

    How can the names of the databases be listed in the output with the fields?

    You can add db_name() function to the resultset.

    exec sp_MSForEachDB

    '

    USE ?;

    if exists

    (select table_name...

  • RE: indexes-non clustered

    When creating a non-clustered index, each covered column is sorted in ascending order by default, but you can specify optional DESC (decending) or ASC (ascending) keyword following a column's name.

  • RE: Dexterity Matters

    It's important for a software tool, especially a database management tool like SSMS or VS, to provide a visual queue that environmental context has changed. I believe we've all experienced...

  • RE: On formatting SQL code

    Clean SQL runs better for the same reason that a clean car runs better. It's simply that those same developers who take time to format their code in a meaningful...

Viewing 15 posts - 2,746 through 2,760 (of 6,035 total)