The column-defaults tag has no wiki summary.
0
votes
1answer
44 views
ActiveRecord is showing wrong column defaults
This is my first time using ActiveRecord in a non-rails application, and I'm running into a problem. ActiveRecord is able to figure out the columns I have in my sqlite3 database, but it can't figure ...
6
votes
4answers
543 views
Is there a way to conditionally use default column values in an INSERT..SELECT statement?
I've got code similar to the following in a stored procedure that inserts a row into a table, I'd like to set the last column (FieldD) to @prmSomeValue unless it is null, otherwise just use the ...
9
votes
9answers
939 views
Should a database table have default values?
I was having a discussion with a developer at work on the issue of should a table use default values. Is there a hard and fast rule on this or is it a gray area in best practices?
3
votes
1answer
146 views
Script to generate default values for not columns with no defaults specified in SQL Server
I have a MySQL database that I am migrating to SQL Server. The application that references the database breaks when I run it against SQL Server because SQL Server does not offer the implicit defaults ...
5
votes
2answers
3k views
FluentNHibernate - Setting default value for DB columns (SQL Server)
does anyone know a way how I could set through mapping the default value of a column so for e.g. when I generate DB from mappings I would have DateTime column having getdate() as default value?
I ...