Share via

Every cell shows #Deleted

Anonymous
2013-09-18T09:44:23+00:00

I have a  SQL database table that works fine.  I know this because multiple applications use it and all of them work fine.  I also use SQL Server Management Studio to examine it.  However, Access shows "#Deleted" in every cell.  I deleted this linked table, then added it back, but the problem remains the same.

Any tip will be greatly appreciated.

Microsoft 365 and Office | Access | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Tom van Stiphout 40,211 Reputation points MVP Volunteer Moderator
2013-09-18T14:22:55+00:00

This happens if the table uses data types that Access can't work with. It's unfortunate that these two products from the same company are not kept more in sync. Let MSFT know how you feel about that.

Was this answer helpful?

0 comments No comments

17 additional answers

Sort by: Most helpful
  1. Anonymous
    2013-09-18T19:03:59+00:00

    I'm getting *INCORRECT SYNTAX* error, can you please confirm that is the query you are running,

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2013-09-18T18:54:21+00:00

    Yes, it has a primary key.  No, it does not have a Date/Time stamp.

    The query to crate that table is as following:

    CREATE TABLE [dbo].[GeoLiteCity-Blocks](

    [startIpNum] [bigint] NOT NULL,

    [endIpNum] [bigint] NOT NULL,

    [locId] [bigint] NULL,

    CONSTRAINT [PK_GeoLiteCity-Blocks] PRIMARY KEY CLUSTERED

    (

    [startIpNum] ASC,

    [endIpNum] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

    ) ON [PRIMARY]

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2013-09-18T18:01:04+00:00

    Does the table have a Primary Key and a Date/Time stamp?

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2013-09-18T14:39:42+00:00

    Thank you, Tom.

    All of them are bigint in the SQL database table.  I thought it worked before but I upgraded Access a few times and I could be wrong.

    Hong

    Was this answer helpful?

    0 comments No comments