Which Is Better? Int Or Smalldatetime(MSSQL)
Jul 23, 2005
I have a table that contains transactional data. Such as site view by
whom, when, which template, etc, etc...
Everytime when I pulled the report, hh:mm:ss never matters. Only
breakdown by dates, not time.
Having read some chapters of Ralph Kimball's book, I am inspired to
build "date" table with integer as primary key.
Here's what I have for schema of transactional table.
- viewed_customer_id int (4bytes)
- template_id uniqidentifier (16 bytes)
- viewed_on datetime (8 bytes)
And here's the version I am thinking of building
- viewed_customer_id int (4bytes)
- template_id uniqidentifier (16 bytes)
- viewed_date_key int (4 bytes)
- seconds int (4 bytes)
* I put seconds just in case I need to retrieve hour based or minute
based report.
Here's my question. I've also noticed that smalldatetime is also 4bytes
of memory but it consists of 2 sets of 2 bytes.
When I index, would there be significant performance difference between
indexing 4 byte of column and indexing 2bytes x 2 of column?
View 7 Replies
ADVERTISEMENT
Mar 30, 2007
I am using Visual Studio 2005 and SQL Express 2005. The database was converted from MS Access 2003 to SQL Express by using the upsize wizard.
I would like to store the current date & time in a column in a table. This column is a smalldatetime column called 'lastlogin'.
The code I'm using is:
Dim sqlcommand As New SqlCommand _
("UPDATE tableXYZ SET Loggedin = 'True', LastLogin = GetDate() WHERE employeeID = '" & intEmployeeID.ToString & "'", conn)
Try
conn.Open()
sqlcommand.ExecuteNonQuery()
conn.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
This code works fine on my local machine and local SQL server. However at the client side this code results in the error as mentioned in the subject of this thread. I first used 'datetime.now' instead of 'getdate()', but that caused the same error. Then I changed the code to 'getdate()', but the error still remains.
The server at the client is running Windows Server 2000 UK . My local machiine is running WIndows XP Dutch.
Maybe the conversion from Dutch to UK has something to do with it. But this should be solved by using the 'Getdate()' function..... ?
View 1 Replies
View Related
Aug 11, 2004
How many result-rows does mssql return should be used asynchronous method to use mssql cursor, can get the best performance in any time in any result offset?
i want to make the cursor fast in any time whatever how many results returned
View 2 Replies
View Related
Feb 10, 2008
Hi,
i was planning to create a database migration tool ..
its a certain database of a DMS (document management system) to
another DMS (two different DMS)... from DMS using msde 2000 server .. and tranfer to a DMS using a postgre sql or mssql .. depends ..
they have different table structures and names . . :D
i was thing of what language shall i use.. or what language is the best to work on this kind of project :)
hoping for your kind help guys. thanks :)
br
Frozenice
View 1 Replies
View Related
Sep 6, 2006
Does enabling/disabling Data Execution Prevention have a performanceimpact on SQL 2000 or SQL 2005?For SQL best performance - how should I configure for:Processor Scheduling:Programs or Background servicesMemory Usage:Programs or System Cache
View 9 Replies
View Related
Mar 24, 2008
Hi,
I am a bit new to the MSSQL server. In our application, we use so many SQL queries. To imporve the performance, we used the Database enigine Tuning tool to create the indexes. The older version of the application supports MSSQL 2000 also. To re-create these new indexes, I have an issue in running these "CREATE INDEX" commands as the statements generated for index creation are done in MSSQL 2005. The statements include "INCLUDES" keyword which is supported in MSSQL 2005 but not in MSSQL 2000.
Ex:-
CREATE INDEX IND_001_PPM_PA ON PPM_PROCESS_ACTIVITY
(ACTIVITY_NAME ASC, PROCESS_NAME ASC, START_TIME ASC, ISMONITORED ASC)
INCLUDE
(INSTANCE_ID, ACTIVITY_TYPE, STATUS, END_TIME, ORGANIZATION);
Any help in creating such indexes in 2000 version is welcome.
Thanks,
Suresh.
View 2 Replies
View Related
May 3, 2008
Hello
We are using SQL 2005 and now we are planning to use SQL 2000. what are the ways to do the process.
We taken the script spcificall for 2000 and run it in SQL 200. But we are getting the error in SCRIPT?
Could you please give me the step to do?
Thanks,
Sankar R
View 6 Replies
View Related
Oct 26, 1999
Hello:
I am currently work on mssql 6.5. On my workstation, I have mssql 6.5
cient software.
However, I would like to install mssql 7.0 server on my nt workstation
and work with it to become familiar with 7.0. Can I install mssql 7.0
server on my nt workstation? Can mssql 6.5 client coexist with mssql 7.0
on the same machine if they are in different directories?
Thanks.
David Spaisman
View 1 Replies
View Related
Jun 15, 2006
Ben writes "I have a sql script that doesn't function very well when it's executed on a SQL 2000 server.
The scrpt looks like this:
---------------------------------------------------------------------------------------------------
USE [master]
GO
IF NOT EXISTS (SELECT * FROM master.dbo.syslogins WHERE loginname = N'SSDBUSERNAME')
EXEC sp_addlogin N'SSDBUSERNAME', N'SSDBPASSWORD'
GO
GRANT ADMINISTER BULK OPERATIONS TO [SSDBUSERNAME]
GO
GRANT AUTHENTICATE SERVER TO [SSDBUSERNAME]
GO
GRANT CONNECT SQL TO [SSDBUSERNAME]
GO
GRANT CONTROL SERVER TO [SSDBUSERNAME]
GO
GRANT CREATE ANY DATABASE TO [SSDBUSERNAME]
GO
USE [master]
GO
If EXISTS (Select * FROM master.dbo.syslogins WHERE loginname = N'SSDBUSERNAME')
ALTER LOGIN [SSDBUSERNAME] WITH PASSWORD=N'SSDBPASSWORD'
GO
GRANT ADMINISTER BULK OPERATIONS TO [SSDBUSERNAME]
GO
GRANT AUTHENTICATE SERVER TO [SSDBUSERNAME]
GO
GRANT CONNECT SQL TO [SSDBUSERNAME]
GO
GRANT CONTROL SERVER TO [SSDBUSERNAME]
GO
GRANT CREATE ANY DATABASE TO [SSDBUSERNAME]
GO
USE [master]
GO
IF EXISTS (select * from dbo.sysdatabases where name = 'ISIZ')
DROP DATABASE [ISIZ]
GO
USE [SurveyData]
GO
exec sp_adduser 'SSDBUSERNAME'
GRANT INSERT, UPDATE, SELECT, DELETE
TO SSDBUSERNAME
GO
USE [SurveyManagement]
GO
exec sp_adduser 'SSDBUSERNAME'
GRANT INSERT, UPDATE, SELECT, DELETE
TO SSDBUSERNAME
---------------------------------------------------------------
I need to be converted to a script that can be executed on both MSSQL 2000 and MSSQL 2005.
I was wondering if somebody there could help me with this problem?!
Thanks,
Ben"
View 1 Replies
View Related
Nov 17, 2007
I've been tasked to move our production databases on MSSQL 2000 to 2005. I've supported MSSQL since version 6.5 and performed migrations to successor versions.
Current Environment is MSSQL 2000 32-bit with current Service Packs.
I've performed mock migrations on Test servers upgrading all Production instances simultaneously from MSSQL 2000 to 2005 32-bit. The Test environment is identical to Production minus server name, IP etc. Also I have a separate server with MSSQL 2005 installed where I use the DETACH / ATTACH and BACKUP / RESTORE method for migration / acceptance testing. There are approximately 30 databases totaling 70 GB. This has gone as expected and fairly successful. Vendors have been coordinated with to update code and staff for acceptance testing.
I'd prefer going directly to MSSQL 2005 64-bit instead if possible due to memory benefits etc. This is where I'd like some feedback prior to borrowing a 64-bit server for testing.
Upgrade options:
1. Is it better to migrate from MSSQL 2000 32-bit to 2005 64-bit via:
a. DETACH / ATTACH
b. BACKUP / RESTORE
c. Is one method more advantageous relating to the end result?
2. Regarding XP clients, have issues been experienced with the default SQL Server driver or is an alternate recommended for XP clients to connect to a MSSQL 64-bit server databases?
3. If you have performed this migration and have relevant experience please pass them along.
View 3 Replies
View Related
Mar 4, 2004
im getting this error while inserting into table (description of table given below)
mytable
mycode smallint identity,
mydataitem varchar(100),
mydatefrom smalldatetime,
mydateto smalldatetime,
myopcode smallint,
lastupdate smalldatetime
my sql statement was
INSERT INTO mytable
(mydataitem,mydatefrom,mydateto,myopcode,lastupdat
e)
VALUES
('SAMPLEDATA','01/01/2003','18/05/2003',1,'05/Mar/2004')
THE ERROR RETURNED IN MY CLIENT APP IS
[Microsoft][ODBC SQL Server Driver][SQL Server]The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value.
AND THAT IN QA IS
Server: Msg 296, Level 16, State 3, Line 1
The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value.
The statement has been terminated.
can ne 1 point out the mistake in my sql statement ?
__________________
Cheers....
baburajv
View 4 Replies
View Related
Jul 3, 2007
I have an Execute SQL Task that pulls the max date from a sql table.
SELECT max(date_Idx) FROM dbo.FactDailyInventorySnapshot
This field is defined as a smalldatetime. I want to store this max date in a variable in SSIS called LastDate.
Then in a data flow, in an OLE DB Source, I want to use it as a parm in a sql command to compare to a smalldatetime field.
My question is, what type of variable do I declare it in in SSIS, and what is the correct parameter mapping inside of my sql query? I thought I had exhausted all combinations of variable types and parameter types. I have even tried casting it as different data types when I do the exec sql task of getting the max date. Any help would be appreciated. Thanks!
View 1 Replies
View Related
Jul 14, 2006
I need to convert a datetime field to smalldatetime.
This particular field we only care about the time portion (an example would be '1899-12-30 13:15:00.000')
For now I created another field say 'newTime' that is smalldatetime, in which I want to "update" to the smalldatetime version of the data. I know this will truncate the ms, but I don't care about that. Also the min date that can be used with smalldatetime is Jan 1 1900.
Not sure how to go about doing this.
View 3 Replies
View Related
Mar 30, 2000
Hi guys!
I need to convert datetime data type to smalldatetime on production
server with hundreds transactions per minute. In this case do I need to restrict users access to the table or put table in the single user mode?
Or it doesn't have any impact on productivity and I just can open Design table window in SQL Enterprise Manager and edit it?
Thank you in advance,
Igor
View 1 Replies
View Related
Dec 2, 1999
I am looking for just the date element of a datetime/smalldatetime col. For example the rows appear in typical datetime/smalldatetime format as:
1999-11-30 07:53:00
I need just "1999-11-30". So how do I strip off the time element? Datepart doesn't seem to be the route to take. I also need to use the date with Datediff so by stripping off the time element, I still need to keep the date element as a date datatype.
Thank you,
TW
View 4 Replies
View Related
Oct 15, 1999
In T-SQL, how can I create a smalldatetime containing the
first day of the month relative to a smalldatetime parameter.
Example:
CREATE PROCEDURE @x smalldatetime -- @x = '1999.3.15'
--
DECLARE @y smalldatetime
-- How do I set @y = '1999.3.1' ??
--
Thanks.
Tom
View 1 Replies
View Related
Nov 29, 2000
Hi, i´m have a problem with the Convert function in sql 7 enterprise
when i have the value '07-31-1967' format mm-dd-yyyy i recivied the error 296
The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value
the sentence i use is
set @dfnacimien = (Convert(varchar(10),@dfnacimien,110))
Someone please help me!!!!
View 1 Replies
View Related
May 24, 1999
Hi,
My system has SQL Server 7.0. I am retrieving date from an asp page using ADODB, I get the date in 'mm/dd/yy' format when I use smalldatetime as my datatype. I am aware that smalldatetime datatype is supposed to retieve data in 'mm/dd/yyyy' format. Please let me know if you have any inputs on this.
Thanks,
Rashmi.
View 1 Replies
View Related
Nov 21, 2005
Rather than reinvent the wheel, can someone pass along a date/time function combination? I have a field of smallDateTime being used primarily for the time value - all rows have the same date. e.g., format is 10/22/2005 01:00:00 PM.
What's the easiest function combination to get all rows for day (then night) where day is defined as 6am-10pm (night is midnight-6am and 10pm-midnight). Thought I could use datepart and hh, but it doesn't give me 1 pm as the true miliary time of 13.
Many thanks.
View 5 Replies
View Related
Aug 17, 2004
Will someone please tell me how to pull the time out of a smalldatetime field.
The code i am trying to use is as follows:
Select datepart(hh:mm, TimeField1)
from table1;
This gives me an error. I have also tried datepart('hh:mm'... datepart("hh:mm"... and other variations but i cant get anything to work. Thanks in advance for any help!!
View 2 Replies
View Related
Oct 13, 2005
Hi,
I just want to get the value from a smalldatetime into time only in a SQL Statement
10/10/2005 10:00:00 AM --- > 10:00:00 AM
What would be the best approached?
Thanks,
Vince
View 1 Replies
View Related
Oct 24, 2005
Hello everyone. I am running into some small problems converting a smalldatetime field. I currently have 2005-10-17 00:00:00
in the field but what it to have forward slashes instead of th dash. I tried a few convert methods but not successful.
Does anyone have any ideas on how to make this work?
All help is appreciated.
View 3 Replies
View Related
Mar 1, 2004
SQL Server 2000
Used to know how to do this but am having no luck today. I have data coming in from a .txt file that gives me char strings for dates, e.g. 02242003 for Feb. 2, 2003.
Need to whomp this into small datetime with the whole convert/cast thing but I guess I've previously only gone the other way--smalldatetime to char.
Thanks!!!
View 4 Replies
View Related
Sep 5, 2006
Hi im having trouble with SQL datatypes. i am trying to insert into a cell a date, month and day are retrieved from a drop down box whereas the year is retrieved from a textbox.
Also SQL datatypes only allow either 'datetime' and 'smalldatetime'. I am using SmallDateTime (i dont understand why sql doesn't have just a 'date' type)
Either way when i use the below code it inserts the month and day but when it comes to the year, it will always insert either 2001 or 2002 even if thats not what i put in the text box.
'VARIABLES
Dim month As String = DropDownList1.SelectedIndex + 1
Dim day As String = DropDownList2.SelectedItem.Text.ToString()
Dim year As String = dobTextBox.Text.ToString()
'PARAMETER
cmd.Parameters.Add("@dob", SqlDbType.SmallDateTime).Value = month + "/" + day + "/" + year
Anyone understand why it is doing this?
If you think you know it all?! You know nothing!
View 5 Replies
View Related
Sep 9, 2007
What would the proper way to write the following query be? Thanks in advance.
Select * from mydb where smalldatetimefield > today's date.
View 18 Replies
View Related
Jul 23, 2005
Hello all and thank you for your time.I have a datagrid where I want to view dates (smalldatetime) and beable to sort on the field. However, I do not want to have the timepart show. If I use the convert function(convert(char,ProjDate,101) asProjDate) the field is then a char and does not sort correctly.Any solutions?Thanks again,Sunshine
View 3 Replies
View Related
Aug 31, 2007
Sorry to clutter the board with something so simple... but 'm very, very new at this.
What is the result of adding '1' to a smalldatetime type value?
for example, if a smalldatetime value @timebiscuit had the value 8/31/2007 4:00:00 PM, then what would
@timebiscuit + 1
return? What would I add to @timebiscuit to get 9/1/2007 4:00:00 PM? Thanks.
-steve
View 6 Replies
View Related
Feb 14, 2008
Hi,
I€™ve Got a field like €˜2008-02-14 00:00:000€™
and another field like €™18:30:00€™ (NVARCHAR(8))
I want to merge this 2 fields in a single field (SMALLDATETIME) to get the following output €˜2008-02-14 18:30:00€™
Any clue about the best way to obtain this output ?
Thanks in advance.
View 5 Replies
View Related
Apr 24, 2007
I am trying to insert data into a table that has two smalldatetime columns
I am using the following code
INSERT INTO dbo.Orders
SELECT TAX_ID, Customer_ID, InvoiceNumber, DeliveryCharge, TimeSlot_ID, convert(CHAR(8), DateStamp, 112), convert(CHAR(8), DeliveryDate, 112) , Order_ID
FROM dbo.Pending_Orders
I have tried a few different things but I keep getting the error
Arithmetic overflow error converting expression to data type smalldatetime.
Or must use Convert
when I try CAST AS smalldatetime
Also, Can some please tell me where I can get information about the mask number i.e. 112
Thanks
View 4 Replies
View Related
Aug 20, 2007
Hallo,I am trying to insert date in a table in my database, where column type is smalldatetime. Query works fine if date format is mm.dd.yy:INSERT INTO DateTable (DateValue) VALUES ('8.18.2007 22:00:00') works fine! But if the time format is dd.mm.yy it does not work:INSERT INTO DateTable (DateValue) VALUES ('18.8.2007 22:00:00') does not work!The error message is: The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value. Is there any chance to execute(dd.mm.yy) INSERT INTO DateTable (DateValue) VALUES ('18.8.2007 22:00:00') properly? Thanx!Marko
View 5 Replies
View Related
Mar 25, 2008
Hi.
Is there a way to convert a smalldatetime value to a year value (1/1/2001 -> 2001) in this case?
I tried year(thisIsSmalldatetimeField) and datepart(yyyy, thisIsSmalldatetimeField)
Dim FilterExpression As String = String.Concat("thisIsSmalldatetimeField=" & DropDownList.SelectedValue & "")
mySqlDataSource.FilterParameters.Clear()
mySqlDataSource.FilterExpression = FilterExpression
View 6 Replies
View Related
Feb 24, 2004
Hi,
I am having a column subdate as smalldatetime.
The field can have null values. But I am not able to insert null values into the database.
i tried using subdate="". But it inserts some min value of my calendar popup.
Is there a way that i could insert null values into smalldatetime field of the SQl database.
Thanks,
-sriram
View 9 Replies
View Related
Aug 5, 2005
I just imported an Access database into SQL Server. The database is the 2005-2006 NFL schedule. there are 2 smalldatetime columns, one of which is the date of the games, the other has the times. In order to get the table to import (without just stopping with an error) I had to change the smalldatetime setting on the SQL Server table to Varchar. The error I was recieving was "blahblahblah DBTYPE_DBTIMESTAMP), status 6: Dataoverflow. ... Invalid character value for cast specification" . Google has explained that this is due to the dates being outside of the acceptable range. An example of a date in the date column is "9/11/2005". An example of a time in the time column is "1:00:00 PM". These seem perfectly acceptable to my untrained eye, and they do indeed work in the Access version of the database.Now for the questions:What do I have to do to these dates to make them acceptable to the smalldatetime setting? Can I just run a query that smushes the two columns together into a valid datetime? I need to have them as valid dates in order to perform checks when people submit their picks (you can't make picks after the game has started). Is there any real reason why SQL Server would not have accepted them as they existed in the Access database? How lenient are the datetime and smalldatetime datatypes?I realize that in the time it took me to type out this post I could have just manually re-entered them all into one new datetime column, but I would like to know why this isn't working. I hope my post isn't too jumbly. Any help is appreciated.
View 5 Replies
View Related