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 9174987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:50:29+00:00 2026-06-17T16:50:29+00:00

I have the following piece of code which copies data from an image table

  • 0

I have the following piece of code which copies data from an image table in database A (shard_A) to another table in database B (shard_B)

Here is the structure of the image table in both databases

Image table (shard_A)   -   Image table (shard_B)
- image_id              -   image_id 
- submission_fk         -   sub_fk 
- image_desc            -   img_desc

The column names of the 2 tables are slightly different

  @test_shard_A = Image.using(:shard_A).find(:first, :conditions => ["submission_fk =?", @sub.id ])

  Octopus.using(:shard_B) do

    Image.create(
    :image_id => @test_shard_A.image_id,
    :sub_fk => @test_shard_A.submission_fk,
    :img_desc => @test_shard_A.image_desc
    ) do |primary|
    primary.img_id = @test_shard_A.image_id
    end

  end

The above is giving me the following error message:

unknown attribute: sub_fk

What am I doing wrong?

  • 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-17T16:50:31+00:00Added an answer on June 17, 2026 at 4:50 pm

    ActiveRecord loads metadata (table information) when the first query is executed for a table. When you start your application with a query to shard_A, it checks the table structure, and constructs your Image class according to it, with submission_fk.

    When you change shards, it won’t check the table structure again, so it assumes that there is a submission_fk, and assumes no sub_fk, since it doesn’t know about that.

    I suggest you to use the same structure for all shards, but if you can’t do that, you may force ActiveRecord to reload the table information – I never used Octopus, but I think it will work:

    Image.reset_column_information
    

    Note that it will degrade the performance of the application, since reloading the metadata is a slow operation.

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

Sidebar

Related Questions

I have following piece of code which posts some data into database: $post =
I have the following piece of code, which prints the metadata of an image
I have a following piece of code which connects to database and executes a
I have the following piece of code which is being run from a click
I have following piece of code which tries to load an XML file from
I have the following piece of code which outputs a long article: <?php the_content();
I have the following piece of code which is not working the way I
I have the following piece of code which doesn't compile when I try to
I have the following piece of code, which I want to make parallel in
I have the following piece of code which helps me to write a bunch

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.