Viewing 12 posts - 1 through 12 (of 12 total)
select * from <linked oracle server name>..SYS.ALL_TAB_COLUMNS where table_name = <your table name>;
It will give you columns of all tables you have access.
June 1, 2004 at 11:37 am
select * from <linked oracle server name>..SYS.DBA_TAB_COLUMNS where table_name = <your table name>;
June 1, 2004 at 11:26 am
Anyone know why the differential backup size is close to full backup size after run sp_spaceused with @updateusage = true ?
March 17, 2004 at 9:39 am
Thank you very much. Help a lot from you guys. Any ideas why the reserved value in sp_spaceused is very close to the backup size? In my case, the reserved...
March 16, 2004 at 10:56 am
Thank you very much! You got all right. Appreciate ...
March 12, 2004 at 9:29 am
Thanks Johnathan.
In general, the issue is related to a binomial coefficient theory. The return rows should be nCm, read as n choose m. Here is...
March 12, 2004 at 8:10 am
You will miscount unique rows if you use this script. It can't distinguish unique rows from dups. For example, you have five rows with values a, b, c, d...
March 11, 2004 at 3:34 pm
Thanks fhanlon.
Johnathan, There is still a problem with simple self-join. If the table has duplicates, the total number of return will not match the binomial coefficient...
March 11, 2004 at 3:08 pm
Thanks. You are right about the formula. Any ideas how to write it in sql?
March 11, 2004 at 11:18 am
Viewing 12 posts - 1 through 12 (of 12 total)