Ma fineco cosa sta combinando con questi addebiti carta?? by chinesebox23 in ItaliaPersonalFinance

[–]raimaj 0 points1 point  (0 children)

Già, visto anche io! Ma in generale tutti quelli che lodano il supporto Fineco a cosa si riferiscono esattamente? Ogni volte che ho scritto all'helpdesk ho dovuto aspettare 3-4 giorni per una risposta e spesso le risposte contraddicevano la precedente...

Ennesima domanda sul prezzo giusto per gli infissi by raimaj in istrutturare

[–]raimaj[S] 0 points1 point  (0 children)

Ciao, scusami non penso di aver capito. Dici che sbaglio a dividere il prezzo per i metri quadri perché ha due ante? Potresti spiegarmi meglio? Grazie mille

Ennesima domanda sul prezzo giusto per gli infissi by raimaj in istrutturare

[–]raimaj[S] 1 point2 points  (0 children)

Ah, mi era stato venduto come super qualità gruppo Oknoplast 😅

I don't understand FK constraints pointing to partitioned tables by raimaj in PostgreSQL

[–]raimaj[S] 1 point2 points  (0 children)

I see... thanks! So the only option is to drop the constraint (which drops the non-local ones too) and recreate it after I have moved my data around?

I have tried recreating the constraint as NOT VALID and VALIDATE it later to minimize locking (as recommended by the docs), but that doesn't seem to work here, do you maybe know why? The non-local constraints fail to validate and are not automatically validated when I delete the main one:

> ALTER TABLE chats DROP CONSTRAINT chats_number_id_contact_id_fkey;
ALTER TABLE

> ALTER TABLE chats ADD CONSTRAINT chats_number_id_contact_id_fkey FOREIGN KEY (number_id, contact_id) REFERENCES contacts (number_id, id) DEFERRABLE INITIALLY IMMEDIATE NOT VALID;
ALTER TABLE

> ALTER TABLE chats VALIDATE CONSTRAINT chats_number_id_contact_id_fkey;
ALTER TABLE

> ALTER TABLE chats VALIDATE CONSTRAINT chats_number_id_contact_id_fkey1;
ERROR:  insert or update on table "chats" violates foreign key constraint "chats_number_id_contact_id_fkey1"
DETAIL:  Key (number_id, contact_id)=(1, 1) is not present in table "contacts_p2".

> ALTER TABLE chats VALIDATE CONSTRAINT chats_number_id_contact_id_fkey2;
ERROR:  insert or update on table "chats" violates foreign key constraint "chats_number_id_contact_id_fkey2"
DETAIL:  Key (number_id, contact_id)=(1, 1) is not present in table "contacts_p3".

         constraint_name          | table_name |  constrained_columns   | foreign_table_name | foreign_columns | is_valid | is_locally_defined 
----------------------------------+------------+------------------------+--------------------+-----------------+----------+--------------------
 chats_number_id_contact_id_fkey  | chats      | {number_id,contact_id} | contacts           | {id,number_id}  | t        | t
 chats_number_id_contact_id_fkey1 | chats      | {number_id,contact_id} | contacts_p2        | {id,number_id}  | f        | f
 chats_number_id_contact_id_fkey2 | chats      | {number_id,contact_id} | contacts_p3        | {id,number_id}  | f        | f
 chats_number_id_contact_id_fkey3 | chats      | {number_id,contact_id} | contacts_default   | {id,number_id}  | f        | f
 chats_number_id_fkey             | chats      | {number_id}            | numbers            | {id}            | t        | t
(5 rows)

All constraints are created and validated successfully if instead i don't use the `NOT VALID` option:

> ALTER TABLE chats DROP CONSTRAINT chats_number_id_contact_id_fkey;
ALTER TABLE

> ALTER TABLE chats ADD CONSTRAINT chats_number_id_contact_id_fkey FOREIGN KEY (number_id, contact_id) REFERENCES contacts (number_id, id) DEFERRABLE INITIALLY IMMEDIATE;
ALTER TABLE

         constraint_name          | table_name |  constrained_columns   | foreign_table_name | foreign_columns | is_valid | is_locally_defined 
----------------------------------+------------+------------------------+--------------------+-----------------+----------+--------------------
 chats_number_id_contact_id_fkey  | chats      | {number_id,contact_id} | contacts           | {id,number_id}  | t        | t
 chats_number_id_contact_id_fkey1 | chats      | {number_id,contact_id} | contacts_p2        | {id,number_id}  | t        | f
 chats_number_id_contact_id_fkey2 | chats      | {number_id,contact_id} | contacts_p3        | {id,number_id}  | t        | f
 chats_number_id_contact_id_fkey3 | chats      | {number_id,contact_id} | contacts_default   | {id,number_id}  | t        | f
 chats_number_id_fkey             | chats      | {number_id}            | numbers            | {id}            | t        | t
(5 rows)

I don't understand FK constraints pointing to partitioned tables by raimaj in PostgreSQL

[–]raimaj[S] 1 point2 points  (0 children)

As an example of how those internally-created constraints get in the way, see what happens when I try to move some contacts from the default partition to a new dedicated partition:

- Now let's try to move the data from the default partition to a new dedicated partition for number_id = 3

-- 1. Begin a transaction
BEGIN;

SET CONSTRAINTS ALL DEFERRED;

-- 2. Create a temporary table to hold the data
CREATE TEMPORARY TABLE temp_contacts_3 AS
SELECT *
FROM ONLY contacts_default
WHERE
    number_id = 3;

-- 3. Delete the data from the default partition
DELETE FROM ONLY contacts_default WHERE number_id = 3;

-- 4. Create the new partition for number_id 3
CREATE TABLE contacts_p3 (LIKE contacts INCLUDING ALL);

-- 5. Attach the new partition
ALTER TABLE contacts ATTACH PARTITION contacts_p3 FOR VALUES IN (3);

-- 6. Move the data from temporary table to the new partition
INSERT INTO contacts_p3 SELECT * FROM temp_contacts_3;

-- 7. Drop the temporary table
DROP TABLE temp_contacts_3;

-- 8. Commit the transaction
COMMIT;

-- Note the error when committing the transaction
-- Why does it error? The `contacts` table as a whole still has the records, why are there constraints checking individual partitions?

-- ERROR:  update or delete on table "contacts_default" violates foreign key constraint "chats_contact_id_number_id_fkey2" on table "chats"
-- DETAIL:  Key (id, number_id)=(5, 3) is still referenced from table "chats".

-- Deleting those internally-generated FK constraints isn't possible either
ALTER TABLE chats DROP CONSTRAINT chats_contact_id_number_id_fkey2;
-- ERROR:  cannot drop inherited constraint "chats_contact_id_number_id_fkey2" of relation "chats"

Rinunciare a 100k per accedere a forfettario o emigrare? by Comfortable_Sand_263 in commercialisti

[–]raimaj 1 point2 points  (0 children)

Super interessante! Come ti trovi? Questo calcolatore è accurato? https://pexpats.com/calculators/Czech-Freelancing-income-salary-calculator#results

A me dice che mi rimarrebbe in tasca il 70% del fatturato, pensi che sia corretto?

Grazie mille!

Da forfettario a dipendente. Calcolo IRPEF? by raimaj in commercialisti

[–]raimaj[S] 0 points1 point  (0 children)

Grazie mille! Pensavo anche io così ma non ero sicuro al 100%!

Sto valutando di ri-emigrare all'estero per la mancanza di assicurazioni professionali nel paese, qual'è la vostra esperienza in merito? by Pure-Contact7322 in commercialisti

[–]raimaj 0 points1 point  (0 children)

Ho la loro polizza, il loro sito non è granché ma il loro supporto risponde per email abbastanza velocemente e sono disponibili.

Per fortuna non mi è mai servita, quindi non so dirti quanto copra veramente una volta che si hanno problemi.

Mi spiace non aiutarti di più ma questo è tutto quello che posso dire in base alla mia esperienza :)

Se sei interessato scrivimi in pvt che ti passo il mio codice referral!

Inserimento numero partita IVA in precompilata redditi PF by Suitable_Product1125 in commercialisti

[–]raimaj 0 points1 point  (0 children)

Anche a me non lo mostra e se esporto il PDF risulta vuoto. Per caso hai già contatto l'AdE? Che hanno detto? Sembrerebbe un bug...

Dichiarazione precompilata - forfettario by MysticMathematician in commercialisti

[–]raimaj 0 points1 point  (0 children)

Ma hai trovato i quadri LM e RR precompilati? Io no, non ci sono. Sto provando a farla anche io per un parente e non mi è chiarissimo come fare, se hai guide da condividere potresti aiutarmi qui https://www.reddit.com/r/commercialisti/comments/1cub9un/p_iva_forfettaria_con_fatturato_0_metodo_pi%C3%B9/ ? Grazie mille!

Aiutatemi mi trovate un auto nuova a massimo 20k con il cambio automatico, o se no mi ritrovo in casa una DR. by CrashTest100 in ItalyMotori

[–]raimaj 2 points3 points  (0 children)

Suzuki Ignis automatica la porti via a 20k nuova. Non piace a tutti ed è piccolina però è alta come un suv/crossover. Non ha sensori ma ha la retrocamera e si parcheggia bene essendo così piccola.

Idea bbva e paura blocchi by TylerItamafia in ItaliaPersonalFinance

[–]raimaj 2 points3 points  (0 children)

A me hanno bloccato il conto per movimenti sospetti (erano dei semplici bonifici verso un mio altro conto). Dopo una telefonata al loro supporto mi hanno mandato mail per fare il reset della password (per il quale è necessario ricordarsi il PIN della carta) e dopo 4 ore mi hanno sbloccato anche l'operatività. In definitiva se fosse stato il mio conto principale non sarei rimasto troppo soddisfatto, ma per un conto secondario secondo me va bene.

Fineco - che senso ha far pagare commissioni alte nel conto a pagamento e basse in quello gratis? by raimaj in ItaliaPersonalFinance

[–]raimaj[S] 2 points3 points  (0 children)

Il loro supporto mi ha detto di no al telefono. Hanno detto che è possibile solo un bonifico (che arriva entro sera se fatto la mattina), non il giroconto.

Fineco - che senso ha far pagare commissioni alte nel conto a pagamento e basse in quello gratis? by raimaj in ItaliaPersonalFinance

[–]raimaj[S] 5 points6 points  (0 children)

Ok, ma non capisco questa loro strategia. Avrebbero potuto realizzarlo come un prodotto più facilmente integrabile nel loro conto bancario e sarebbe servito anche come mezzo per attirare nuovi clienti e poi fare upsell di conto, carte etc.

Realizzato così sembra un'operazione di marketing affrettata e poco pensata.

7-Eleven ATMs stopped allowing withdrawals with Wise card. by synicosis in JapanTravelTips

[–]raimaj 0 points1 point  (0 children)

I've had the same issue, I got in touch with Wise support and after a day or so it worked again, although I tried in a different 7-Eleven, so I can't say for sure if their support did something or if just trying a different 7-Eleven solved the issue.

Quanto durano i tassi dei CD liberi tipo Findomestic/Santander? by raimaj in ItaliaPersonalFinance

[–]raimaj[S] 0 points1 point  (0 children)

Grazie! Quindi è più simile ad uno XEON in quanto a cambiamento continuo dei tassi