Posts by LordDual • 81 points
13 posts
-
0
votes2
answers32
viewsA: How to increase the title font of a Seaborn.displot chart?
f = sns.displot(df,x="yearOfRegistration", kde=True, binwidth=5) f.set_title("Distribuição de Veículos com base no Ano de Registro" , fontsize = 20) f.set_axis_labels("Ano de Registro","Densidade…
-
0
votes1
answer57
viewsA: How to use a python command in Windows?
Just to understand.. I saw what you did in the colab I wonder if your python code would be a notebook, the file is like ipynb? If it is a notebook file, it will be necessary that you have an…
-
0
votes1
answer124
viewsQ: I cannot validate the current computer time with IF ELSE, on Dart
I’m trying to do a validation on Dart, where my function timevalider() has a variable of type dynamic, where he fits in with what I put in. I’m doing the following assignment time = new…
-
-1
votes1
answer82
viewsA: Error while trying to run an Update with Parameter in SQL
I put a LIKE operator in my Where So you solved my problem update tabela_usin usin set usin.peca = &P1 || ' ' ||&P11 where usin.descricao like '%&P2%' and usin.complem like '%&P3%';…
-
1
votes1
answer82
viewsQ: Error while trying to run an Update with Parameter in SQL
I’m having a little problem that’s being a headache. I want to update with a SET, where it involves two parameters concatenated. Following update: update tabela_usin usin set usin.peca = &P1 ||…
-
1
votes1
answer54
viewsA: doubt sql database
The column 'SCD_ITEM_CONTR' is an identity column, so you have to activate an identity insert in the table, and insert the value specifications in the table. See if this solves: set IDENTITY_INSERT…
-
1
votes1
answer247
viewsQ: How do I put an Alert with IF in Javascript using Values List
I’m setting up a javascript function that makes a list of values control SELECT in my SQL. Because the List of Both are giants. So maybe from the guy clicking directly to show everything from the…
-
-2
votes2
answers167
viewsQ: Calculator in javascript+ Html no Quit result
I don’t know what I did wrong, I’m starting on this and I followed the booklet, but the mistake: can someone help me? <!DOCTYPE html> <html> <head> <title>Calculadora…
-
1
votes1
answer56
viewsA: How to make a "Case When" when the condition is called a Package with the function and Passed the Parameters?
PROBLEM SOLVING: Eventually I found out, I did the following: IF Pcoluman = 'aceito' THEN if (v_respon_alg = 'Y') OR (v_respon_las = 'Y') OR (v_respon_nye = 'Y') OR (v_respon_vav = 'Y') THEN…
-
0
votes1
answer56
viewsQ: How to make a "Case When" when the condition is called a Package with the function and Passed the Parameters?
I am trying to make a modification in the Query without destroying a logic already made. Original Query: IF Pcoluman = 'aceito' THEN if (v_respon_alg = 'Y') OR (v_respon_las = 'Y') OR (v_respon_nye…
-
0
votes0
answers1421
viewsQ: #2054 Unable to login to Mysql server - Phpmyadmin - APACHE ( PASSWORD ERROR)
I was doing the settings, at the time of installing mysql I ended up putting a password but ended up missing believe. Now when logging into Myphpadmin - it gives this error. I’m Using Apache>…
-
1
votes1
answer43
viewsQ: How to Take data from an SQL table by referencing only the first position of the VARCHAR type
I need to delete everything that starts with '9' in my seg1 column, for example: If in the table this '954747A' will be eliminated because the 9 is the first position. If you have '34465922A' It…
-
1
votes1
answer763
viewsQ: Error making UTL_HTTP request. ORA-28759: Failure to open file
By making a request the determined endpoint, error occurs below CREATE OR REPLACE PROCEDURE CALL_REST_WEBSERV_POST_METHOD AS V_WLT_DIRECTORY VARCHAR2(4000) :=…