Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
4answers
9k views

Using SQL Server 2008 and SQL Server 2005 and date time

I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error. The version of SQL Server ...
5
votes
2answers
475 views

Datetime2 conversion in EF4

well, after having spent endless time googling for an answer , i have to add another question in this matter... i have a table with 2 datetime fields, generated by EF4 EDMX designer in VS 2010. the ...
3
votes
2answers
243 views

SqlDateTime overflow error when saving DateTime.MinValue on a POCO entity

I've been having som issues when saving POCO entities with a DateTime property. When the DateTime property has the value of DateTime.MinValue the SaveChanges() fails because of the difference between ...
2
votes
3answers
81 views

Is there a reason not to use DateTime2?

Am I missing a reason not to use the new DateTime2 datatype? For example, might it cause problems when migrating to another database system or integrating it with another technology?
2
votes
1answer
138 views

SQL Server 2008 stored procedure with DateTime2

I have a small question about stored procedures and the DateTime2 datatype in SQL Server 2008. I got several stored procedures using the DateTime2 datatype and I want to insert the date 0001.01.01 ...
2
votes
1answer
257 views

Datetime2 precision in .NET

Microsoft did introduce the Datetime2 type in SQL server 2008. However, even with VS 2010 (made by the same compagny and realeased 2 years after MSSQL2008), I couldn't find a variable type that would ...
2
votes
2answers
4k views

SSIS 2008 Execute SQL output parameter mapping datetime2 problem

I'm trying to use an Execute SQL Task in SSIS 2008 to map a store procedure output parameter to a package variable. The package variable is SSIS type DateTime and the store procedure parameter is SQL ...
1
vote
1answer
38 views

For the .NET DateTime type, why is the inferred database type SqlDbTypes.DateTime instead of SqlDbTypes.DateTime2?

For the .NET DateTime type, why is the inferred database type SqlDbTypes.DateTime instead of SqlDbTypes.DateTime2? (See http://msdn.microsoft.com/en-us/library/yy6y35y8.aspx) Background By ...
1
vote
1answer
206 views

Unexpected error about DateTime type

I have a .aspx page for adding new product include the following field: ID, Name, DateTime, Price and it run well at localhost but when I publish it and up to the server, then I get the following ...
1
vote
2answers
344 views

How to force LINQ to SQL to pass .NET DateTime as datetime2?

I have a simple query in LINQ to SQL: var id = 23479824; var date = Changes.Where(ch => ch.Id == id).First().Date; var diff = Changes.Where(ch => ch.Id == id).Select(ch => ...
1
vote
2answers
2k views

T-SQL: Convert datatime2 to datetime for all columns of type datetime2

I've got a database full of datetime2 columns than needs to be moved to a SQL 2005 database. So, I need to convert all these datetime2(7) columns to datetime. How can I go about doing this? Right ...
0
votes
1answer
81 views

How is SQL Server's timestamp2 supposed to work in JDBC?

I'm having some trouble trying to use timestamp2 instead of Timestamp in SQL Server 2008. Apparently, rs.getTimestamp has very different behavior between timestamp and timestamp2. However, I can't ...
0
votes
0answers
29 views

datetime(2) in select/update statements?

I'm trying to clean up some legacy data by selecting records from one table based on a date criteria, and populating another date field in the related table. The two dates may not be the same, that is ...
0
votes
2answers
38 views

Is number after DateTime2 is for nanosecond purpose?

I have read the document already but i do not fully understand The default precision is datetime2(7) is 7 represent the precision of nanosecond?
0
votes
1answer
99 views

EF: Change ProviderManifestToken or change datatype?

Two questions, followed by details: What other side effects occur when I change my ProviderManifestToken to "2005"? Is it unwise to make the schema change in the database from datetime to datetime2? ...
0
votes
0answers
180 views

Parameter mapping issue with DateTime2 when using ADO.NET Connection Manager

I have a table in SQL2008R2 that uses the new DateTime2 datatype. In SSIS I have a Execute SQL task where I map a user variable to a stored procedure input parameter. Unfortunately in SSIS the new ...
0
votes
2answers
177 views

DataColumn - how to distinguish datetime or datetime2

I am having trouble identifying the type of a datetime DataColumn. If I grab a DataTable from SQL 2008 a datetime DataColumn could be a datetime or datetime2 but there appears to be no difference ...
0
votes
0answers
475 views

DateTime2 not supported error while using Entity Framework and .NET 4.0 [closed]

I am using Entity Framework 4.0 and asp.net 4.0 and SQL Server 2008 (10.0) as backend. Everything went fine. Once I tried to deploy my application in server which has SQL Server 2005 (9.0), it was ...
0
votes
1answer
183 views

How can I make my EF4 entities use the datetime2 type with SQL Server CE 3.5?

I would like to store DateTime values using the datetime2 type in SQL Server CE 3.5. If this is possible, how would I change my entity data model? I've tried editing it manually and Visual Studio ...