Viewing 15 posts - 6,091 through 6,105 (of 22,211 total)
Question: Can you outline for me how to best design a system so that I can move it between Oracle, SQL Server, MySQL, DB2, Couchbase, DocumentDB, Hadoop, Redshift, Azure SQL...
May 15, 2015 at 6:32 am
Jeff Moden (5/14/2015)
Eric M Russell (5/14/2015)
Define "working correctly".Easy... it doesn't automatically call me at 3 in the morning even if it broke. 😛
Guys, you're getting this one all wrong. The...
May 15, 2015 at 6:28 am
I'd strongly recommend getting the execution plan and understanding how SQL Server is interpreting your T-SQL. That will drive you towards making positive choices in optimizing the code.
May 15, 2015 at 6:22 am
GilaMonster (5/14/2015)
dwain.c (5/14/2015)
I gotta wonder what the ANSI standards say about this one!Perfectly legal afaik.
It's legal. I've seen this before. List all the tables and then all the ON clauses...
May 15, 2015 at 6:19 am
If you're using the syntax BACKUP DATABASES, unless you specify a list of databases to include or exclude (and you have to use the EXCLUDE key word), then it's backing...
May 15, 2015 at 6:16 am
Build a database that categorizes your books, movie collection, My Little Pony collection, whatever. Take the time to normalize, think about the possible reports you could run 'All science fiction...
May 15, 2015 at 6:12 am
If you connect to the server using SQL Server Management Studio, you'll see which database is offline or in suspect mode. Otherwise, you can query sys.databases to see the current...
May 15, 2015 at 6:08 am
There are a couple of small ways you can manipulate plan cache though. You can drop an individual plan from cache by passing the plan handle. You can also avoid...
May 15, 2015 at 6:06 am
I would probably look to Extended Events to track this. You'd probably need to capture individual statements. If you use Causality Tracking, you should be able to see the chain...
May 15, 2015 at 6:02 am
It is possible for the backup itself to become corrupted. I'm with Eirikur, test it on the client side first to see if they get the same issue.
May 15, 2015 at 5:59 am
GilaMonster (5/14/2015)
Over the years I've been very careful to keep my blog completely non-commercial, no adverts, no plugs for my company, nothing. Partially because when I...
May 15, 2015 at 4:22 am
Vyper426 (5/14/2015)
May 15, 2015 at 4:10 am
jasona.work (5/13/2015)
:hehe:
On an unrelated note, does anyone here have any experience with Barracudda Networks backup appliance, both...
May 14, 2015 at 1:01 am
Paul Randal (5/13/2015)
If you're offloading DBCC...
May 14, 2015 at 1:00 am
Jeff Moden (5/13/2015)
May 14, 2015 at 12:56 am
Viewing 15 posts - 6,091 through 6,105 (of 22,211 total)