Viewing 15 posts - 5,596 through 5,610 (of 18,926 total)
It always depends on how much data you expect in that table. We can't answer that for you.
June 1, 2011 at 10:23 am
Great advice Jim. Our san creates 1 GB in no time flat > 1 GB / sec IIRC.
BUt I agree, it depends on that actual subsystems.
I'll post a script...
June 1, 2011 at 10:06 am
Bingo! Now you won't need us anymore!
June 1, 2011 at 9:51 am
Grow by whatever it takes to last for 6-24 months. I wouldn't put a max size unless this db could interfere with something mission critical.
Find the job that pages...
June 1, 2011 at 9:50 am
It is impossible that you didn't load that much data in the db that it would make a huge difference???
June 1, 2011 at 9:14 am
Congrats, now learn to do it right!
read up on inner join and remove that cursor (worst possible way to code this in sql server)
June 1, 2011 at 9:12 am
Yes it means free space... not assigned to anything.
Tempdb doesn,t just grow for the fun of it. Someone set it to that size or it grew there because it...
June 1, 2011 at 9:12 am
peter.draper (6/1/2011)
I had a look and have found that I actually have server 2000, any...
June 1, 2011 at 9:09 am
Did you check the job activity monitor?
Edit, darn habit of opening 10 windows at the same time :w00t:!
June 1, 2011 at 9:06 am
Which one is not clear?
June 1, 2011 at 8:10 am
SELECT
T.name,
STUFF((
SELECT
...
June 1, 2011 at 8:07 am
You can't put the where Rid = 1 in the same scope as the ROW_NUMBER function.
So you have to wrap the select as a derived table (CTE would be fine...
June 1, 2011 at 7:46 am
SELECT * FROM (
SELECT *, ROW_NUMBER() OVER (PARTITION BY SKU ORDER BY Date DESC) AS Rid FROM table where part like 'A%') dta WHERE Rid = 1
June 1, 2011 at 7:34 am
What about the server collation, tempdb and connection settings?
June 1, 2011 at 6:07 am
Just FYI, we had a guy who had autoshrink and autoclose to on which also cause a similar issue (db went in and out recovery without any obvious reason and...
June 1, 2011 at 6:05 am
Viewing 15 posts - 5,596 through 5,610 (of 18,926 total)