Viewing 15 posts - 21,331 through 21,345 (of 22,202 total)
OK. That is odd then. I use this function regularly and it doesn't bump tempdb up to 20gb (I'd notice). Any triggers or anything like that on the table that...
January 3, 2008 at 1:00 pm
It doesn't surprise me to see it in the tables with 50 rows. I ran into the same issue with tables that had less than ~200 rows.
The others... I'm not...
January 3, 2008 at 12:59 pm
You can do this through Management Studio very quickly. Right clicking the object brings up a menu with "Script Stored Procedure as" and then another menu that has choices like...
January 3, 2008 at 12:54 pm
We use that all the time with no serious issues. But then I've never monitored tempdb while running it. Are you breaking up your trace files or creating one gigantic...
January 3, 2008 at 12:49 pm
How many rows are in the tables? I've seen this when the number of rows is very low. Other than that, rebuilding the index usually changes the fragmentation percentage.
January 3, 2008 at 12:25 pm
At this point in time, keep your plans to work with 2000, but go ahead & skip 2005 and start learning 2008.
January 3, 2008 at 11:39 am
Take a look at the catalog views. Sys.Tables & Sys.Data_Spaces. This is quick & dirty:
select t.name as TableName
,s.name as FileGroupName
from sys.tables t
join sys.data_spaces s
on s.data_space_id = t.lob_data_space_id
January 3, 2008 at 11:37 am
I found a blog entry over at MSDN that talks about this:
http://blogs.msdn.com/sql_protocols/archive/2005/10/22/483684.aspx
If you scroll down to Message #10:
Reason:
1) There are spaces after Instance name in the...
January 3, 2008 at 10:44 am
I think you have something else going on. The delays are not normal.
January 3, 2008 at 10:41 am
Well it's about time.
Congratulations Steve! You earned it.
January 3, 2008 at 5:51 am
Hey Jeff,
Do you have that response in a script so you can just point & click? If so, can you share the script?
January 3, 2008 at 5:50 am
Hi Sandy,
When you run backups, don't use drive paths like this:
BACKUP DATABASE x TO DISK = 'C:\x.bak'
Because it will place them on the relative drive for that server. Instead,...
January 3, 2008 at 5:47 am
Not knowing your friend, the company, or the interview, it'd be impossible to say why. Usually, it's because the people doing the interview thought that someone else was more qualified...
December 31, 2007 at 6:52 am
Well, if you're lazy you can even get around that:
INSERT INTO dbo.MyTable DEFAULT VALUES
GO 42
I suspect that's not what was meant. I'd be curious if there was a method too.
December 21, 2007 at 9:57 am
Viewing 15 posts - 21,331 through 21,345 (of 22,202 total)