Viewing 5 posts - 31 through 35 (of 35 total)
Hi again ,
forgot to mention that there is a continutaion for this article (Part 2) - it's on the same page.
Oana.
November 5, 2007 at 3:23 am
November 5, 2007 at 3:14 am
Hi there,
can you please post also a part of the xml file .. to see exactly the structure 🙂
Thanks,
Oana.
October 30, 2007 at 2:05 am
Hi,
Try this :
CREATE TABLE #t(d SYSNAME, t SYSNAME);
EXEC sp_msForEachDB 'INSERT #t SELECT ''?'', TABLE_NAME
FROM [?].INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE=''BASE TABLE'';';
SELECT * FROM #t ORDER BY d,t;
DROP TABLE #t;
Thanks,
Oana.
October 30, 2007 at 2:02 am
October 29, 2007 at 8:56 am
Viewing 5 posts - 31 through 35 (of 35 total)