Viewing 15 posts - 76 through 90 (of 368 total)
Retries index cannot be used because it has operators applied to it before comparison, it is not "naked" attribute.
Index on LastUpdateTime should be used because you need TOP 100 ordered...
February 27, 2013 at 6:08 am
Try uninstalling completely and installing some other edition/version of SQL2012.
February 27, 2013 at 1:28 am
You will not get lock escalation once you simplify your query. 100 rows is not near the escalation threshold, especially if you have right indexes. Check execution plan of your...
February 27, 2013 at 1:25 am
You join TableA with cte which also is TableA, on ID field. Get rid of the hints, get rid of the cte, get rid of the join. It's a plain...
February 26, 2013 at 4:36 pm
Bcp out each table using native format, then bcp in those 3 files into dev db. It is very fast method, approx 100 000 rows per second on my old...
February 26, 2013 at 8:36 am
XACT_STATE() is irrelevant here. Value of -1 means we are in uncommitable transaction and our only option is to rollback.
Since we are doing rollback anyway, checking XACT_STATE() is irrelevant. It...
February 18, 2013 at 6:58 pm
In VM configuration set "RESERVED MEMORY" to at least half (or better - all 64GB) of the RAM you allocated for that guest.
That will prevent the ballooning driver in your...
February 18, 2013 at 5:17 pm
You are doing circular trigger firing:
CREATE TRIGGER ...
ON dbo.ExceptionInstanceTemp -- trigger fires on insert command
INSTEAD OF INSERT
AS
BEGIN
INSERT dbo.ExceptionInstanceTemp --...
February 18, 2013 at 4:55 pm
There is a bug if you grow in 4gb multiples. See http://www.sqlskills.com/blogs/paul/bug-log-file-growth-broken-for-multiples-of-4gb/
Use 8000mb instead of 8gb
February 15, 2013 at 5:23 pm
JKSQL (2/15/2013)
February 15, 2013 at 4:09 pm
"public" is a database role.
"grant execute to public" grants to public database role a permission to execute any executable object (procedure, scalar function) within a database. That is why there...
February 15, 2013 at 3:29 pm
Did you actually tried to execute a procedure or you concluded it doesn't work without trying because you do not see object grants as before?
February 15, 2013 at 2:49 pm
Thanks Gail for the definition. But that does not change the fact that read committed snapshot is not the same as read committed even in terms of "anomalies". "Read committed...
February 11, 2013 at 4:36 pm
Bravo! I used "allow inprocess" to make some db links to work (e.g. when connecting to oracle), but completely forgot that maybe that can help your case.
February 11, 2013 at 4:25 pm
Integrated security and trusted connection are the same thing. For security reasons it is better to use them instead of hard coding a password into connection string. Min and max...
February 11, 2013 at 4:07 pm
Viewing 15 posts - 76 through 90 (of 368 total)