PostgreSQL Drop Table Invalid Argument












1















I would also like to delete a table in PostgreSQL.



I can delete the table I just opened, but when I want to delete a previously opened table I get the following error:



DROP TABLE "ABTestCreateTable4";



DROP TABLE "ABTestCreateTable4"




ERROR: vsnprintf failed: Invalid argument





DROP TABLE "ABTestCreateTable4" CASCADE;



DROP TABLE "ABTestCreateTable4" CASCADE




ERROR: vsnprintf failed: Invalid argument





I tried two options but I got the same error.



I've searched for this problem, but I can't find any solution.



I'm using Navicat Premium.



Thanks for your help.










share|improve this question

























  • looks strange. I cannot to repeat it on current versions of PostgreSQL. Please, try update your Postgres.

    – Pavel Stehule
    Nov 13 '18 at 9:03











  • That is valid SQL. The error message looks strange though. Maybe Navicat can't cope with those dreaded quoted identifiers.

    – a_horse_with_no_name
    Nov 13 '18 at 9:09











  • Is this error an error with Navicat?

    – Onur Ek.
    Nov 13 '18 at 9:14











  • What happens when you drop the table using the psql client?

    – a_horse_with_no_name
    Nov 13 '18 at 9:22











  • I'm trying, hopefully it works.

    – Onur Ek.
    Nov 13 '18 at 10:05
















1















I would also like to delete a table in PostgreSQL.



I can delete the table I just opened, but when I want to delete a previously opened table I get the following error:



DROP TABLE "ABTestCreateTable4";



DROP TABLE "ABTestCreateTable4"




ERROR: vsnprintf failed: Invalid argument





DROP TABLE "ABTestCreateTable4" CASCADE;



DROP TABLE "ABTestCreateTable4" CASCADE




ERROR: vsnprintf failed: Invalid argument





I tried two options but I got the same error.



I've searched for this problem, but I can't find any solution.



I'm using Navicat Premium.



Thanks for your help.










share|improve this question

























  • looks strange. I cannot to repeat it on current versions of PostgreSQL. Please, try update your Postgres.

    – Pavel Stehule
    Nov 13 '18 at 9:03











  • That is valid SQL. The error message looks strange though. Maybe Navicat can't cope with those dreaded quoted identifiers.

    – a_horse_with_no_name
    Nov 13 '18 at 9:09











  • Is this error an error with Navicat?

    – Onur Ek.
    Nov 13 '18 at 9:14











  • What happens when you drop the table using the psql client?

    – a_horse_with_no_name
    Nov 13 '18 at 9:22











  • I'm trying, hopefully it works.

    – Onur Ek.
    Nov 13 '18 at 10:05














1












1








1








I would also like to delete a table in PostgreSQL.



I can delete the table I just opened, but when I want to delete a previously opened table I get the following error:



DROP TABLE "ABTestCreateTable4";



DROP TABLE "ABTestCreateTable4"




ERROR: vsnprintf failed: Invalid argument





DROP TABLE "ABTestCreateTable4" CASCADE;



DROP TABLE "ABTestCreateTable4" CASCADE




ERROR: vsnprintf failed: Invalid argument





I tried two options but I got the same error.



I've searched for this problem, but I can't find any solution.



I'm using Navicat Premium.



Thanks for your help.










share|improve this question
















I would also like to delete a table in PostgreSQL.



I can delete the table I just opened, but when I want to delete a previously opened table I get the following error:



DROP TABLE "ABTestCreateTable4";



DROP TABLE "ABTestCreateTable4"




ERROR: vsnprintf failed: Invalid argument





DROP TABLE "ABTestCreateTable4" CASCADE;



DROP TABLE "ABTestCreateTable4" CASCADE




ERROR: vsnprintf failed: Invalid argument





I tried two options but I got the same error.



I've searched for this problem, but I can't find any solution.



I'm using Navicat Premium.



Thanks for your help.







postgresql ddl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 9:02









a_horse_with_no_name

294k46451544




294k46451544










asked Nov 13 '18 at 8:57









Onur Ek.Onur Ek.

226




226













  • looks strange. I cannot to repeat it on current versions of PostgreSQL. Please, try update your Postgres.

    – Pavel Stehule
    Nov 13 '18 at 9:03











  • That is valid SQL. The error message looks strange though. Maybe Navicat can't cope with those dreaded quoted identifiers.

    – a_horse_with_no_name
    Nov 13 '18 at 9:09











  • Is this error an error with Navicat?

    – Onur Ek.
    Nov 13 '18 at 9:14











  • What happens when you drop the table using the psql client?

    – a_horse_with_no_name
    Nov 13 '18 at 9:22











  • I'm trying, hopefully it works.

    – Onur Ek.
    Nov 13 '18 at 10:05



















  • looks strange. I cannot to repeat it on current versions of PostgreSQL. Please, try update your Postgres.

    – Pavel Stehule
    Nov 13 '18 at 9:03











  • That is valid SQL. The error message looks strange though. Maybe Navicat can't cope with those dreaded quoted identifiers.

    – a_horse_with_no_name
    Nov 13 '18 at 9:09











  • Is this error an error with Navicat?

    – Onur Ek.
    Nov 13 '18 at 9:14











  • What happens when you drop the table using the psql client?

    – a_horse_with_no_name
    Nov 13 '18 at 9:22











  • I'm trying, hopefully it works.

    – Onur Ek.
    Nov 13 '18 at 10:05

















looks strange. I cannot to repeat it on current versions of PostgreSQL. Please, try update your Postgres.

– Pavel Stehule
Nov 13 '18 at 9:03





looks strange. I cannot to repeat it on current versions of PostgreSQL. Please, try update your Postgres.

– Pavel Stehule
Nov 13 '18 at 9:03













That is valid SQL. The error message looks strange though. Maybe Navicat can't cope with those dreaded quoted identifiers.

– a_horse_with_no_name
Nov 13 '18 at 9:09





That is valid SQL. The error message looks strange though. Maybe Navicat can't cope with those dreaded quoted identifiers.

– a_horse_with_no_name
Nov 13 '18 at 9:09













Is this error an error with Navicat?

– Onur Ek.
Nov 13 '18 at 9:14





Is this error an error with Navicat?

– Onur Ek.
Nov 13 '18 at 9:14













What happens when you drop the table using the psql client?

– a_horse_with_no_name
Nov 13 '18 at 9:22





What happens when you drop the table using the psql client?

– a_horse_with_no_name
Nov 13 '18 at 9:22













I'm trying, hopefully it works.

– Onur Ek.
Nov 13 '18 at 10:05





I'm trying, hopefully it works.

– Onur Ek.
Nov 13 '18 at 10:05












1 Answer
1






active

oldest

votes


















1














Try doing this:



SET lc_messages = 'C'


and then DROP TABLE table_name






share|improve this answer
























  • Thanks for your solution. Why did this happen? Do you have any information?

    – Onur Ek.
    Dec 17 '18 at 5:53











  • you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

    – Melih Sinan Doğrul
    Dec 18 '18 at 13:57













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%2f53277186%2fpostgresql-drop-table-invalid-argument%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Try doing this:



SET lc_messages = 'C'


and then DROP TABLE table_name






share|improve this answer
























  • Thanks for your solution. Why did this happen? Do you have any information?

    – Onur Ek.
    Dec 17 '18 at 5:53











  • you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

    – Melih Sinan Doğrul
    Dec 18 '18 at 13:57


















1














Try doing this:



SET lc_messages = 'C'


and then DROP TABLE table_name






share|improve this answer
























  • Thanks for your solution. Why did this happen? Do you have any information?

    – Onur Ek.
    Dec 17 '18 at 5:53











  • you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

    – Melih Sinan Doğrul
    Dec 18 '18 at 13:57
















1












1








1







Try doing this:



SET lc_messages = 'C'


and then DROP TABLE table_name






share|improve this answer













Try doing this:



SET lc_messages = 'C'


and then DROP TABLE table_name







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 16 '18 at 8:48









Melih Sinan DoğrulMelih Sinan Doğrul

262




262













  • Thanks for your solution. Why did this happen? Do you have any information?

    – Onur Ek.
    Dec 17 '18 at 5:53











  • you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

    – Melih Sinan Doğrul
    Dec 18 '18 at 13:57





















  • Thanks for your solution. Why did this happen? Do you have any information?

    – Onur Ek.
    Dec 17 '18 at 5:53











  • you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

    – Melih Sinan Doğrul
    Dec 18 '18 at 13:57



















Thanks for your solution. Why did this happen? Do you have any information?

– Onur Ek.
Dec 17 '18 at 5:53





Thanks for your solution. Why did this happen? Do you have any information?

– Onur Ek.
Dec 17 '18 at 5:53













you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

– Melih Sinan Doğrul
Dec 18 '18 at 13:57







you can have a look at this link for details: postgresql.org/message-id/2510.1542487896%40sss.pgh.pa.us

– Melih Sinan Doğrul
Dec 18 '18 at 13:57




















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%2f53277186%2fpostgresql-drop-table-invalid-argument%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

Florida Star v. B. J. F.

Error while running script in elastic search , gateway timeout

Adding quotations to stringified JSON object values