Viewing 15 posts - 1 through 15 (of 19 total)
if you can restore close to the failure try this:
DECLARE @filename nvarchar(1000);
SELECT @filename = cast(value as nvarchar(1000))
FROM ::fn_trace_getinfo(default)
WHERE traceid = 1 and property = 2;
SELECT *
FROM ::fn_trace_gettable(@filename, default) AS ftg
March 16, 2018 at 5:01 am
if you have backups and happen to have a log backup close to the time of failure you may be able to restore that and query what was running at...
March 16, 2018 at 4:58 am
if SQL services were stopped i cannot think of a way
is this the first time it has happened?
do you limit the size of TempDB?
how big is...
March 16, 2018 at 4:56 am
the largest database i have worked with was only 2tb
but i have worked mainly in OLTP environment
i would not mix OLTP and OLAP queries on the same database...
March 16, 2018 at 4:37 am
how are you currently using the database and how is it performing?
how much I/O do you generate during peak usage?
what is your recovery requirements?
March 16, 2018 at 3:55 am
what hardware are you planning to use?
will this be hosted or local?
i assume you wont be using azure or another SaaS offering?
March 16, 2018 at 3:54 am
that is a bit above my experience....SQL will happily hold a table of that size....but whether you can actually use it efficiently depends on your application, code etc.
March 16, 2018 at 3:42 am
no limit to table size apart from the amount of disk space available
limits exist for partitions per table or index (enterprise version) which is 15000 i believe
limit on...
March 16, 2018 at 3:16 am
since checking the stats it seems this wait type has been around for a while...sorry...misinformation!
March 16, 2018 at 3:13 am
sure...added as txt file....no graph im afraid
let me know if this is ok...if not i should be able to screenshot but txt may be a little small
March 15, 2018 at 4:29 am
wrong choice of words....the locking behavious is obviously correct...you would know above all others!!
whether that is happening here may be in question depending on the exact deadlock information
March 14, 2018 at 8:40 am
many thanks gail
when you have a second to confirm your theory by checking the deadlock graph.
i missed the page/table lock above the rowlock bit....that makes much...
March 14, 2018 at 7:44 am
just to note....these two queries deadlock frequently and either can be the victim...depends on timing
was assuming it was an index lock maybe but all locks seem to be...
March 14, 2018 at 6:40 am
no...i asked one of their support engineers what the wait type was and the reply was: are you seeing any performance issues?
so im guessing they want to investigate...
March 13, 2018 at 7:56 am
oops....first query above was for my SPID....without i see about 35 application sessions
slight edit gives this:
March 8, 2018 at 2:38 am
Viewing 15 posts - 1 through 15 (of 19 total)