Problem description:
Error splicing file: No space left on device
Reason analysis:
Memory card space is insufficient
Solutions;
Just find the Trash and empty the recycle bin. I really can’t change the memory card.
Tag Archives: ProgrammerAH
Windows 10 upgrade 1803 failed because of dual hard disk!!

What The FK!! Update is going to give up, close the 35 days to update, obsessive compulsive disorder, I do not lose heart, however, continue to baidu, see some old article mentioned Windows 7 upgrade win10 similar mistakes, the reason is caused by double hard disk, and my machine is a mechanical hard disk and a solid, estimates that, immediately began unstitching chassis, pull the mechanical drive, the power cord cable boot, to update, brush brush… Problem solved!! Problem solved!! Problem solved!! Ten thousand monsters in my heart! Is this Microsoft update too sloppy??BUG10 lives up to its name?

Dell server reported CPU 1 has an internal error (ierr)
Restart the server and press F2 to enter the BIOS, select the System BIOS Settings option, and select System Profiles to enter. Please disable the C1E and Cstate options here. Then shut down and completely power off. Long press the power on button for 20 seconds and then restart the server. Restart and solve the problem
Reproduced in: https://www.cnblogs.com/wanggege/p/4755120.html
Error occurred during initialization of VM Could not reserve enough space for 3145728KB object heap
Teradata bteq does not support the length function
Executing an SQL in a production environment is perfectly fine, but in a Perl program there is a Syntax error saying anything at all about Failure 3706 Syntax error. Change the LENGTH function to a CHARS function. Problem solved.
iPhone on Windows 10: “Device is unreachable” SOLVED [Debug]
- Disconnect your iPhone/iPad from your computerGo to Settings on your iOS deviceOpen Photos and scroll to the bottomUnder ‘Transfer to Mac or PC’, chang efrom Automatic to Keep Originals (“Automatically transfer photos and videos in a compatible format, or always transfer the original file without checking for compatibility.”)
Now connect again the device to the Windows 10 computer and copy/paste the files again; it should work fine now!
iPhone connected to Windows 10 computer. iTunes is not a necessity to be installed when copying files from one to the other.
MySQL error 1451 23000 foreign key exception handling
Share my teacher’s artificial intelligence tutorial! Zero basis, easy to understand! http://blog.csdn.net/jiangjunshow
You are also welcome to reprint this article. Share knowledge, benefit the people, and realize the great rejuvenation of the Chinese nation!
1. Execute DELETE to report an error
mysql> delete from JBPM4_EXECUTION;
ERROR 1451 (23000): Cannot delete or updatea parent row: a foreign key constraint fails (`jbpm_db`.`JBPM4_EXECUTION`,CONSTRAINT `FK_EXEC_INSTANCE` FOREIGN KEY (`INSTANCE_`) REFERENCES`JBPM4_EXECUTION` (`DBID_`))
mysql>
The table has a foreign key, so delete is wrong. Here are two ways to handle it:
(1) Temporary setting of foreign key failure
(2) Delete the table data of the foreign key involved in the table
2. Handling scheme of foreign key failure
mysql> SET FOREIGN_KEY_CHECKS = 0; # Temporarily set foreign key invalidation Query OK, 0 Rows affected (0.00 SEC) MySQL> Mysql> delete from JBPM4_EXECUTION; # Execute delete operation Query OK, 110 Rows Affected (0.00 SEC) MySQL> Mysql> SET FOREIGN_KEY_CHECKS = 1; After the # operation restore foreign keys Query OK, 0 Rows affected (0.00 SEC) MySQL> td> tr> tbody> table> 3, delete the foreign key table data out of the scheme First, query all the foreign key situations involved in table lock, and query THE SQL as follows: The
Executing the query will see the following foreign key:
|