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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T00:20:03+00:00 2026-05-31T00:20:03+00:00

anyone know how to optimize SQL query for inserting data from select statement and

  • 0

anyone know how to optimize SQL query for inserting data from select statement and so the log file won’t grow too fast? I tried WITH (NOLOCK) already. It works but the log file grow quite fast.

Currently I have SQL Scheduler to move the data from one database to another database under the same server and the same instance.

TRUNCATE TABLE Mobile.dbo.[Customer] 

INSERT INTO Mobile.dbo.[Customer]
SELECT
    CST.[No], CST.[Name], CST.[Address], CST.[Address 2], CST.[Post Code], CST.[City], CST.[County] AS [State], 
    CST.[Country_Region Code] AS [Country Code], CST.[Contact], CST.[Phone No_], CST.[Fax No_], CST.[Telex No_] AS [Mobile No_],
    CST.[E-Mail], CST.[Home Page], CAST(CST.[Credit Limit] AS DECIMAL (38,2)) AS [Credit Limit], 
    CASE 
        WHEN (CAST(INV.[Amount] AS DECIMAL) IS NOT NULL) THEN CAST((INV.[Amount]) AS DECIMAL (38,2))
        ELSE '0.00'
    END AS [Balance],
    CST.[Salesperson Code], CST.[Payment Terms], CST.[Payment Code], CST.Zone Code]
FROM Live.dbo.[Customer] AS CST
WITH (NOLOCK)
LEFT JOIN(
    SELECT ORIamt.[Customer No_], SUM(ORIamt.[Amount]) AS [Amount]
    FROM (
        SELECT CLE.[Entry No_], CLE.[Customer No_], CLE.[Document No_], DCLE.[Amount]
        FROM Live.dbo.[Entry] AS CLE
        WITH (NOLOCK)
        LEFT JOIN(
            SELECT [Cust_ Entry No_], SUM([Amount]) AS [Amount]
            FROM Live.dbo.[Detailed Entry]
            WITH (NOLOCK)
            GROUP BY [Cust_ Entry No_]
        ) DCLE ON CLE.[Entry No_] = DCLE.[Cust_ Entry No_]
    ) AS ORIamt
    GROUP BY ORIamt.[Customer No_]
) AS INV ON INV.[Customer No_] = CST.[No_]

As you all can see, I have one database named Mobile. And Actually this database is used for showing the data only. Since this database is for showing the data only, I wonder how to optimize my SQL Scheduler and so the log file won’t grow too fast.

  • 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-05-31T00:20:04+00:00Added an answer on May 31, 2026 at 12:20 am

    Since you’re truncating Mobile.dbo.Customer, and Mobile is in Simple recovery mode, would it be feasible instead to drop Mobile.dbo.Customer and then recreate it with Select..into Mobile.dbo.Customer.., instead of insert into? That approach should provide the minimal logging you need.

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

Sidebar

Related Questions

I'm having trouble trying to optimize the following query for sql server 2005. Does
Does anyone know a performance or any other benefit of using select(1) or select(*)
I am new to sql query optimization and i would like to know if
Does anyone know which optimization algorithm specifically is implemented in scipy.optimize.leastsq?
can anyone can help me optimize this query and help me to tune my
Does anyone know of a guide of how to best optimize video for streaming
Anyone know if it's possible to databind the ScaleX and ScaleY of a render
Anyone know of a way to capture keyboard events (keyup / keydown) in Portable
Anyone know how to do this without using a third party program? If there
Anyone know a good book or post about how to start in EF? I

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.