Viewing 15 posts - 4,531 through 4,545 (of 7,597 total)
Eirikur Eiriksson (12/22/2015)
ScottPletcher (12/21/2015)
December 22, 2015 at 9:02 am
Yeah, everybody always "warns" about that, but who on earth would want to apply a 299GB log anyway??
December 21, 2015 at 6:35 pm
joshdbguy (12/21/2015)
Sean Lange (12/21/2015)
December 21, 2015 at 6:32 pm
Eirikur Eiriksson (12/21/2015)
Talib123 (12/21/2015)
If I use a Where = it works fine. How do I get around this small annoying issue.
SELECT name FROM...
December 21, 2015 at 2:52 pm
First, verify that they've done a proper design to assign the columns to this table. That is, do not assume they've done that, verify that they've done it. ...
December 21, 2015 at 2:49 pm
You also need to keep in mind that index usage stats count the number of times an operation occurs, not the quantity of rows affected. That is, "10 scans",...
December 21, 2015 at 1:10 pm
I've got more servers than that, but I'd automate it for one server. I don't see time spent visually scanning a log file as particularly productive. Besides, what happens when...
December 21, 2015 at 12:25 pm
I'd create indexes on all the columns you need to count that way. Then the COUNT query can use the existing indexes to give you a very quick totals.
If...
December 21, 2015 at 12:23 pm
If you (almost) always look up by PartitionID and Name, then the table should be clustered first on those columns. If you really want/need to, add other columns to...
December 21, 2015 at 12:03 pm
Once the db is changed to Simple model, it's easy enough to shrink the log, you just have to keep an eye on where the current end-of-file marker is, as...
December 21, 2015 at 11:59 am
It depends. It won't happen automatically. But if you can add code to SP_CHILD_1 and SP_CHILD_2 to end after that period of time, you could have the child...
December 17, 2015 at 2:59 pm
Jeff Moden (12/15/2015)
ScottPletcher (12/14/2015)
Jeff Moden (12/12/2015)
ScottPletcher (12/10/2015)
December 15, 2015 at 9:06 am
Sergiy (12/14/2015)
ScottPletcher (12/14/2015)
They should have the same level of permission in a test environment that they do in production, otherwise you haven't tested security, right?
Do developers really have the same...
December 15, 2015 at 8:26 am
Sergiy (12/14/2015)
ScottPletcher (12/14/2015)
hopefully your normal app logins don't have that high a level.On a test host?
They should have the same level of permission in a test environment that they do...
December 14, 2015 at 3:44 pm
Sergiy (12/14/2015)
ScottPletcher (12/14/2015)
1) I wouldn't advise writing that type of info into error logs.Why?
What do you think Application Event Log is for?
For Application Events. Stored proc parameters are not...
December 14, 2015 at 3:43 pm
Viewing 15 posts - 4,531 through 4,545 (of 7,597 total)