I love dBlog!
Immagine
 Uomini di Ferro... di Admin
 
"
Molti dei nostri uomini politici sono degli incapaci. I restanti sono capaci di tutto.

Boris Makaresko
"
 
\\ MusoWeb Home Page
Benvenuto in questo blog dove troverai un po' di tutto e un po' di niente. . . . . . . ma sopratutto un po' di me!

 
I Piu' Letti del Momento
1    Italian Streaming    (linkato 57508 volte)
4    Euromillions vs SuperEnalotto    (linkato 14973 volte)
5    Servizio clienti SKY per "Autenticazione HDCP fallita"    (linkato 14705 volte)
 
MusoWebLog
 
Di Muso (del 09/02/2017 @ 00:11:23, in Informatica, linkato 1515 volte)
We have encountered a CIL compilation issue for a custom class which referenced a custom VS project in the AOT. The errors gave no indication as to the cause and looked as follows: Cannot create a record in Compiler information (TmpCompilerOutput). Path: \Classes\\, Warning: No proxy found. Type FileIOPermission found on the stack. This code in Class: , Method: . The record already exists. Attempted to read or write protected memory. This is often an indication that other memory is corrupt. The interesting thing is, that the class in question compiled fine. However, when we looked at it in the AOT, right after the CIL generation failed, and hovered over the method’s signature line, we saw a context error message stating: CIL generation: Error: .NET Cast Type Name not found. Type System.String found on the stack. This code in Class/Table: , Method: may not work in CIL run time. In order to resolve we copied the Microsoft.Dynamics.AX.Xpp.Support.dll assembly from the Server/Bin to Client/Bin, which produced a clean CIL compilation. If you can, before to adopt this solution, I suggest to restart the AOS!!
 
Di Muso (del 09/02/2017 @ 00:11:23, in Informatica, linkato 1210 volte)
We have encountered a CIL compilation issue for a custom class which referenced a custom VS project in the AOT. The errors gave no indication as to the cause and looked as follows: Cannot create a record in Compiler information (TmpCompilerOutput). Path: \Classes\\, Warning: No proxy found. Type FileIOPermission found on the stack. This code in Class: , Method: . The record already exists. Attempted to read or write protected memory. This is often an indication that other memory is corrupt. The interesting thing is, that the class in question compiled fine. However, when we looked at it in the AOT, right after the CIL generation failed, and hovered over the method’s signature line, we saw a context error message stating: CIL generation: Error: .NET Cast Type Name not found. Type System.String found on the stack. This code in Class/Table: , Method: may not work in CIL run time. In order to resolve we copied the Microsoft.Dynamics.AX.Xpp.Support.dll assembly from the Server/Bin to Client/Bin, which produced a clean CIL compilation. If you can, before to adopt this solution, I suggest to restart the AOS!!
 
The only way was: 1- Unistall Team Explorer 2- Install Visual Studio 3- Install Team Explorer many days thrown in the toilet
 
Di Muso (del 25/03/2014 @ 13:27:12, in Informatica, linkato 2903 volte)
tratto da : http://yasirnedian.blogspot.ch/ In this post we will look at how can we delete a label file in Dynamics AX 2012.Labels are no longer a file system like we had in 2009. We now have a new node in AOT - Label Files. If you search in your application folder, you wont find the label file there.The application folder is located here. "C:\Program Files\Microsoft Dynamics AX\60\Server\MicrosoftDynamicsAX\bin\ Application\ Appl\Standard". In Dynamics AX 2012, the label file is imported in your current model. Now let us restart the AOS and see what happens. After restarting the AOS, go back to your application folder and try to find the label file again. This time the label file will be found.On every AOS restart, all label files will be copied to the application folder from the model store. So your label files are contained in your models but they are stored in your application folder as well. Now let us try to delete the label file. Right click on your label file. Do you see a delete/remove option? The answer is "No". so how do we delete the label file then? Below is the method by which a label file can be deleted easily. To create a temporary model Move our label file to the temporary model Stop the AOS Delete the temporary model Start the AOS Let 's do step by step. Go to Tools -> Model management -> Create model. Enter name as TmpModel. Press OK. You will recieve an info message saying “The model TmpModel was created successfully in layer usr.” Right click on your label file and select “Move to model”. Select the TmpModel checkbox and press OK. Stop the AOS. Open command prompt (Microsoft Dynamics AX 2012 Management Shell). We will be using the command line utility AXUTIL to delete the model. Issue the following command in the command prompt. AXUTIL delete /model:TmpModel You will be prompted if you want to delete the model or not. Press Y Start the AOS. Delete the label file from your application folder as well. When you open AX now, you will get a dialog saying that “Your model store has been modified.” This is normal because each time you perform an operation on a model, you will get this dialog. Depending on your operation, you should select one of the option. Since we just deleted a model which just had a label file, select Skip. Open AOT and notice that the label file is deleted now.
 
Di morale (del 21/04/2013 @ 20:00:00, in Politica, linkato 6901 volte)
Al riguardo, la valutazione più acuta è dello stesso Napolitano:

“La mia rielezione sarebbe una non soluzione perché ora ci vuole il coraggio di fare delle scelte, di guardare avanti, sarebbe sbagliato fare marcia indietro, sarebbe ai limiti del ridicolo. Tutto quello che avevo da dare ho dato. Niente soluzioni pasticciate e all’italiana” (14 aprile 2013).

Non si vuole esprimere un polemico giudizio sulla scelta del Presidente di acconsentire alla sua rielezione. Quindi, nessuna critica personale al Presidente Napolitano, il quale, suo malgrado, si deve essere trovato in queste ultime settimane a dovere prendere scelte, che mai avrebbe verosimilmente voluto compiere.
 
Di Muso (del 04/03/2013 @ 15:21:30, in Informatica, linkato 6944 volte)
taken from: mablomy

It was a standard installation of MySQL (typical install option) on plain Windows 8 Standard and the same for Windows 7. The test run was a batch of 500.000 INSERT commands in an SQL script. Runtime was 4 minutes on Win7 and 4 hours Win8.
Some tests later we found out that it was only bad on InnoDB. Finally we nailed the problem down to one parameter in MySQL:
innodb_flush_log_at_trx_commit
Each INSERT statement is a single transaction (autocommit mode). MySQL is configured very faithfully and ensures that each transaction is really stored on disk. This is necessary for ACID compliance. D in ACID stands for 'durability'. To store data durable, at least the log file has to be written physically. That's why MySQL when a transaction commits forces the operating system to flush its buffers and even forces the disk cache to flush its buffer. That's the meaning of flush_log_at_trx_commit = 1 in the my.ini or my.cnf file.
MSSQL is much more relaxed with your data. It writes the data to disk device. But it may stay in the disk cache, and MSSQL does not care. If you have a crash, your data is not up-to-date on the physical disk and you may lose data. This is definitely not ACID compliant. Microsoft documented this here:
  • By default, the disk cache is enabled. Use the 'Disk Properties', Hardware tab to access the 'Properties', 'Policy' tab to control the disk cache setting. (Note Some drives do not honor this setting. These drives require a specific manufacturer utility to disable cache.)
  • ...
  • Disk caching should be disabled in order to use the drive with SQL Server.
So to have a fair comparison beween MSSQL and MySQL either
  • set innodb_flush_log_at_trx_commit = 2
    This forces the flush to disk only once per second and brings good performance but data is not 100% safe on disk (unless you have a battery backed write cache)
  • disable the disk cache in Windows 8
    This will force MSSQL to write physically to disk. And then Win8 is 30 times slower than before. ; - )
If you need more info on the different cache levels for file IO here is a very good link:
 
Di Muso (del 07/09/2012 @ 12:08:49, in Lo sapevi che , linkato 7105 volte)
Scalcinet è un sito web con una semplice finalità: permettere agli utenti di offrire oggetti di loro proprietà o ricercare oggetti offerti da altri utenti.
Il tutto si svolge nello spirito di piena collaborazione della comunità, dove si spera che le reciproche necessità possano venire soddisfatte: chi non ha più bisogno di un oggetto, invece di buttarlo, può trovare qualche persona interessata ad esso e, viceversa, chi ha bisogno di qualche oggetto può sperare di trovare qualcuno che lo offra gratuitamente.

Lo spirito principale del sito è la totale assenza di fini di lucro.
La registrazione e l'utilizzo del sito sono completamente gratuiti, e anche gli annunci inseriti dagli utenti non devono prevedere nessun corrispettivo in denaro.
Gli oggetti trattati possono essere di ogni genere, ovviamente non devono trattarsi di oggetti considerati illegali dalle leggi del paese di appartenenza.
...

Continua a leggere...


Technorati tag  amici; annunci; gratuito; scalcinet;
 
Di Muso (del 30/07/2012 @ 10:27:14, in Informatica, linkato 7118 volte)
Come capita piu' o meno a tutti, anche io sono stato vittima di spam, quindi vi scrivo questa breve guida per inserire nel vostro bel dBlog il reCaptcha.
AVVISO che l'eliminazione dello spam NON e' IMMEDIATA!!! Suppongo per una questione di caching delle pagine sui server in giro per il mondo che permettono un accesso alle pagine con il vecchio codice. Cmq Tempo un mesetto e tutto si risolve.
...

Continua a leggere...


Technorati tag  antispam; captcha; dBlog; informatica; recaptcha; spam;
 
Di Muso (del 03/07/2012 @ 12:56:34, in Tecnologia, linkato 4291 volte)
tratto da: TheGalaxyTab

My new Galaxy Note is great, but I get an error whenever I try to have it sync with my Samsung account in Settings. It asks for my password, I put it in correctly--the same password that works fine on the Samsung Dive web site--and I get an error that says "The value of userauth_token parameter is incorrect."

The suggestion is to remove and then re-add the Samsung account. I did so, and it now works. So, there's a possible solution for anyone else who may experience this problem in the future.
 
Di Muso (del 07/06/2012 @ 20:00:00, in Societa', linkato 3975 volte)
Ho trovato un articolo che riguarda un'azienda agricola che deve svuotare il magazzino per potersi rimettere in pista dopo il sisma.
Per questo vende il Parmigiano Reggiano ai seguenti prezzi:
- 14 mesi a 11,5 € al Kg in confenzioni da 500gr oppure da Kilo sottovuoto
- 27 mesi a 13 € al Kg in confenzioni da 500gr oppure Kilo sottovuoto
- Crema spalmabile a 11 € al Kg in confezioni da 250gr

Questo il link del sito : http://www.aziendacasumaro.altervista.org/index.html
Io farò l'ordine Lunedì 11 Giugno, se volete aggregarvi mandatemi una mail, altrimente fate da soli xchè lo spediscono a casa.
 
MusoLinkLog
10/07/2007 - Il sito di una radio che trasmette SEMPRE cose interessanti - Radio 24
05/07/2007 - Che dire del blog di Beppe . . . . .se avete voglia di inca..arvi c'e' molto materiale - Beppe Grillo
05/07/2007 - Un sito sempre aggiornato e interessante - Punto Informatico
20/06/2007 - Il Blog di Paolo Attivissimo, giornalista informatico - Il Disinformatico
06/06/2007 - Quello che ogni esperto di comunicazione deve sapere - Robin Good



Blog ON-LINE dal 01/06/2007 
Sono state qui' 4859 persone
Sono state viste 7257 pagine
Oggi ho ricevuto 0 visite
Ieri ho ricevuto 2 visite
 
Locations of visitors to this page
 
Add to Technorati Favorites

Ci sono 608 persone collegate

< marzo 2024 >
L
M
M
G
V
S
D
    
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
             

Cerca per parola chiave
 

Titolo
Blogosfera (11)
Eventi (12)
Films (2)
Gossip Corner (4)
Informatica (51)
Lo sapevi che (49)
Personali (24)
Politica (39)
Racconti (16)
Recensioni (2)
Societa' (6)
società (11)
Spazio DIL (2)
Sport (8)
Tecnologia (21)
Top 5 (3)
Vendesi (4)

Gli interventi più cliccati

Ultimi commenti:
Chiamo Antonella Gro...
02/05/2018 @ 13:43:31
Di Antonella
Chiamo Laura Luzchni...
16/04/2018 @ 18:03:13
Di Laura Luzchniak
Avete bisogno di ass...
03/04/2018 @ 18:56:10
Di gerard

Titolo
Eventi (16)
Header (7)
Informatica (3)
Personali (23)
Sport (14)
Vendesi (7)

Le fotografie più cliccate

Titolo
Ti piace questo blog?

 Fantastico!
 Carino...
 Così e così
 Bleah!

Titolo

Listening
Vasco
Ligabua
Doors
Caparezza
U2
Rolling Stones
Beatles

Reading
Franceschi - Fiabe della Bouna Notte
Ken Follett

Watching
Diamanti di Sangue - Blood Diamond
L'ombra del potere - The Good Shepherd



msxml3.dll error '80070005'

Access is denied.

/dBlog/inc_modulo_flickr.asp, line 12