Viewing 15 posts - 6,226 through 6,240 (of 39,754 total)
That might be it. Certainly there's a bit of mystery for me in how this actually happens.
I think the SSL implementation is a little hokey in SQL Server and...
October 10, 2017 at 9:48 am
Perhaps. I think Excel is great in many ways. More, I think the idea of programming as a part of basic applications is a bad idea.
October 10, 2017 at 9:26 am
This doesn't quite make sense. You're using data compression, but you can't install SQL 2016? Or do you mean you want to install SQL 2016, but can't on Windows 7?
October 10, 2017 at 9:23 am
Compression takes extra CPU. Typically this loss of CPU cycles is made up for by reducing I/O, but that would be something you'd have to test with your system and...
October 10, 2017 at 9:12 am
Big hole. The idea with Always Encrypted is that the server is untrusted, the clients are. If you want to implement something, I'd suggest that you use an external application,...
October 10, 2017 at 9:10 am
Can you query sys.availability_databases_cluster?
October 10, 2017 at 9:04 am
Do you mean data captured from SQL Audit? Or do you mean track all activity that is executed through SSMS? If it's the latter, you can set up some auditing/extended...
October 10, 2017 at 9:02 am
Please script the code for the creation of your database and post it.
October 10, 2017 at 8:54 am
This may help you to query the default trace: http://www.sqlservercentral.com/articles/SQL+Server+2005/64547/
October 10, 2017 at 8:53 am
I'm not sure what you mean here. What is the query going to look at? Are you thinking some query can look backward at activity in SQL Server? Are you...
October 10, 2017 at 8:52 am
Adding production to VCS is usually a bad idea. Your version control might be in flux, and there are potential issues if you end up syncing production with the VCS....
October 10, 2017 at 8:48 am
SET NOCOUNT OFF
;
SET ROWCOUNT 0
;
DECLARE @StartDate DATETIME
;
DECLARE @EndDate DATETIME
;
SET @StartDate
= DATEADD(
d
, DATEDIFF(
...
October 10, 2017 at 8:46 am
Or PowerShell. Copy-File will help you.
October 10, 2017 at 8:43 am
My only suggestion here would be to load this into a table and add a row_number(), which will give you some ordering. As this appears to be a one time...
October 10, 2017 at 8:43 am
Viewing 15 posts - 6,226 through 6,240 (of 39,754 total)