Viewing 15 posts - 2,746 through 2,760 (of 6,038 total)
For those of you who routinely work overtime, does your boss ask you to work overtime, or do you simply feel compelled to put in extra hours when working on...
March 31, 2016 at 7:29 am
Jeff Moden (3/30/2016)
Manic Star (3/30/2016)
March 30, 2016 at 3:13 pm
kiwood (3/30/2016)
March 30, 2016 at 6:49 am
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...
March 29, 2016 at 2:45 pm
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/
March 29, 2016 at 1:50 pm
I'd be more wary of fresh interns and fly by night contractors than I would consultants.
March 29, 2016 at 1:45 pm
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...
March 29, 2016 at 1:29 pm
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
March 29, 2016 at 10:11 am
andrew gothard (3/29/2016)
Eric M Russell (3/29/2016)
March 29, 2016 at 9:42 am
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.
March 29, 2016 at 9:03 am
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. 😎
March 29, 2016 at 8:15 am
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...
March 29, 2016 at 8:06 am
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...
March 28, 2016 at 3:24 pm
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...
March 28, 2016 at 1:55 pm
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...
March 28, 2016 at 10:23 am
Viewing 15 posts - 2,746 through 2,760 (of 6,038 total)