Viewing 15 posts - 2,056 through 2,070 (of 5,394 total)
It simply means that you cannot have compressed and uncompressed backups on the same backup media, which means a file (or set of files if you're striping).
FORMAT will overwrite any...
January 18, 2012 at 3:59 pm
SQLRNNR (1/18/2012)
Gianluca Sartori (1/18/2012)
SQLRNNR (1/18/2012)
I have been able to copy...
January 18, 2012 at 2:25 pm
SQLRNNR (1/18/2012)
I have been able to copy the xml and...
January 18, 2012 at 2:01 pm
GilaMonster (1/18/2012)
I was going to compose another reply, but thought better of it.
Kudos for your patience.
Also with today's interview questions zealot: http://www.sqlservercentral.com/Forums/UserInfo1006716.aspx
I understand there's a language issue, but goodness, read...
January 18, 2012 at 8:58 am
From time to time, the questions are really getting worse.
This one made me LMAO:
http://www.sqlservercentral.com/Forums/FindPost1237946.aspx
OP: I have performance issues and I'm totally clueless.
Gail: Hire a consultant.
OP: I'm the consultant.
Gail: Hire a...
January 18, 2012 at 8:40 am
I think you're looking for this:
SELECT Id, IP, Requests
FROM (
SELECT *, RNK = DENSE_RANK() OVER(ORDER BY Requests DESC)
FROM ClientRequests
) AS data
WHERE RNK <= 3
January 18, 2012 at 5:57 am
ananda.murugesan (1/18/2012)
Total 600 GB HD, and configured RAID 5 in OLTP SQL server 2008 R2, C drive 80, D drive 520 GB
As per these disk configuration, could anyone suggestion me...
January 18, 2012 at 4:52 am
I prefer using BEGIN/END because it prevents errors.
Consider this example:
CREATE PROCEDURE doSomething
AS
UPDATE SomeTable
SET SomeColumn = SomeValue
WHERE SomeCondition IS...
January 18, 2012 at 4:27 am
MasterDB (1/18/2012)
I've not created or automated any job to do run DBCC CHECKDB.
Why not? You should IMHO.
January 18, 2012 at 3:22 am
There are lots of ways to achieve that, but I suspect none of them is efficient enough.
Here are a couple of ways:
-- Using CASE
SELECT SomeColumns
FROM table1
INNER JOIN table2
...
January 18, 2012 at 2:42 am
Robert Murphy UK1 (1/18/2012)
Have you tried a reboot? :w00t:I think a lot more detail on the problem is needed in order to help you.
No, please, don't reboot. Leave the instance...
January 18, 2012 at 2:33 am
vultar (1/18/2012)
You will also need to stop the SQL agent if it's it still running.
There's no need to. I would not recommend this (or anyhing else) until the OP comes...
January 18, 2012 at 2:32 am
Not enough info to give a sensible answer IMHO.
Usually you see performance gains when partitioning on a column that is frequently used in WHERE clauses. This helps the optimizer finding...
January 18, 2012 at 2:08 am
fahey.jonathan (1/17/2012)
January 18, 2012 at 1:59 am
Viewing 15 posts - 2,056 through 2,070 (of 5,394 total)