5
votes
5answers
5k views
access to auto increment identity field after SQL insert in java
Any advise on how to read auto incrementing identity field assigned to newly created record from call through java.sql.Statement.executeUpdate ?
I know how to do this in SQL for several DB …
0
votes
Query a Table’s Foreign Key relationships
This article may help:
http://www.databasejournal.com/features/oracle/article.php/3665591
…
3
votes
SQL Server Convert integer to binary string
Following could be coded into a function. You would need to trim off leading zeros to meet requirements of your question.
declare @intvalue int
set @intvalue=5
declare @vsresult v …
0
votes
Owner ID type database fields
If you want to take advantage of foreign key constraint and normalize the attributes of comments (and ratings) across base tables, you may need to create relationship tables between base tables and …
