Viewing 15 posts - 9,541 through 9,555 (of 22,214 total)
carpainter69 (9/16/2013)
This is the only job in the computer industry I've had...
September 16, 2013 at 12:49 pm
Beatrix Kiddo (9/16/2013)
When I run that I get 7 rows back. Is that the sort of thing you suspected?Thanks
Yep. It's as Gail says.
September 16, 2013 at 10:14 am
carpainter69 (9/16/2013)
I have a couple years experience with SQL, SSRS, and vb.net.
But I don't feel I have enough knowledge to get a...
September 16, 2013 at 10:12 am
The most important thing I would suggest is monitoring how the statistics are maintained. Likely it's just the automatic update. Depending on the type of data, how it's stored in...
September 16, 2013 at 8:58 am
Try running this:
RESTORE HEADERONLY FROM DISK = 'd:\bu\mm.bak' ;
But on your log backup. I'll bet you you're stacking the files.
September 16, 2013 at 8:55 am
Yeah, I'd absolutely go with the tables too. It's the single easiest, most direct, most efficient way to maintain data integrity. It's the very reason you're using a relational engine...
September 16, 2013 at 8:51 am
If the purpose of each SELECT is to be used as the source for an UPDATE, probably you'll be better off doing each SELECT/UPDATE pair together. You'll need to careful...
September 16, 2013 at 3:50 am
And, there's a free tool from Red Gate Software called SQL Search[/url] that can help with this kind of thing.
September 14, 2013 at 3:55 am
I would not recommend disabling parallelism. It's a good thing. I would suggest that you bump up the default value for the cost threshold for parallelism. The default value of...
September 14, 2013 at 3:54 am
Cause in the microsecond from you finishing killing all the sessions and then setting the database to single_user, another connection came in and took it over.
September 13, 2013 at 10:01 am
Instead of changing it to single user mode, what about changing it to restricted user mode. Then only sa or dbo will be an issue and if you've set up...
September 13, 2013 at 9:05 am
For licensing details, go to Microsoft, always.
As to performance, in my experience, they're really about the same. There aren't any really insanely radical differences within the query engine between the...
September 13, 2013 at 9:04 am
Since that's all going to be part of a single transaction, you're very likely going to see all sorts of blocking, not just at the row level, but possibly at...
September 13, 2013 at 8:59 am
Powershell is a great tool for doing that. I think Kendal Van Dyke may have written a script that's available online. Just do a search for it.
September 13, 2013 at 2:58 am
If you're happy with the performance, there's nothing you need to do.
If a query is using a lot of resources, then it could impact, or be impacted by, other queries....
September 13, 2013 at 2:55 am
Viewing 15 posts - 9,541 through 9,555 (of 22,214 total)