Viewing 15 posts - 3,571 through 3,585 (of 15,381 total)
notifications 61467 (11/19/2014)
November 19, 2014 at 3:01 pm
DSNOSPAM (11/19/2014)
What I need to do is join some tables and return the results.
But can I use the results of a...
November 19, 2014 at 2:57 pm
Matt Miller (#4) (11/19/2014)
Sean Lange (11/19/2014)
DSNOSPAM (11/19/2014)
I've been reading about possible performance hits. However, this is in a reporting/analysis environment, not on a production server, and it would...
November 19, 2014 at 2:54 pm
Here is yet another way...
with LegacyData (LegacyDate) as
(
select '0980412' union all
select '1100323'
)
select *
, cast(case left(LegacyDate, 1) when 0 then '19' else '20' end + SUBSTRING(LegacyDate, 2, 2) + SUBSTRING(LegacyDate,...
November 19, 2014 at 2:50 pm
sqlquery29 (11/19/2014)
We are migrating data from old DB2 systems to sql server 2012, the DATE FORMAT in those systems is in decimal format with 7 digits. CYYMMDD format.
I need...
November 19, 2014 at 1:43 pm
DSNOSPAM (11/19/2014)
I've been reading about possible performance hits. However, this is in a reporting/analysis environment, not on a production server, and it would be less of a consideration,...
November 19, 2014 at 1:41 pm
shree_z (11/19/2014)
In SSRS I want these...
November 19, 2014 at 1:36 pm
cphite (11/19/2014)
November 19, 2014 at 12:53 pm
No need to apologize at all. I let you know they are there to make things easier for you. 🙂 Unlike some other online places we try to be nice...
November 19, 2014 at 12:49 pm
Igor Micev (11/19/2014)
Sean Lange (11/19/2014)
Igor Micev (11/19/2014)
Sean Lange (11/19/2014)
It makes sense if you think about it. How would...
November 19, 2014 at 11:01 am
Hi and welcome to the forums. Let's start with some formatting so we can read this. If you use the IFCode shortcuts on the left side when posting you can...
November 19, 2014 at 10:16 am
Igor Micev (11/19/2014)
Sean Lange (11/19/2014)
It makes sense if you think about it. How would the 208 database know...
November 19, 2014 at 10:06 am
Koen Verbeeck (11/18/2014)
ksatpute123 (11/18/2014)
Here is the MSDN reference:I hope this helps in further clarification regarding money data types.
Great, so you just copy pasted a response from Celko. Now I...
November 19, 2014 at 9:14 am
Koen Verbeeck (11/14/2014)
Jason-299789 (11/14/2014)
Koen Verbeeck (11/13/2014)
ps: the semicolon is a statement terminator, it...
November 19, 2014 at 9:09 am
Trestire (11/19/2014)
thank you! will do a small research on your solution! works for me
No need to kill yourself doing research. Jeff Moden has written two excellent article on this very...
November 19, 2014 at 9:03 am
Viewing 15 posts - 3,571 through 3,585 (of 15,381 total)