Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MS SQL Server


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Determining What Are &"system&" Objects In Sp_help Or System Tables


Hi,

I have a few things on my databases which seem to be neither true system
objects or user objects - notably a table called 'dtproperties' (created
by Enterprise manager as I understand, relating to relationship graphing
or something) and some stored procs begining with "dt_" (some kind of
source control stuff, possible visual studio related). These show up when
I use

"exec sp_help 'databaseName'"

but not in Ent. Mgr. or in Query Analyzer's object browser, and also not
in a third party tool I use called AdeptSQL. I am wondering how those
tools know to differentiate between these types of quasi-system objects,
and my real user data. (This is for the purpose of a customized schema
generator I am writing). I'd prefer to determine this info with system
stored procs (ie sp_help, sp_helptex, sp_...etc) but will dip into the
system tables if needed.


Thanks,
Dave




View Complete Forum Thread with Replies

Related Forum Messages:
Revoke Perms On System Tables, Merge System Tables
I have recently set up Merge Replication and it puts alot of extra system tables in the database. When I connect through an ODBC using Access 97 I don't want non-admin users to see these tables (i.e., developers).

If I revoke select on say INFORMATION_SCHEMA tables, dbo.sys... tables
and dbo.Merge... tables from public, will replication be affected?

View Replies !
System.Security.SecurityException: Request For The Permission Of Type 'System.Data.SqlClient.SqlClientPermission, System.Data
I have created a windows library control that accesses a local sql database

I tried the following strings for connecting

Dim connectionString As String = "Data Source=localhostSQLEXPRESS;Initial Catalog=TimeSheet;Trusted_Connection = true"

Dim connectionString As String = "Data Source=localhostSQLEXPRESS;Initial Catalog=TimeSheet;Integrated Security=SSPI"

 

I am not running the webpage in a virtual directory but in

C:Inetpubwwwrootusercontrol

and I have a simple index.html that tries to read from an sql db but throws

the error

System.Security.SecurityException: Request for the permission of type 'System.Data.SqlClient.SqlClientPermission, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
   at System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet)
   at System.Security.PermissionSet.Demand()
   at System.Data.Common.DbConnectionOptions.DemandPermission()
   at System.Data.SqlClient.SqlConnection.PermissionDemand()
   at System.Data.SqlClient.SqlConnectionFactory.PermissionDemand(DbConnection outerConnection)
   at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection,

etc etc

 The action that failed was:
Demand
The type of the first permission that failed was:
System.Data.SqlClient.SqlClientPermission
The Zone of the assembly that failed was:
Trusted


I looked into the .net config utility but it says unrestricted and I tried adding it to the trusted internet zones in ie options security

I think that a windows form connecting to a sql database running in a webpage should be simple

to configure what am I missing?

View Replies !
Where Are System Objects
Hi,

I m new for sql 2005.I intalled it successfully.But i m not able to see system objects in table folder in master database.I have installed competibility package too.
any other idea.

thnx in advance

View Replies !
System Objects Problem
I wonder if anyone can help ...Today I tried to create another non-clustered index on a table. Thisfailed as I apparently already had 249 non-clustered indexex on thetable. Looking at the definition of the table there were 90 or soindexes already defined and not 249. (For those of you who quiterightly think 90 indexes on a table is a little over the top, I hastento add that this is a third party CRM system called "Siebel" which comeswith it's own database). However, examining the sysindexes systemcatalog I find that there are indeed 249 entries, but that many(possibly all) of them have names of the following type:'_WA_Sys_XYZ_356BF102'where 'XYZ' is a column on the table in question.Looking at the same database across our DEV/TEST/PROD environments Inotice that these system like index entries are not consistant. Thenames and number of entries differ. I've tried creating a new tablefrom a script generated in EM and no such indexes/system objects arecreated.I'm confused. What are these things. I can't drop them, sp_helpindexdoesn't refer to them. Examining the sysindexes/sysindexkeys catalogsappears to suggect that the indexes have columns but no rows/entries.I've got around the immediate problem by deleting one of these entriesfrom sysindexes and I've been able to create the index I wanted. Allseems well, but is this likely to cause a problem ?Thanks in advanceLaurence Breeze

View Replies !
Hide System Objects In Ent Mgr
Is there a way to not have system objects (tables, procs) display in Enterprise Manager?

View Replies !
How To Remove All Non-system Service Broker Objects
I'm looking for a tool or script that can wipe a database clean of any and all user configured service broker objects.

I've got two environments, Development and QA, that I need to have parallel service broker configurations.  Each environment is hosted on a different set of servers.  I need to make sure the Development environment looks exactly like the QA environment from a Service Broker perspective (other than the specific service broker instance references in the installed routes).  I've got a script to build the objects that I want, but the Development environment is full of artifacts of abandoned experiments.  Before running the creation script in Development, I'd like to start with a clean slate.  Recreating the Development databases is not an option.

If a tool or script is not available, I know I need to adress at least the following object types, but I'm not sure if this list covers everything or in which order I need to drop which objects:  routes, remote service bindings, certificates, database principals, tcp endpoints, services, queues, contracts, and message types

Thanks in advance

Lee

View Replies !
Identifying Difference Btwn System And User Objects??
Does anyone know the logic that Enterprise Manager/SQL Server uses to distinguish system objects from user objects. I've looked through all the sysobjects in the database and there doesn't seem to be any unique logic for seperating all objects. User tables are easily distinguished from system tables (U/S) but thats not the case with stored procedures and views. I'm looking for suggestions...
Thanks,
Adam

View Replies !
'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
 
Hi,
  
  I am ending up with an issue, while accessing the Request Header information through custom code in SqlReports(SqlReporting services, ReportingServices 2005)  , when I tried to execute the report at ReportingServer it gives the following error.  
 





Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
 
I have given "FullTrust"  permission to the custom dll . even though I am getting the same error.
FYI:
http://support.microsoft.com/kb/920769
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=139935&SiteID=1

 

Any help would be greatly appreciated.

 

Regards,

sriman.

View Replies !
Request For The Permission Of Type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken
Reporting services is configured to use a custom security extension in the following Environment.

Windows xp

IIS 5.0

when i go to http://servername/reports , the UIlogon.aspx page loads fine and i enter username and password. but i get logon failed.

when i go to http://servername/reportserver , the logon.aspx does not load and i get the following error message :

"Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."

any idea ? .

chi

 

View Replies !
Operating System Error 1450(Insufficient System Resources Exist To Complete The Requested Service.).
Hello!

Hopefully someone can help me.

I have scripts to refresh database as SQL daily jobs. (O.S is Win2K3 and SQL server 2000 and SP4) It was worked and I got the following message this morning from SQL error log.

Internal I/O request 0x5FDA3C50: Op: Read, pBuffer: 0x0D860000, Size: 65536, Position: 25534864896, RetryCount: 10, UMS: Internal: 0x483099C8, InternalHigh: 0x0, Offset: 0xF1FF1E00, OffsetHigh: 0x5, m_buf: 0x0D860000, m_len: 65536, m_actualBytes: 0, m_errcode: 1450, BackupFile: \XAPROD12MASTERXAPRODXAPROD_db_200701290000.BAK

BackupMedium::ReportIoError: read failure on backup device '\XAPROD12MASTERXAPRODXAPROD_db_200701290000.BAK'. Operating system error 1450(Insufficient system resources exist to complete the requested service.).

 

 

View Replies !
Operating System Error Code 3(The System Cannot Find The Path Specified.).
Hi All,I use Bulk insert to put data to myTable.When the SQL server is in local machin, it works well. But when I putthe data in a sql server situated not locally, then I get a errormessage like this:Could not bulk insert because file 'C:Data2003txtfilesabif_20031130.txt' could not be opened. Operating systemerror code 3(The system cannot find the path specified.).BULK INSERT myTableFROM 'C:Data2003 txtfilesabif_20031130.txt'with (-- codepage = ' + char(39) + 'ACP' + char(39) + ',fieldterminator = ';',rowterminator = '',keepnulls,maxerrors=0)Someone can explan me what the error shows upThanks in advance- Loi -

View Replies !
System.InvalidOperationException: There Is An Error In XML Document (11, 2). System.ArgumentException: Item Has Already Bee
Hello,

 

I am getting the following error from my SqlClr proc. I am using a third party API, which is making call to some webservice.

 

System.InvalidOperationException: There is an error in XML document (11, 2). ---> System.ArgumentException: Item has already been added. Key in dictionary: 'urn:iControl:Common.ULong64' Key being added: 'urn:iControl:Common.ULong64'

System.ArgumentException:

at System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add)

at System.Collections.Hashtable.Add(Object key, Object value)

at System.Xml.Serialization.XmlSerializationReader.AddReadCallback(String name, String ns, Type type, XmlSerializationReadCallback read)

at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReader1.InitCallbacks()

at System.Xml.Serialization.XmlSerializationReader.ReadReferencingElement(String name, String ns, Boolean elementCanBeType, String& fixupReference)

at System.Xml.Serialization.XmlSerializationReader.ReadReferencingElement(String name, String ns, String& fixupReference)

at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReader1.Read5926_get_failover_stateResponse()

at Microsoft.Xml.Serialization.GeneratedAssembly.ArrayOfObjectSerializer8221.Deserialize(XmlSerializationReader reader)

at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, Xml

...

System.InvalidOperationException:

at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)

at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle)

at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)

at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)

at iControl.SystemFailover.get_failover_state()

at F5CacheManager.GetActiveLBIPaddress()

 

Found a similar problem in a different thread, but couldn't find any solution. I was wondering if there is an open case for this issue?

https://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=398142&SiteID=1

View Replies !
System Tables
Do you know where the system tables for a database are stored ? On whichfile ?

View Replies !
System Tables
I dont want to see these at all and cannot find where tospecify a view or modification of a view. can someone throw me abone here and tell me where to make the adjustments if I can make themat allMichael

View Replies !
SQL System Tables
Where can I find a discussion of how to interpret the keys1 and keys2 columns of the sysindexes table? These columns are binary(255) and are supposed to contain a description of the columns to which the index applies. I also need to know how to interpret the status column of the sysconstraints column.

View Replies !
BCP In System Tables
Hello,

I have succesffuly BCP out system tables(sysdatabases, sysdevices, syslogins, and sysusages). Now I want to BCP those same tables IN to create devices, databases and so on using the BCP utility. I run the same command used to BCP out and only changes the OUT to IN but it did not work.
Can somebody whose done this before tell me how to do it.

Many Many thanks,

Ana.

View Replies !
System Tables
Hello,

I've one Sybase DBA asking this question, Is this really true, Pls help me.

Due to architectural changes in SQL Server 7.0, you cannot dump the transaction log if a database's system tables are inaccessible (due to media failure, for instance)in 7.0 and later versions. Microsoft recommends that separate devices be used for system tables and user tables to allow a final log backup to take place in the event the data device is inaccessible. The additional exposure incurred by not doing this is possible loss of data for the interval between the last transaction dump and the point of failure.

Thanks
Qinglee

View Replies !
System Tables
After upgrading to 7.0 any users that connect to any database via ODBC can view the system tables in the user database. I know I can register the server in my installation of Enterprise Manager and set the option "do not show system tables" ,if I fail to do this, does this enable all system tables to be viewed via any ODBC connection ? I asked Microsoft and they advised to remove the users from the public role and revoke permissions from the users on the system tables (ya okay, anyone agree with this ?) So, is anyone experiencing the same situation or does anyone have any advice ?

Thanks
Clea Boe

View Replies !
Get Rid Of System Tables/SP
I want to get rid of systemtables or systemstored procedures which displays when ever i creat new database.

How can I get rid of system tables ?

View Replies !
ERD For The System Tables
Does anyone have an ERD of the system tables? I know Mr. Gates advises that this is taboo, but I want to write some
dynamic queries off of our ever-changing DB.

Thanks!

Adam

View Replies !
System Tables
Hi All

I want to know where I can find Object permission detailes, For example
I have table1 and user "abc", I have given permission to user "abc" for table1 to "SELECT" "INSERT", "UPDATE", I want to know where this detail is stored in system table. I was looking at "SYSUSERS","SYSLOGINS",
"SYSPERMISSIONS", "SYSMEMBERS", "SYSOBJECTS" I couldn't find anything, If some one can post your answers that will be great.

Thanks in Advance

Regards
Ram

View Replies !
System Tables
Does anyone know what system tables are used when a sp_spaceused is executed?

Thanks in advance

View Replies !
System Tables
Hello,

Is it possible to:


Add a system table using smo (or at all)?

Add new rows to a system table?
Thanks,
Assaf

View Replies !
Can Only See System Tables
Hello,

I have created a linked server XYZ that is linked to server ABC.  I am tying to view the tables via XYZ but I'm unable to do so.  I can only see the system tables.  When I run a select statement, I get the correct results.  That means I have the access to the tables, yet why am I not able to see the tables.

Please assist

View Replies !
System Tables
Hi,

I'm doing an impact analysis to see what views / stored procedures etc are impacted by a change to columns in a table.
I'm using the system tables to identify these changes, and it is something that I'll have to repeat across all our databases in case the tables are being accessed from elsewhere.

I'd like to make sure I'm doing it the right way so could someone point me in the direction of a good article or code for doing this.

thanks

Sean

View Replies !
System Tables
Hello all.

can anyone advise me where I can find a relationship diagram for the system tables in SQL Server2000.

Thanks all.

View Replies !
System Tables
Hi Gurus,

select * from sys.server_principals is not working for me on 2000 SERVER.

This works fine on 2005 SERVER..

Where Iam going wrong ..please advice..

Thanks,
ServerTeam

View Replies !
Sp_help Can't See My Tables
I'm trying to use sp_help to get information on my tables. I can usesp_help alone to get a list of objects (including user tables), butwhen I pass a table name as an argument I get the following errormessage:exec sp_helpexec sp_help parcelServer: Msg 15009, Level 16, State 1, Procedure sp_help, Line 71The object 'DGM_HILLSHADE2' does not exist in database 'raster'.The table clearly exists, but sp_help fails to find it and returninfo. This is the case in a couple of my databases. I'm connected as'sa' so it seems to me it shouldn't be a permissions problem, right?D Bull

View Replies !
What Is The System Tables Folder For?
In SQL mngt studio...what is the system tables folder in the tables folder supposed to be used for?  Do I need to use it for anything?
 Gater

View Replies !
Recreate System Tables
Hi!I need to recreate the system tables (sysobjects, syscolumns,sysindexes, sysforeignkeys, sysconstraints, sysreferences, sysindexkeysat least) in another SQL server.You may say "Thats easy! Backup and restore the database!" and I wouldanswer "I can't, the database size is above 50GB and I just can't do itevery time I need to recreate the info".So, ¿Do you know any simple way to do these?I don't need the data on the user tables and I'll log-in always as dbo(using trusted connection), perhaps that helps.Perhaps the simplest way is to do a bcp to backup and restore the databut.... you never know what would happen. This is why I write ask youguy, probably you know much more than me.Thanks in advance

View Replies !
System Tables In MS SQL Server 5
I am using MS SQL Server management studio.I treid to see some system tables which are sysobjects, syscolumns,systypes, etc.., but i don't see the list under the system tablesfolder. There is one table showing, sysdiagrams; however, I was ableto query sql stmts though.where are they located? or Do I need to contact a dba to release thosetables? thanks.

View Replies !
System Catalog Tables?
Hello,I am relatively new to SQL Server, although I have used Oracleextensively.In Oracle, there are system tables that you can query in order to geta list of all schemas and all the tables in them. Is there a similarconcept in SQLServer? How would I find about the system dictionarytables?TIA :-)

View Replies !
Updating System Tables
Hi,I want to replicate the system tables of the Northwind database inanother test database that I have created (say NorthwindTest). Istarted with the syscomments table:insert into NorthwindTest.dbo.syscommentsselect * fromNorthwind..syscomments whereNorthwind..syscomments.id not in(select id from NorthwindTest.dbo.syscomments )On doing so,I get the following error:Server: Msg 213, Level 16, State 5, Line 1Insert Error: Column name or number of supplied values does not matchtable definition.Does any one know why the two tables are different?Also, if I try to insert on a per row basis, the following worksinsert into syscomments values(53575229,0,1,0,0x280030002900)but the following DOES NOT workinsert into syscomments values(53575229,0,1,0,0x280030002900,NULL,NULL,NULL,NULL,NULL)FYI, the definition of syscomments table is:CREATE TABLE [syscomments] ([id] [int] NOT NULL ,[number] [smallint] NOT NULL ,[colid] [smallint] NOT NULL ,[status] [smallint] NOT NULL ,[ctext] [varbinary] (8000) NOT NULL ,[texttype] AS (convert(smallint,(2 + 4 * ([status] & 1)))) ,[language] AS (convert(smallint,0)) ,[encrypted] AS (convert(bit,([status] & 1))) ,[compressed] AS (convert(bit,([status] & 2))) ,[text] AS (convert(nvarchar(4000),case when ([status] & 2 = 2) then(uncompress([ctext])) else [ctext] end))) ON [PRIMARY]GOThanks in advance,TC

View Replies !
System Tables Fragmentation
can you defrag system tables. They appear in my dbcc showcontigreport. Some are worse than other but if it where a user table Iwould defrag it. However the reindex commands doesnt work on systemtables.... Any ideas.Thanks Matt.

View Replies !
Hiding System Tables
Hi,

Is there a way to hide the system tables on EM?

Thanks

View Replies !
Identity In System Tables
does anyone know how sql 2k stores whether a column is an identity column? is it in any system tables or information_schema?

i've read that i can't find the next value of the identity, which i find weird. I just want to know if the column is an identity or not.

Thanks in advance.

View Replies !
Question On System Tables
I can't see the system tables when I try to pull them up in a linked table view from ACCESS or in a VIEW in SQL Server. I can't adjust my permissions to make them appear in any way that I have tried. Do you know how to do this?

View Replies !
Get Row Count From System Tables
Does anyone know how to get the row count of a user table by using the system tables.
There is no guarantee that these user tables will have any indexes - so I can not use the sysindexes table to count the rows in a clustered index.

Is there another way?

View Replies !
System Tables And More - How To Hide Them?
Hi everyone,

I've recently installed MSQL Server 7.0 Standart Version and every time I create a new database, system tables are created and are visible also. That means, I instantely get 18 tables, 20 views, 18 stored procedures and so on. Can I hide them??? I mean, my tables are all mixed with the system tables. If I can hide all the system tables and views and so on please tell me! Thanks.

View Replies !
System View And Tables
I have been querying the sysobjects table to produce a list of user database tables and views. In 7.0, my list is now including the INFORMATION_SCHEMA views and also certain other system tables and views.

I have filtered out the INFORMATION_SCHEMA views by looking for 'dbo' objects only. I am having trouble removing some of the system tables and views, such as dtproperties and syssegments. sysobjects shows a type = 'U' while double clicking on tables or views from Enterprise Manager shows these as system objects.

What other piece of information can I include in my query to filter out such tables as dtproperties or views such as syssegments.

View Replies !
Triggers Against System Tables SQL 7
I'm thinking of building a trigger against a system table(sysobjects) in
database(a) on server(a) that will assist me in updating a table in
database(b)on server(b). What I need to know from table(b)is if a new table
has been added and removed from database(a) on server(a). I want to use a
store procedure to query the table(b). I was thinking of building a trigger
against my sysobjects table that would update table(b) whenever any tables
are added or removed from database(a). Has anyone built triggers against
system tables? I am running SQL 7.

View Replies !
Hiding System Tables
Is there anyway to hide system tables in a database so that only user tables are viewed?

Gary

View Replies !
How To Defrag The System Tables.
I just ran some dbcc showcontig against some system tables in my production databases in sql 7.0 and found out these tables are heavily deframented. Is there a way to defrag these tables other that using dbcc dbreindex which will not work on system tables.



Thanks,



Jim Zhong

View Replies !
Corrupt System Tables
Hi,

Recently I found some thing very strange with SQL Server 7.0. My application failed to execute some stored procedure and came up with error like "Expecting '2x' parameters , supplied only 'x' parameters". I used sp_proc_columns to find out the no of parameters and found there are twice the no of parameters for each stored procedure. Then I tried to drop and recreate all the stored procedure. But still all the 'orphan' entries stayed in the database.

Does any body came across this problems before? Does anybody know what is the cause?

thanks in advance

Jacob

View Replies !
DTS MSDB SYSTEM TABLES
Is there any way to get the DTS Wizard to see the system tables (sysjobs, sysjobschedules, etc..) in the MSDB or Master database?

View Replies !
Trigger On System Tables
I need to keep track of changes (delete/modify) in sysusers table. SQL Books Online mentionend that SQL Server 7.0 doesn't support trigger on system tables. What options do I have?

LT

View Replies !
System Tables Rights..
I create a new database and a new user for it and give him db_datareader,
db_datawriter and db_ddladmin roles. Other than this, Im denying permission on
select, insert, update, execute and delete on all the system tables in his
particular database. Will this denying of access to the system tables cause any
problem while his is trying to insert or update or do anyother DDL activity from
the database.
Parasu

View Replies !
System Tables (very Very Urgent)
Hi everyone,

When one of the programmers tried to delte a view from the database there was an error saying the specified view is not present in System catalog.

When i tried to see what i can check if its information is stored in any system table i found sysremote_catalog and some more similar tables when i tried to access the table from EM it asked for server name i went back to t-sql and gave the server name it gave an error

Server: Msg 155, Level 15, State 1, Line 4
'servername1' is not a recognized OPTIMIZER LOCK HINTS
option.

Either i can open any other tables similar to that of this one starting with sysremote..what is the problem or is it that we can't look at the information in this tables at any instance of time.

Where can i find the information regarding which i can access and what not in system tables and how i can utilize them..

I am in desperate need of help...i appreciate ur time.

Thanks in advance.

Kavitha.

View Replies !
System Tables (Urgent)
Hello,

I've one Sybase DBA asking this question, Is this really true, Pls help me.

Due to architectural changes in SQL Server 7.0, you cannot dump the transaction log if a database's system tables are inaccessible (due to media failure, for instance)in 7.0 and later versions. Microsoft recommends that separate devices be used for system tables and user tables to allow a final log backup to take place in the event the data device is inaccessible. The additional exposure incurred by not doing this is possible loss of data for the interval between the last transaction dump and the point of failure.

Thanks
Qinglee

View Replies !
System Tables,Urgent!!
HI all,
I need to understand a little bit more about SQL Server built in tables. For example in Oracle if I need to check for tables names under one database. The query will be something like this:

Select table_name from user_tables;

Or to get column_name and table_names:
Select column_name, table_name from user_tab_columns;

How can I do this in sql server 7?
I know there is a table called sysobjects. The sysobject will give me all the objects in the database but how can I specify wether its a table or a column. More over can someone refer me a good book for sql server 7. Both development and administration.
Thank you in advance!!!!

View Replies !
System Remote Tables ?
after upgrade sql from 6.5 to 7.0 , there are some new system
table in system database , all are begin with sysremote_....
such as sysremote_tables, i can not find any information about
them , does anyone know what these tables for and whether
these tables will affect the new sql7.0 application database ?

thanks in advance .
regards
zg

View Replies !
List Of System Tables
 In which folder under the system tables (syscolumn, sysobjects, etc.) of a database are listed?

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved