Redshift query not returning certain columnsVery bad performance of UNION select query in RedShift / ParAccelData value “0” has invalid format error in redshiftTable scan on Redshift table even with sort keysRedshift time-series table loading questionsAWS Redshift Query Plan WarningRedshift cluster bigger because of running queryDifficulty in constructing SQL query for RedshiftWeird error returned by date_trunc() in RedshiftQuerying data from redshift table, column of data type timestampRedshift window function for change in column

Passwordless authentication - how invalidate login code

Are "confidant" and "confident" homophones?

How to factor a fourth degree polynomial

Does the Milky Way orbit around anything?

Groups where no elements commute except for the trivial cases

Does the sensor of a dslr count the number of photons that hits it?

How did the IEC decide to create kibibytes?

Implicit conversion between decimals with different precisions

What purpose does mercury dichloride have in fireworks?

Is this car delivery via Ebay Motors on Craigslist a scam?

Why do Martians have to wear space helmets?

Why do most airliners have underwing engines, while business jets have rear-mounted engines?

When moving a unique_ptr into a lambda, why is it not possible to call reset?

Why do we need a bootloader separate from our application program in microcontrollers?

What is this airplane with small wings at different angles seen at Paphos Airport?

What's the difference between a type and a kind?

I'm feeling like my character doesn't fit the campaign

Possibility to correct pitch from digital versions of records with the hole not centered

Is reasonable to assume that the 食 in 月食/日食 can be interpreted as the sun/moon being "eaten" during an eclipse?

Gory anime with pink haired girl escaping an asylum

What is the shape of the upper boundary of water hitting a screen?

How to reclaim personal item I've lent to the office without burning bridges?

Taking my Ph.D. advisor out for dinner after graduation

Who goes first? Person disembarking bus or the bicycle?



Redshift query not returning certain columns


Very bad performance of UNION select query in RedShift / ParAccelData value “0” has invalid format error in redshiftTable scan on Redshift table even with sort keysRedshift time-series table loading questionsAWS Redshift Query Plan WarningRedshift cluster bigger because of running queryDifficulty in constructing SQL query for RedshiftWeird error returned by date_trunc() in RedshiftQuerying data from redshift table, column of data type timestampRedshift window function for change in column






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have encountered a strange error on on of our tables ("nav") with the following structure:



position | character varying(400)
timestamp | timestamp without time zone


If I run the following query, I get back, as expected, all matching results for the 2 columns:



SELECT * FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


However, if I run the following query, I get back the same number of results, but each field/row is empty:



SELECT position FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


I run the same query on similar tables and experience no issues. Any ideas as to what may be causing the second to return blanks in the rows please?










share|improve this question
























  • Can you share sample data, and both outputs

    – mdem7
    Mar 25 at 16:10











  • This sounds to me like an issue with the tool you're using to query Redshift rather than an issue with Redshift itself. What tool are you using?

    – Nathan Griffiths
    Mar 25 at 19:04











  • @NathanGriffiths I am using psql

    – RunLoop
    Mar 26 at 3:14






  • 1





    I'm not able to replicate this using Aginity Workbench for Redshift, the above queries always return values (although I have no idea what your data looks like). Possibly this is an artifact of using psql with Redshift, I'm not sure. What happens if you run the following: select "position" from nav ?

    – Nathan Griffiths
    Mar 26 at 6:55











  • Thanks @NathanGriffiths I tried it but same result unfortunately. Strange thing is we have another table that is very similar - same field types, names and values and for it the queries all run fine. It is just this one table.

    – RunLoop
    Mar 26 at 8:51

















0















I have encountered a strange error on on of our tables ("nav") with the following structure:



position | character varying(400)
timestamp | timestamp without time zone


If I run the following query, I get back, as expected, all matching results for the 2 columns:



SELECT * FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


However, if I run the following query, I get back the same number of results, but each field/row is empty:



SELECT position FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


I run the same query on similar tables and experience no issues. Any ideas as to what may be causing the second to return blanks in the rows please?










share|improve this question
























  • Can you share sample data, and both outputs

    – mdem7
    Mar 25 at 16:10











  • This sounds to me like an issue with the tool you're using to query Redshift rather than an issue with Redshift itself. What tool are you using?

    – Nathan Griffiths
    Mar 25 at 19:04











  • @NathanGriffiths I am using psql

    – RunLoop
    Mar 26 at 3:14






  • 1





    I'm not able to replicate this using Aginity Workbench for Redshift, the above queries always return values (although I have no idea what your data looks like). Possibly this is an artifact of using psql with Redshift, I'm not sure. What happens if you run the following: select "position" from nav ?

    – Nathan Griffiths
    Mar 26 at 6:55











  • Thanks @NathanGriffiths I tried it but same result unfortunately. Strange thing is we have another table that is very similar - same field types, names and values and for it the queries all run fine. It is just this one table.

    – RunLoop
    Mar 26 at 8:51













0












0








0








I have encountered a strange error on on of our tables ("nav") with the following structure:



position | character varying(400)
timestamp | timestamp without time zone


If I run the following query, I get back, as expected, all matching results for the 2 columns:



SELECT * FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


However, if I run the following query, I get back the same number of results, but each field/row is empty:



SELECT position FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


I run the same query on similar tables and experience no issues. Any ideas as to what may be causing the second to return blanks in the rows please?










share|improve this question
















I have encountered a strange error on on of our tables ("nav") with the following structure:



position | character varying(400)
timestamp | timestamp without time zone


If I run the following query, I get back, as expected, all matching results for the 2 columns:



SELECT * FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


However, if I run the following query, I get back the same number of results, but each field/row is empty:



SELECT position FROM nav WHERE timestamp >= '2019-03-24' AND timestamp < '2019-03-25';


I run the same query on similar tables and experience no issues. Any ideas as to what may be causing the second to return blanks in the rows please?







amazon-web-services amazon-redshift






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 20:52









John Rotenstein

88.2k8 gold badges101 silver badges151 bronze badges




88.2k8 gold badges101 silver badges151 bronze badges










asked Mar 25 at 15:50









RunLoopRunLoop

10k20 gold badges81 silver badges134 bronze badges




10k20 gold badges81 silver badges134 bronze badges












  • Can you share sample data, and both outputs

    – mdem7
    Mar 25 at 16:10











  • This sounds to me like an issue with the tool you're using to query Redshift rather than an issue with Redshift itself. What tool are you using?

    – Nathan Griffiths
    Mar 25 at 19:04











  • @NathanGriffiths I am using psql

    – RunLoop
    Mar 26 at 3:14






  • 1





    I'm not able to replicate this using Aginity Workbench for Redshift, the above queries always return values (although I have no idea what your data looks like). Possibly this is an artifact of using psql with Redshift, I'm not sure. What happens if you run the following: select "position" from nav ?

    – Nathan Griffiths
    Mar 26 at 6:55











  • Thanks @NathanGriffiths I tried it but same result unfortunately. Strange thing is we have another table that is very similar - same field types, names and values and for it the queries all run fine. It is just this one table.

    – RunLoop
    Mar 26 at 8:51

















  • Can you share sample data, and both outputs

    – mdem7
    Mar 25 at 16:10











  • This sounds to me like an issue with the tool you're using to query Redshift rather than an issue with Redshift itself. What tool are you using?

    – Nathan Griffiths
    Mar 25 at 19:04











  • @NathanGriffiths I am using psql

    – RunLoop
    Mar 26 at 3:14






  • 1





    I'm not able to replicate this using Aginity Workbench for Redshift, the above queries always return values (although I have no idea what your data looks like). Possibly this is an artifact of using psql with Redshift, I'm not sure. What happens if you run the following: select "position" from nav ?

    – Nathan Griffiths
    Mar 26 at 6:55











  • Thanks @NathanGriffiths I tried it but same result unfortunately. Strange thing is we have another table that is very similar - same field types, names and values and for it the queries all run fine. It is just this one table.

    – RunLoop
    Mar 26 at 8:51
















Can you share sample data, and both outputs

– mdem7
Mar 25 at 16:10





Can you share sample data, and both outputs

– mdem7
Mar 25 at 16:10













This sounds to me like an issue with the tool you're using to query Redshift rather than an issue with Redshift itself. What tool are you using?

– Nathan Griffiths
Mar 25 at 19:04





This sounds to me like an issue with the tool you're using to query Redshift rather than an issue with Redshift itself. What tool are you using?

– Nathan Griffiths
Mar 25 at 19:04













@NathanGriffiths I am using psql

– RunLoop
Mar 26 at 3:14





@NathanGriffiths I am using psql

– RunLoop
Mar 26 at 3:14




1




1





I'm not able to replicate this using Aginity Workbench for Redshift, the above queries always return values (although I have no idea what your data looks like). Possibly this is an artifact of using psql with Redshift, I'm not sure. What happens if you run the following: select "position" from nav ?

– Nathan Griffiths
Mar 26 at 6:55





I'm not able to replicate this using Aginity Workbench for Redshift, the above queries always return values (although I have no idea what your data looks like). Possibly this is an artifact of using psql with Redshift, I'm not sure. What happens if you run the following: select "position" from nav ?

– Nathan Griffiths
Mar 26 at 6:55













Thanks @NathanGriffiths I tried it but same result unfortunately. Strange thing is we have another table that is very similar - same field types, names and values and for it the queries all run fine. It is just this one table.

– RunLoop
Mar 26 at 8:51





Thanks @NathanGriffiths I tried it but same result unfortunately. Strange thing is we have another table that is very similar - same field types, names and values and for it the queries all run fine. It is just this one table.

– RunLoop
Mar 26 at 8:51












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341651%2fredshift-query-not-returning-certain-columns%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55341651%2fredshift-query-not-returning-certain-columns%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현