Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
379 views

Convert varchar colum to smalldatetime

I have a table with 800+ records. In this table I have a column named 'Data' of varchar (10) datatype which contains dates in 'dd.MM.yyyy' format.I want to convert it to smalldatetime. I've tried ...
3
votes
3answers
2k views

datetime vs smalldatetime

If I don't care about less than seconds, what should be the recommended type to store my datetime values in sql-server 2005, is it datetime or smalldatetime or else?
2
votes
2answers
422 views

SSIS Date Format dd-mmm-yy to Smalldatetime

I have a flat file which is imported into SQL Server via an existing SSIS package. I need to make a change to the package to accommodate a new field in the flat file. The new field is a date field ...
2
votes
6answers
91 views

C# inserting datetime failure

I've got a database with a table called Fio_FinalSched which in turn has a column named FinalDate with type smalldatetime. I convert the date string to a DateTime type by: DateTime theDate = ...
2
votes
1answer
2k views

check for null date in CASE statement, where have I gone wrong?

My source table looks like this Id StartDate 1 (null) 2 12/12/2009 3 10/10/2009 I want to create a select statement, that selects the above, but also has an additional column to ...
2
votes
4answers
396 views

SQL Server programming - update all dates by a given number of days

I have a demo database with a couple of hundred tables in it. Each table usually has at least one field named tstamp which is a smalldatetime datatype. Some tables have other datefields too. Many ...
2
votes
4answers
1k views

Asp.net to SQL Server 2005, UPDATE smalldatetime procedure doesn't work?

As the topic suggests. I'm making a small program where you can browse and handle a bunch of data. The problem is that while inserting new rows into the SQL table works fine, using the same methods to ...
2
votes
3answers
3k views

How do I convert an SQL Server SMALLDATETIME to a Unix timestamp?

How do I convert an SQL Server SMALLDATETIME to Unix Timestamp? date was stored as CAST(0x96040474 AS SmallDateTime) in MS Access DB. Data was dumped to SQL and I'm looking to convert those times ...
0
votes
0answers
23 views

SmallDateTime In SQL Server

How can I retrieve only the TIME in the SmallDateTime datatype in SQL using SELECT Command?
0
votes
4answers
132 views

how to disable displaying time in datatype smalldatetime

I have a textbox that should inserting a date in dd/MM/yyyy format. What only I can find and use is smalldatetime or datetime. I pick smalldatetime and the data displayed was like for example ...
0
votes
0answers
172 views

Store date into LINQ to SQL smalldatetime field [closed]

Possible Duplicate: Error - SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. The schema I'm working with has a relation with a smalldatetime field that ...
0
votes
1answer
116 views

OleDBDataType for smalldatetime

I have an sp with a parameter of smalldatetime datatype. I'm calling my SP through OleDbConnection in my C# code. using OleDbConnection is a requirement so don't answer to change my connection type ...
0
votes
2answers
308 views

SQL Server 2005: converting smalldatetime to varchar behaves differently in view and 'normal' query

I have a view that basically just returns all records from a table, and adds a column 'isodate' which is supposed to be the date in ISO-Format. CREATE VIEW [dbo].[v_bedarfe] AS SELECT ...
0
votes
1answer
376 views

How to compare just the date, not the timestamp using LINQ

I'm trying to compare just the date of a column but because the query below is also comparing the time I get no result set back. How could I write this same LINQ query if I'm only interested in the ...
0
votes
3answers
3k views

conversion of a varchar to a smalldatetime results in an out-of-range value

The code: strSql = "insert into table2 (transactiondate) values ('" & transactiondate & "')" seems to be giving me the runtime error: The conversion of a varchar data type to a ...
0
votes
2answers
530 views

Unable to inject smalldatetime into D-SQL statement

when i try to execute this sql statement i am getting the error.. Conversion failed when converting character string to smalldatetime data type. Does anyone know what i am doing wrong? declare ...
0
votes
3answers
1k views

Tsql VarChar implicitly to SmallDateTime

When executing the following using a smalldatetime constraint on the returned results, I get zero results: Execute sp_proc @DateOfBirth = '01/01/1900' or Execute sp_proc @DateOfBirth = ...