Viewing 15 posts - 796 through 810 (of 1,162 total)
What would you like help with? The DISTINCT has to be processed first as that's what you're selecting the top 100 of.
April 13, 2011 at 2:48 am
He's referring to a logon trigger not a DDL trigger.
Have a look here, which also has a handy example of exactly what you're wanting to do - please use caution...
April 8, 2011 at 2:16 am
Please note that Resource Governor is an Enterprise Edition feature only and not available on other Editions (with the exception of Developer Edition)
April 7, 2011 at 7:54 am
Ok. I think I see what you're after - DDL and expected result would be useful in the future as people can then give you tested code, but something like...
April 7, 2011 at 5:41 am
Is this what you're after?
select APP_ID, MAX(APP_DATE) from Test
group by APP_ID
April 7, 2011 at 5:30 am
If it's very slow compared to other applications and quick when it doesn't have to establish a connection, then something's up, but 5-10 seconds just for the connection seems very...
April 6, 2011 at 2:59 am
I'm confused how leaving SSMS open all day has an impact on the speed a .Net form opens/closes?
Opening connections is (relatively) expensive, but I wouldn't expect if to take 5-10...
April 6, 2011 at 2:16 am
Thanks Gail - wasn't aware of that system view!
April 4, 2011 at 9:28 am
I'm not aware of a system view that shows the value, so think you'd have to insert the results of the procedure into a temp table to do this. E.g.:
CREATE...
April 4, 2011 at 9:13 am
EXEC sp_configure 'max degree of parallelism'
April 4, 2011 at 8:55 am
Not necessarily. The optimiser will look at the statistics to try to determine how selective your where clause is - for example, one particular parameter value may restrict the results...
April 4, 2011 at 7:47 am
opc.three (4/1/2011)
April 4, 2011 at 2:01 am
Well I'm certainly not surprised that you're always getting errors. It's a very confused mash up of sub queries within selects within subqueries and in several places is not close...
April 1, 2011 at 10:07 am
CheeseheadDBA (4/1/2011)
My whole motive behind getting a certification is simply to learn and at the end feel like I know more than I do now.
That's certainly valid and a...
April 1, 2011 at 8:58 am
I'm wary of them. My experience of hiring DBAs & Database Developers is that it's simply not any kind of yardstick for ability/suitability. I've had brilliant candidates with no certifications...
April 1, 2011 at 8:21 am
Viewing 15 posts - 796 through 810 (of 1,162 total)