Viewing 15 posts - 19,516 through 19,530 (of 39,903 total)
The "log" is a misnomer, IMHO. It's more of a change tracking file for the db than a log.
You shouldn't, in general, read the log. Especially now with auditing...
June 15, 2010 at 3:09 pm
I tend to agree. It seems that every game is making up for the previous ones. The officials seem to go back and forth between giving calls to the Celtics...
June 15, 2010 at 3:01 pm
I can see a GUID clustered if it's built on NewSequentialID() only.
June 15, 2010 at 2:52 pm
My pleasure, and good luck here. Not sure if I'd use the CTE for future versions here. If you are using it a lot, then it might be nice as...
June 15, 2010 at 2:51 pm
1. The performance hit for GUIDs is the size, and the fact that if this is clustered, you can create lots of page splits. I tend to agree with you....
June 15, 2010 at 2:40 pm
You don't put the variable in the view. You'd have:
CREATE VIEW tAdjustmentEx
as
SELECT
A.Id, D.AdjustmentHeaderId, A.AdjustmentDetailId,
D.TypeCode, A.MeasurementId, A.Value, A.Row
FROM tAdjustment AS A
INNER JOIN tAdjustmentDetail AS D
ON A.AdjustmentDetailId=D.Id
And then...
June 15, 2010 at 2:37 pm
Short answer: you can't turn off the log. That's part of how ACID principles are maintained and you have an intact database system, with the log.
So with that being the...
June 15, 2010 at 2:35 pm
I think you need to drop and recreate the login if it did not transfer. Did the SQL Server host get moved OK? Is the service account set to a...
June 15, 2010 at 12:18 pm
You could use something like bitlocker on Windows to encrypt the data, but other than a third party, there's no way to encrypt a SQL Server backup natively.
June 15, 2010 at 12:15 pm
A view would work. The WITH indicates a CTE, which is essentially a materialized view for that query.
You could use a derived table as well, however I think it's...
June 15, 2010 at 9:47 am
Backups used to be called dumps in SQL Server. As mentioned above, it's a backup.
June 15, 2010 at 9:44 am
No, You can add a password, but the files are not encrypted and can be read with a text editor.
June 15, 2010 at 9:43 am
I think that the sports fans do fine when they're separated. It seems when they're in the same physical location we have issues.
It is interesting to see how excited people...
June 15, 2010 at 9:35 am
Are the backups going through an Agent on Commvault? Or are these disk files being pulled to tape only?
I would certainly check with CommVault and be sure that you don't...
June 15, 2010 at 9:33 am
If they are clustered resources, then as George mentioned, they'll fail over. Is the backup drive 1 from Node 1 visible on Node2? It should be.
June 15, 2010 at 9:30 am
Viewing 15 posts - 19,516 through 19,530 (of 39,903 total)