Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
chedderslam
Posting Yak Master
223 Posts |
Posted - 2009-08-20 : 16:10:42
|
| I have just created a table with the following statement:SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[Policies_In_Force_Report_dev]( [Policy_Base] [varchar](12) NOT NULL, [Policy_Suffix] [smallint] NOT NULL, [Inforce_Date] [datetime] NOT NULL, [Policy_State] [varchar](2) NULL, [Program] [char](1) NULL)GOSET ANSI_PADDING OFFIt does not show up in object explorer even when I refresh.When I rerun the statement, I get this:There is already an object named 'Policies_In_Force_Report_dev' in the database.How do I grant myself permission to use it? |
|
|
YellowBug
Aged Yak Warrior
616 Posts |
Posted - 2009-08-20 : 16:24:05
|
| It doesn't sound like a permission issue.Check that you're looking at the same database in the Explorer and query window.Do you see the table in sysobjects? |
 |
|
|
|
|
|