Sql server 2000 -Space find
        Posted  
        
            by Adu
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Adu
        
        
        
        Published on 2010-06-12T09:37:01Z
        Indexed on 
            2010/06/12
            9:43 UTC
        
        
        Read the original article
        Hit count: 292
        
sql-server-2000
This is Query:
CREATE TABLE #TempTable(datasize varchar(200))
INSERT  #TempTable
    EXEC sp_spaceused 'Table1'
When executing this query error message shown as below
"Column name or number of supplied values does not match table definition"
How can i solve this problem?
© Stack Overflow or respective owner