Viewing 15 posts - 226 through 240 (of 380 total)
JohnFTamburo (1/27/2014)
PHYData DBA (1/27/2014)
So.... How does this work with selecting values from columns in a table? Using this would take at least two or more conversions per row on...
January 27, 2014 at 11:45 am
peter-757102 (1/27/2014)
(code)
But this will:
(code)
As the l-value type is already a datetime and can hold the time part that is added.
You just found a case where it...
January 27, 2014 at 11:43 am
JohnFTamburo (1/27/2014)
PHYData DBA (1/27/2014)
Could you give me an example of how this should be done? Maybe you did not understand the questions...
How would YOU take the two different data...
January 27, 2014 at 11:32 am
declare @time1 time(0)
,@date1 date
,@sdate smalldatetime
SELECT @time1 = '16:20', @date1 = '2013-04-20'
SELECT @sdate = @time1
select @date1 +...
January 27, 2014 at 11:29 am
JohnFTamburo (1/22/2014)
PHYData DBA (1/22/2014)
In reference to your comments about using date and time data types.
How would you recommend we take a date value and a time value and convert them...
January 27, 2014 at 11:24 am
Jeff Moden (1/23/2014)
PHYData DBA (1/22/2014)
In reference to your comments about using date and time data types.
How would you recommend we take a date value and a time value and convert...
January 27, 2014 at 11:14 am
Jeff,
In reference to your comments about using date and time data types.
How would you recommend we take a date value and a time value and convert them to a smalldatetime...
January 22, 2014 at 2:01 pm
Jeff Moden (1/22/2014)
mtassin (1/22/2014)
Jeff Moden (1/21/2014)
what I've seen on the query plan is that it typically grabs the few rows from the calendar table with a clustered index scan (yes...
January 22, 2014 at 1:49 pm
Thanks for the easy question Steve.
Having worked a lot with all types of replication this might have been easier to answer for me that the 45% that have not found...
January 22, 2014 at 10:35 am
To everyone that has commented about calculated columns, functions for values, and using something other than an Integer as a PK and row ID for Dimension tables.
I appreciate your comments...
January 22, 2014 at 9:54 am
Jeff Moden (1/21/2014)
PHYData DBA (1/21/2014)
I had no idea that my...
January 21, 2014 at 9:16 am
I want to thank everyone that took the time this morning to read my article and comment on it.
I had no idea that my very first submission would...
January 21, 2014 at 7:52 am
davoscollective (1/21/2014)
raulggonzalez (1/21/2014)
davoscollective (1/21/2014)
January 21, 2014 at 7:50 am
davoscollective (1/21/2014)
raulggonzalez (1/21/2014)
PHYData DBA (1/20/2014)There might be several other ways of doing this without using a Row By Row script. We could not find one that was as easy to...
January 21, 2014 at 7:46 am
mtassin (1/21/2014)
Jeff Moden (1/21/2014)
First, these two tables are one of the few places where I'd use the natural key of either the date or the time...
January 21, 2014 at 7:44 am
Viewing 15 posts - 226 through 240 (of 380 total)