Viewing 15 posts - 9,511 through 9,525 (of 18,923 total)
I'm no expert on how the server organize the data. However I'd expect the server to be bright enough to reuse the available space (please correct me if I'm wrong...
August 10, 2007 at 9:57 am
Repeatedly run this statement untill you get no errors :
EXEC SP_msforeachtable 'DELETE ?'
The errors will come from FK constraints (and maybe some triggers).
Each run will drop one level of...
August 10, 2007 at 9:49 am
That's exactly why it's so fun to have 450+ K members. Thanks Carl for the assist.
August 10, 2007 at 9:41 am
That line was missing :
cmd.CommandType = Data.CommandType.StoredProcedure
August 10, 2007 at 8:21 am
I think the question is in regard of wether the actual column of data is physical data... so that is obviously a yes. As for the index you are right. ...
August 10, 2007 at 8:20 am
The data in both tables is physical, the link between them is an object is SysObjects that makes sure that all the data in both table is valid (as long...
August 10, 2007 at 4:55 am
This works in 2000, no idea for 2k5.
IF OBJECT_ID('tempdb..#su') > 0
DROP TABLE #su
GO
CREATE TABLE #SU (Name varchar(128), Rows varchar(25), Reserved varchar(25), data varchar(25), index_size varchar(25), unused varchar(25))
INSERT INTO #SU (Name,...
August 9, 2007 at 8:45 pm
Is this a pivot query where each rows becomes a new column? If that's the case, then you may be able to write a vbs script to pivot it for...
August 9, 2007 at 5:14 pm
I don't know if it's common practice to have a carved in stone design before doing dev work. I'd surely be ok with having a solid design plan, but which...
August 9, 2007 at 9:59 am
Maybe this can help too.
http://software.pricegrabber.com/database-management/m/436437/search=sql%202000
Have you checked out the MS site to see if you could buy / download one version of it?
August 9, 2007 at 9:43 am
Viewing 15 posts - 9,511 through 9,525 (of 18,923 total)