A family of Microsoft relational database management systems designed for ease of use.
Sir, I maybe not follow you well.
You said you can link the table from SQLServer with ODBC, OK?
So you can create table in SqlServer with several ways such as run Storage Process or you can run the sql statement in scripts directly as below in access vba evironment.
I am not sure what you want to do in fact?
I guess you want to design sql server database build a table or a storage process or view by Access Tools(as the assistant immigaration for ADP). O,I seldom design ADP like this way.
Private Sub createtblInventory()
Dim db As Database
Dim rs As Recordset
Dim strConnect As String
Dim strSql As String
Dim strResult As String
strConnect = "ODBC;DSN=Match20140810"
'Open the database
Set db = DBEngine.Workspaces(0).OpenDatabase("", False, False, _
strConnect)
' strSql = "sp_helpdb"
strSql = "if exists (select * from sysobjects where id = object_id('dbo.tblInventory')) drop table tblInventory"
db.Execute strSql, dbSQLPassThrough
strSql = "CREATE TABLE tblInventory (InvID INTEGER,ItemNo TEXT,CoverDueUncoverDue TEXT)"
db.Execute strSql, dbSQLPassThrough
db.Close
End Sub