Categories:
Uncategorized By:
tamacrea
Ini istilah2x pada java yg dasar untuk dimengerti
JDK = Java Development Kit - if you want to develop or just compile Java
programs (*.java -> *.class -> *.jar)
JRE = Java Runtime Environment - if you want to execute a Java program
Just my simple descriptions:
J2SE = Java 2 Standard Edition - (JDK+JRE) - for common purposes for [...]
SHARETHIS.addEntry({
title: "Terms of JAVA",
url: "http://tamacrea.wordpress.com/2006/11/29/terms-of-java/"
});
Categories:
Uncategorized By:
tamacrea
USE [DB Name]
SELECT o.name AS TableName, c.name AS ColumnName, t.name AS DataType, c.max_length, c.precision, c.scale
FROM sys.objects AS o INNER JOIN
sys.columns AS c ON o.object_id = c.object_id INNER JOIN
sys.types AS t ON c.user_type_id = t.user_type_id
WHERE (o.type = ‘U’)
SHARETHIS.addEntry({
title: "How to view tables structure on ms sql",
url: "http://tamacrea.wordpress.com/2006/11/23/how-to-view-tables-structure-on-ms-sql/"
});
Categories:
Uncategorized By:
tamacrea
When life reach every point…, up or down u will felt each excitement, but there some point of your life that u just cannot understand or explain what is going on….
Feeling that recognition to everything arround u r dwindle, make u confuse, and then u start asking “what is missing form my life….”
And u keep [...]
SHARETHIS.addEntry({
title: "Drifted",
url: "http://tamacrea.wordpress.com/2006/11/23/drifted/"
});
Categories:
Uncategorized By:
tamacrea
Case :
How to make auto increment on ms sql database…
Solution :
If you create the table in Enterprise Manager or Visual Studio there is a list of properties for esach column you create, three of them are called identity (yes,no) identity seed (what number to start from) and increment (the step, or how much [...]
SHARETHIS.addEntry({
title: "Auto Increment Feature",
url: "http://tamacrea.wordpress.com/2006/11/02/auto-increment-feature/"
});