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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T03:10:14+00:00 2026-05-17T03:10:14+00:00

The following query does not work, and produces an error: A transport-level error has

  • 0

The following query does not work, and produces an error:

A transport-level error has occurred when receiving results from the server

SELECT 
    * 
FROM 
    table1 a, 
    table2 b, 
    table3 c 
WHERE 
    a.location = b.location AND 
    b.location = c.location AND 
    a.id = c.id AND 
    a.entry = ''34690''

Although this query works:

SELECT 
    a.location, 
    a.id, 
    a.entry, 
    c.desc, 
    b.name 
FROM 
    table1 a, 
    table2 b, 
    table3 c 
WHERE 
    a.location = b.location AND 
    b.location = c.location AND 
    a.id = c.id AND 
    a.entry = ''34690''

I need to select pretty much everything from all tables (about 100 items), but do I really need to specify each column that I need in the resultset?

  • 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-17T03:10:15+00:00Added an answer on May 17, 2026 at 3:10 am

    Even though it’s generally a good practice to avoid using the * qualifier when writing client SELECT queries, there could be a few reason why it might not be working:

    • the SQL server product you are using, or the driver you are using does not support retrieving that many (100) columns in a single query.
    • the total size of all the columns you are trying to get back is larger than the maximum supported (most likely by the driver) – this could occur if you some of the columns are of large data types and contain a lot of data such as many VARCHAR(MAX) or TEXT columns
    • or there may be actually be a poor network connection between your server and the client – you should verify this one by executing the query locally on the server.

    EDIT

    OK, so the problem seems to be that one of the columns contains text amounting to about 1000 characters. Any way around that one??

    Have you tried running a query to return just the one column that causes the problem? If you have and that worked by itself but causes the full query to fail you could try to run two queries. One to get the rest of the columns, and one to get the remaining one column. Then in your client, re-assemble the information.. If you do go this route, you will have to make sure you include whatever unique identifier you are using to identify each record in both queries so that you can map back the long-text-column to the rest of the information for each record.

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

Sidebar

Related Questions

No related questions found

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.