Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8940793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T11:08:11+00:00 2026-06-15T11:08:11+00:00

While importing data i am getting error corresponding view not available in the db.

  • 0

While importing data i am getting error corresponding view not available in the db. But i checked in the DB that view is available . I tried manually insert into view that time its working.

Any setting to change for this?

While data importing from table to view via SSIS . I ‘m getting following error “Invalid object name [Feed].[VwPharmaClaim].” This already exists. I traced the query in the profiler Quotes surrounded with the object name as ("[Feed]"."[VwPharmaClaim]").Without the quotes its working.

While I’m inserting data in 2008 version I am getting following error

Msg 208, Level 16, State 1, Line 1
Invalid object name ‘[Feed].[VwPharmaClaim]’

I traced the insert query in profiler

exec sp_executesql N’INSERT INTO “[Feed]”.”[VwPharmaClaim]” (“PharmaKey”,”member_id”,”MemberRefID”,”claim_id”,”ndc”,”days_supply”,”refill_number”,”fill_dt”,”paid_dt”,”prescriber_id”,”allowed_amt”,”paid_amt”,”Member_amt”,”quantity”,”Import_Id”,”age”) VALUES (@P1,@P2,@P3,@P4,@P5,@P6,@P7,@P8,@P9,@P10,@P11,@P12,@P13,@P14,@P15,@P16)’,N’@P1 bigint,@P2 varchar(8000),@P3 numeric(18),@P4 varchar(8000),@P5 varchar(8000),@P6 numeric(10),@P7 int,@P8 datetime,@P9 datetime,@P10 varchar(8000),@P11 money,@P12 money,@P13 money,@P14 float,@P15 numeric(18),@P16 int’,1,’000000000052′,52,’085565501321 ‘,’00472030115′,5,0,’2008-06-04 00:00:00′,’2008-06-08 00:00:00’,’BO5586396 ‘,$10.0000,$0.0000,$10.0000,15,7,5368

OUTPUT
Msg 208, Level 16, State 1, Line 1
Invalid object name ‘[Feed].[VwPharmaClaim]’.

When I remove the double quotes it’s working fine

exec sp_executesql N’INSERT INTO [Feed].[VwPharmaClaim] (“PharmaKey”,”member_id”,”MemberRefID”,”claim_id”,”ndc”,”days_supply”,”refill_number”,”fill_dt”,”paid_dt”,”prescriber_id”,”allowed_amt”,”paid_amt”,”Member_amt”,”quantity”,”Import_Id”,”age”) VALUES (@P1,@P2,@P3,@P4,@P5,@P6,@P7,@P8,@P9,@P10,@P11,@P12,@P13,@P14,@P15,@P16)’,N’@P1 bigint,@P2 varchar(8000),@P3 numeric(18),@P4 varchar(8000),@P5 varchar(8000),@P6 numeric(10),@P7 int,@P8 datetime,@P9 datetime,@P10 varchar(8000),@P11 money,@P12 money,@P13 money,@P14 float,@P15 numeric(18),@P16 int’,1,’000000000052′,52,’085565501321 ‘,’00472030115′,5,0,’2008-06-04 00:00:00′,’2008-06-08 00:00:00’,’BO5586396 ‘,$10.0000,$0.0000,$10.0000,15,7,5368

OUTPUT

(1 row(s) affected)

My package developed 2005 . I have converted this package to following version in 2008.

version 9.0.30729.4462.QFE

This My error while importing data from table to view

[OLE DB Destination [185]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005.
An OLE DB record is available. Source: “Microsoft SQL Server Native Client 10.0” Hresult: 0x80040E37 Description: “Invalid object name ‘[Feed].[VwPharmaClaim]’.”.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T11:08:12+00:00Added an answer on June 15, 2026 at 11:08 am

    By default in SQL Server 2008 you are not allowed to use double quotes to identify database objects.

    Run

    ALTER DATABASE <dbname> SET QUOTED_IDENTIFIER = ON
    

    against your destination database and then try running

    SELECT * FROM "Feed"."VwPharmaClaim"
    

    Check out http://technet.microsoft.com/en-US/library/ms174393(v=sql.105).aspx for some more info.

    When you say SSIS is generating these queries, what sort of task are you using to generate them? I’ve never seen it produce double quote identifiers before, just curious.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

While importing website through content porter, I am getting an error that names and
how do we move the failed or error data to another table while importing
While importing data from a flat file, I noticed that some of lines have
I have this error while using DiH for importing data from SQL Server to
I am importing data from csv file so I used that code <?php $path
I have recenty came across a problem while importing older data than my current
I'm getting ready to dive into my first Core Data adventure. While evaluating the
While importing csv data in dynamics 2011 online, is there any option of updating
I've general questions while importing a C++ created DLL into C#. 1) I've written
NSString is returning as NULL while Importing from ViewController Class were i want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.