IF OBJECT_ID('LISTA_VENDEDORES', 'U') IS NOT NULL DROP TABLE #LISTA_VENDEDORES;
CREATE TABLE #LISTA_VENDEDORES (NOME VARCHAR(100));
Resultou em:
Mensagem 2714, Nível 16, Estado 6, Linha 4
Já existe um objeto com nome '#LISTA_VENDEDORES' no banco de dados.
O 'U'
é indício de tabela, mas porque não reconheceu minha tabela temporária? Qual valor de sys-objects
devo digitar? Minha tabela é interna ou externa?
https://learn.microsoft.com/pt-br/sql/relational-databases/system-catalog-views/sys-objects-transact-sql?view=sql-server-ver16