Viewing 15 posts - 766 through 780 (of 1,193 total)
Hi Jason,
AKAIK it should respect the RG setting - where are you seeing the additional usage (e.g.perfmon/DMV's/Task Manager/ShowPlans)?
Thanks
Gaz
October 3, 2012 at 4:36 am
You can't add an Identity property to an existing field.
So the way the GUI will do that is:
Create a new table that does have the column with Identity property
Copying...
October 3, 2012 at 3:43 am
I'd imagine these are covered by the documentation you're reading, but a few things:
Make sure your classifier function is as lightweight as possible - every connection to SQL server has...
October 3, 2012 at 3:29 am
Can you post your query? It's probably using some structures not allowed in compat level 100.
Thanks
September 27, 2012 at 3:42 am
No problem, hope one of them works!
September 26, 2012 at 9:12 am
Ah, I see. Don't know for definite the behaviour of the default parameters under auto-refresh, but I'd hope they get re-evaluated at each refresh.
Guess you'll have to try it &...
September 26, 2012 at 8:29 am
You can also check the performance counters too:
SELECT d.name, logsize.cntr_value AS LogSize, logused.cntr_value AS PercentLogUsed
FROM sys.databases d
LEFT JOIN sys.dm_os_performance_counters logsize ON logsize.counter_name = 'Log File(s) Size (KB)' and logsize.instance_name =...
September 26, 2012 at 4:52 am
Does the Oracle query check both values in a row? Which would be this:
SELECT
ID,
Name
FROM
EMP_TBL
WHERE
(ID = 1 AND Name = 'foo1')
OR
(ID = 2 AND Name =...
September 26, 2012 at 3:54 am
Decimal(9,3) can store -999,999.999 to 999,999.999
Decimal(9,4) is -99,999.9999 to 99,999.9999
Not sure, but I think they're stored differently internally - decimal as an integer* with a factor of 10 multiplier, money...
September 25, 2012 at 9:49 am
SQL_path (9/25/2012)
does it mean the sp that populates DS will run two times to fill the data in both data regions
I would hope not.
At the very least it would introduce...
September 25, 2012 at 8:06 am
Use an expression on the default that will set the value of the parameter to the previous day from midnight until (e.g.) 8am?
Something like:
=iif(DatePart("h", now()) < 8, today()-1, today())
or the...
September 25, 2012 at 7:57 am
Thanks guys. In this case, the 'whodunnit' is the updateserver, so no need for another field.
The updatetime is the date/time the sourcefile was last processed by the updateserver, and so...
September 25, 2012 at 3:45 am
Paul Randal (9/24/2012)
2) Did CHECKDB complete and find errors? Check the value of @@ERROR afterwards - guarantees to be non-zero if CHECKDB found/had a problem.
Thanks Paul, that's a much better...
September 25, 2012 at 3:08 am
Sean Lange (9/24/2012)
I think you are just overthinking it.
Ha, almost certainly!
Thanks for your input Sean, just had a nagging thought at the back of my head that I can put...
September 24, 2012 at 10:38 am
Viewing 15 posts - 766 through 780 (of 1,193 total)