Hi. I'm trying to build a table for a report.
USE [Data003]
GO
/****** Object: StoredProcedure [dbo].[Z_CodrCarriers] Script Date: 10/30/2012 12:23:21 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [dbo].[Z_CodrCarriers]
AS
SET NOCOUNT ON;
SELECT Suppliers.Code as SupCode
INTO dbo.CodrCarriers_T
FROM Suppliers
WHERE Suppliers.Code LIKE 'S%'
I don't know if I wrote right, but the table CodrCarriers_T
doesn't appear among the other tables created by programmers.
What do I do wrong, please?
USE [Data003]
GO
/****** Object: StoredProcedure [dbo].[Z_CodrCarriers] Script Date: 10/30/2012 12:23:21 ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO
ALTER PROCEDURE [dbo].[Z_CodrCarriers]
AS
SET NOCOUNT ON;
SELECT Suppliers.Code as SupCode
INTO dbo.CodrCarriers_T
FROM Suppliers
WHERE Suppliers.Code LIKE 'S%'
I don't know if I wrote right, but the table CodrCarriers_T
doesn't appear among the other tables created by programmers.
What do I do wrong, please?