Viewing 15 posts - 3,331 through 3,345 (of 13,469 total)
i don't think there's a limit on RAM;
the default setting is 2048 terabytes of ram as the default maximum setting until you change it to something less than what is...
June 4, 2013 at 1:32 pm
Howard I have 2012, but I'm not sure where, specifically, you are talking about where the objects get bracketed by the quotename() function;
do you mean when you script an object?...
June 4, 2013 at 1:27 pm
GabyYYZ (6/4/2013)
SQLRNNR (6/4/2013)
GabyYYZ (6/4/2013)
Back...what I miss?We are busy writing the DR plan for SSC and RedGate. Nothing big.
Ahhh...in our company, we consider naivete and blissful ignorance as sound DR...
June 4, 2013 at 12:10 pm
sachin6139 (6/4/2013)
June 4, 2013 at 11:51 am
i had to add one more alias near the end to get this to parse correctly in SQL:
(also several columns are using reserved word names: xxxSTAFF.[File],xxxBanks.[Desc], xxxPayrollBankGroups.[Group])
...
FROM [xxxOES Absence 2006...
June 4, 2013 at 10:37 am
maybe soemthing like this might help?
you just need to test for the existence of any data int he INSERTED or DELETED virtual tables
CREATE TRIGGER TR_WHATEVER_NOTIFICATIONS
ON WHATEVER FOR INSERT,UPDATE,DELETE
AS
BEGIN
SET NOCOUNT...
June 4, 2013 at 10:13 am
ricardo_chicas (6/4/2013)
explain stale stats in a brand new table, with a brand new clustered index with a run of update stats a few minutes ago, again not a stats issue
take...
June 4, 2013 at 9:57 am
this is a query i like to use, to get teh path for me easily:
--SELECT * from sys.traces
declare @TraceIDToReview int
declare @path varchar(255)
SET @TraceIDToReview = 1 --this is the trace you...
June 4, 2013 at 9:31 am
ricardo_chicas (6/4/2013)
what version of 2012?
again, it's not the version, it's most likely stale statistics, that we mentioned a few times; there's nothing in your example that is not done in...
June 4, 2013 at 9:29 am
dawidajm (6/4/2013)
It is a boolean so I would imagine this is then evalutating IsState.Value <> False?
i believe under the covers , false is zero, and true is anything not zero,...
June 4, 2013 at 9:22 am
nope, not a valid test/way to reproduce the issue.
here's your exact code, but loaded with random data.
on my machine, with all four versions of SQL Server I have installed...
June 4, 2013 at 8:55 am
i believe this is the equivalent; the first test is evaluating whether it's boolean, so the first part of your test is just checking if the value is zero...
June 4, 2013 at 8:36 am
here's a quick and dirty example, of how to get rows from the Oracle Linked server without copying the whole table, and then filtering, like a typical linked server query...
June 4, 2013 at 7:51 am
wow that's unusual, can you check for corruption? that might explain everything:
dbcc checktable ('YourTableName') WITH ALL_ERRORMSGS
DBCC CHECKDB (<Database Name>) WITH NO_INFOMSGS, ALL_ERRORMSGS
June 4, 2013 at 7:21 am
the default trace has it,if not too much time has passed, since it only keeps the last 100 meg of changes
fastest way to get to it is to right...
June 4, 2013 at 7:01 am
Viewing 15 posts - 3,331 through 3,345 (of 13,469 total)