Viewing 15 posts - 1,786 through 1,800 (of 7,502 total)
search ssc for "lost sa password". Those threads will get you started.
e.g. http://www.sqlservercentral.com/Forums/Topic1054427-146-1.aspx
August 2, 2011 at 1:46 am
As I got to understand it, an itvf can be fully bound and taken into account at plan compile time.
That may provide more intelligent solutions then we might expect and...
August 1, 2011 at 11:45 pm
why the hassle with cu3 and 4 before going to SP1 ??
SP1 = CU6+ ssms intellisence fix (bug after vs2010SP1) and maybe some more.
if I'm correct : SP1+SP1CU1 = RTM+CU8
I...
August 1, 2011 at 2:13 pm
did you run the upgrade adviser ? It will point to potential issues.
You should be able to just restore the database(s) in stead of a having to port all data.
(unless...
August 1, 2011 at 1:28 pm
alter your function to be an inline table value function. That may do magic !
create itfv_x
returns table
as return (select your_case_statement as Et_Voila)
keep in mind you'll have to modify your query...
August 1, 2011 at 1:21 pm
set statistics time will show compile time and execution time of the query, just to give you a look on consumption.
btw did you notice
...
August 1, 2011 at 1:17 pm
If the errorlog doesn't bring any refs to your issue, I think best is to start a trace which also captures oledb errors and run your app until the issue...
August 1, 2011 at 1:12 pm
I did like the free ebook "SQL Server Statistics" available at red-gate ebook store. http://www.red-gate.com/our-company/about/book-store/
August 1, 2011 at 12:14 pm
opc.three (8/1/2011)
ALZDBA (8/1/2011)
...No excuse.
All valid points I agree with 100% except for the last two words. All things being the way we want them, agred 100%, but "it depends" is...
August 1, 2011 at 11:54 am
apparently you are living in a world where users have a fixed UI date time representation.
( so far for "personal" computer )
Alter these queries so you don't need the function...
August 1, 2011 at 8:24 am
How about Tetris from time to time :hehe:
August 1, 2011 at 8:13 am
is there a query exception recorded in e.g. errorlog ( deadlock / error with Severity levels from 20 through 25 are considered fatal. If a fatal severity level is encountered,...
August 1, 2011 at 8:04 am
So, where/how does it keep track if stats are no longer being used ??
SELECT quotename(object_schema_name(OBJECT_ID)) + '.' + quotename(object_name(OBJECT_ID)) as ObjectName
, quotename(name) AS...
August 1, 2011 at 8:01 am
According to plan explorer it is this cursor that is estimated to consume 25% of io cost estimate
Declare c1 Cursor For
Select Distinct BD.RegnNo, DD.CaseNo
From Bill_Detail BD, DailyCase_Det DD
Where...
August 1, 2011 at 1:13 am
ananda.murugesan (8/1/2011)
Here i have attached execution plan for xml query plan, please find...
August 1, 2011 at 1:04 am
Viewing 15 posts - 1,786 through 1,800 (of 7,502 total)