Viewing 15 posts - 38,116 through 38,130 (of 49,571 total)
rw30 (6/28/2009)
then the only way to know server side query execution time is to run SSMS on the server ? right ?
Or with a fast network where SQL's not going...
June 28, 2009 at 10:05 am
Was that via profiler or SSMS's query execution time (bottom right). The latter does include network trip time and everything as it's a display of the time until management studio's...
June 28, 2009 at 9:19 am
rw30 (6/28/2009)
GilaMonster (6/28/2009)
SET STATISTICS TIME ONand then run your query. There will be fairly detailed time breakdowns in the messages pane.
results shown after enabling SET STATISTICS TIME are almost...
June 28, 2009 at 8:51 am
SET STATISTICS TIME ON
and then run your query. There will be fairly detailed time breakdowns in the messages pane.
June 28, 2009 at 8:26 am
Mike, I just did some tests myself and, while I do see a small increase in reads, it's not overwhelming.
Use Adventureworks
GO
Create function LineItemTotal(@ProductID int)
returns money
as
begin
declare @Total money
select @Total = sum(LineTotal)...
June 28, 2009 at 7:09 am
Grant Fritchey (6/28/2009)
GilaMonster (6/28/2009)
Plus it's one plan per execution of the UDF. Also, you cannot trust statistics IO when you have a udf that does any form of data access.
I'm...
June 28, 2009 at 6:44 am
mike_walsh (6/28/2009)
GilaMonster (6/28/2009)
Plus it's one plan per execution of the UDF. Also, you cannot trust statistics IO when you have a udf that does any form of data access.
Hey Gail...
June 28, 2009 at 6:43 am
BillDenver (6/28/2009)
You're up early.
Not particularly early. I'd just finished lunch when I wrote that.
June 28, 2009 at 6:03 am
I'll do some tests during the week and write up a blog post if I can come to any conclusions.
Actually, I'll blog even if I can't come to a...
June 28, 2009 at 6:02 am
Plus it's one plan per execution of the UDF. Also, you cannot trust statistics IO when you have a udf that does any form of data access.
June 28, 2009 at 5:44 am
aniket (6/27/2009)
and while saving if the new date is not assigned to the BDate, then 1/1/1900 12:00:00 AM is stored in the database.
So how are you doing the save to...
June 28, 2009 at 5:40 am
BillDenver (6/28/2009)
Tried to reinstall but cannot get past the error. Any ideas?
Not offhand. Does google turn up any suggestions?
Why do you need management studio on the server?
June 28, 2009 at 5:39 am
Call Microsoft's Customer support. You've got stack dumps there, I don't have the tools to interrogate those and I don't have SQL source code. Customer support has both.
June 28, 2009 at 5:39 am
Phil Jackson (6/27/2009)
June 28, 2009 at 3:23 am
Dropping an index that's used for enforcing of a pk constraint isn't allowed. To drop the index that's enforcing a pk, the pk itself must be dropped/
CREATE TABLE Test1 (
...
June 28, 2009 at 3:22 am
Viewing 15 posts - 38,116 through 38,130 (of 49,571 total)