Posts

Showing posts with the label sync

Using 7 Zip Hot to sync your archive file with your directory

Image
Using 7 Zip Hot to sync your archive file with your directory 7zG u -t7z -ms=off -uq0 "C:my_document_archive.7z" "C:document" In this case the program 7-zip check in the folder "C:document" the files changed, deleted or new and update the archive "C:my_document_archive.7z" download  file  now

verilog code for D flip flop sync reset

verilog code for D flip flop sync reset Verilog code For D flip-flop sync reset module dff_sync_reset ( data , // Data Input clk , // Clock Input reset , // Reset input q // Q output ); //-----------Input Ports--------------- input data, clk, reset ; //-----------Output Ports--------------- output q; //------------Internal Variables-------- reg q; //-------------Code Starts Here--------- always @ ( posedge clk) if (~reset) begin q <= 1b0; end else begin q <= data; end endmodule //End Of Module dff_sync_reset download  file  now

Using ASNTDIFF and ASNTREP utilities to sync the data between source and target tables in DB2 Q replication

Image
Using ASNTDIFF and ASNTREP utilities to sync the data between source and target tables in DB2 Q replication When you observe that there are some data differences between source and target tables in DB2 Q replication, we can use these 2 utilities( asntdiff, asntrep ) which can compare the source and target and repair them based on our requirement to synchronize the data. ASNTDIFF : asntdiff utility which can compare two relational tables and generate a list of differences between the two. ASNTREP  : asntrep utility will syncronize a source and target table by repairing differences between the two tables. Important note : Its always good to synchronize the tables when there is less amount of activity or no activity going at source so that we can have perfectly synchronized table.     Below tutorial demonstrates the use of asntdiff to compare the source and target and asntrep to repair the target table based on differences generated by asntdiff. Below is the data populated o...