This is just an example:
CREATE TABLE [Wine].[WineList]
(
[WineID] INT IDENTITY(1, 1) NOT NULL ,
[WineName] NVARCHAR(128) NOT NULL,
[RegionID] INT
)
GO
CREATE UNIQUE INDEX Wine_WineList_WineName ON Wine.
After the last "." when the suggestion list pops up, it does not contain the newly created Wine.WineList table. I must refresh the suggestion list for the object to appear.
CREATE TABLE [Wine].[WineList]
(
[WineID] INT IDENTITY(1, 1) NOT NULL ,
[WineName] NVARCHAR(128) NOT NULL,
[RegionID] INT
)
GO
CREATE UNIQUE INDEX Wine_WineList_WineName ON Wine.
After the last "." when the suggestion list pops up, it does not contain the newly created Wine.WineList table. I must refresh the suggestion list for the object to appear.