Viewing 15 posts - 11,281 through 11,295 (of 39,793 total)
Feel free, but please tackle one at a time only.
February 18, 2014 at 8:40 am
These would be good. We'd be looking for 2-3 per article to keep this relatively short.
February 18, 2014 at 8:40 am
teresalinus (2/18/2014)
February 18, 2014 at 8:31 am
An HTML file with the titles or with all the content?
February 18, 2014 at 8:27 am
Bump. This one is open for anyone again. Wayne decided not to tackle it.
February 18, 2014 at 8:26 am
Jeff Moden (2/16/2014)
As I stated peviously, the OP is frequently the worst person to judge answers. You have to remember that they asked the question because they don't know...
February 18, 2014 at 8:18 am
That's a good question. I was thinking data oriented, building skills to work with the language, but there's probably room for 2 if someone wants to explain R to DBAs,...
February 18, 2014 at 8:17 am
Evil Kraig F (2/13/2014)
I'll have to try to sit in on Steve's talk one day, but I want to see the nuts and bolts of the final produced product. ...
February 13, 2014 at 11:45 am
Eric M Russell (2/13/2014)
February 13, 2014 at 11:41 am
waxingsatirical (2/13/2014)
February 13, 2014 at 11:37 am
You can probably modify this to help you and look for "recovery complete". :http://timlaqua.com/2009/09/determining-how-long-a-database-will-be-in-recovery-sql-server-2008/
The problem is that SQL Server doesn't log individual database times. It logs the start of recovery,...
February 13, 2014 at 11:26 am
Does this not work?
CREATE TABLE MyTable
(
_key_out VARCHAR(10)
, myval int
);
INSERT INTO mytable SELECT 'A', 1
INSERT INTO mytable SELECT 'A', 2
INSERT INTO mytable SELECT 'B', 1
INSERT INTO mytable SELECT 'C',...
February 12, 2014 at 11:10 am
TDE will not work, for the reasons Nadrek gives above.
You can encrypt data in the tables with symmetric key encryption, and store the keys in your application. USing temp keys,...
February 12, 2014 at 10:47 am
I'm not completely clear what you're doing. Do you mean you have a _key_out field in every table in the DB?
Are you trying to get
select count( distinct _key_out)...
February 12, 2014 at 10:43 am
Personally I'd suggest you use Powershell and call that from xp_cmdshell. If you move this to an agent job or elsewhere, it's cleaner, and more flexible.
Here's a starter article: https://blogs.technet.com/b/heyscriptingguy/archive/2013/04/19/use-powershell-to-copy-files-and-folders-to-a-new-location.aspx
February 12, 2014 at 10:39 am
Viewing 15 posts - 11,281 through 11,295 (of 39,793 total)