Viewing 15 posts - 2,236 through 2,250 (of 11,678 total)
Steve Jones - SSC Editor (7/29/2014)
Koen Verbeeck (7/29/2014)
The weekends are off limits as...
July 29, 2014 at 11:13 am
jhamilton 47458 (7/29/2014)
July 29, 2014 at 7:55 am
Instead of the console line, try a message box perhaps?
Does everything work if you get rid of the script component?
July 29, 2014 at 7:38 am
Is it possible to post the .NET code?
July 29, 2014 at 7:05 am
Can you right-click on the arrow before the script component, go to metadata and check the data type of the Data column.
July 29, 2014 at 6:27 am
Grant Fritchey (7/29/2014)
While you can connect to it, you won't be able to access 2014 objects and may run into issues with objects that contain 2014 only constructs (clustered columnstore).
I...
July 29, 2014 at 6:24 am
Well, the TRIM function is a string function, so you cannot use it on integer columns.
Your expression can be simplified to this:
ISNULL( [monday_standard_hrs]) ? (DT_I4) 0 : (DT_I4) [monday_standard_mins]
July 29, 2014 at 6:11 am
What do you mean with "Real Time project"?
July 29, 2014 at 4:42 am
So if it is NULL, you want to convert it to 0?
What problems do you encounter right now?
July 29, 2014 at 3:57 am
Nice question. I didn't know about the different behaviour between versions.
July 29, 2014 at 2:57 am
The only problem I have with SQLSaturdays is that they are - obviously - on a Saturday 😀
The weekends are off limits as I reserve them fully for my family.
Here...
July 29, 2014 at 2:33 am
Phil Parkin (7/29/2014)
Koen Verbeeck (7/29/2014)
INSERT INTO db1.dbo.attendance_details(employee_no,date_of_attendance,present,shift_type,marked_by)
SELECT employee_no,date_of_attendance,present,shift_type,marked_by
FROM db2.dbo.attendance_details
WHERE date_of_attendance IN ('2014-07-01','2014-07-02');
Might need to tweak your filter a bit:
--
WHERE date_of_attendance >= '2014-07-01' and date_of_attendance < '2014-07-03'
Ah yes, the data type...
July 29, 2014 at 1:53 am
INSERT INTO db1.dbo.attendance_details(employee_no,date_of_attendance,present,shift_type,marked_by)
SELECT employee_no,date_of_attendance,present,shift_type,marked_by
FROM db2.dbo.attendance_details
WHERE date_of_attendance IN ('2014-07-01','2014-07-02');
July 29, 2014 at 1:36 am
xsevensinzx (7/28/2014)
For me, Kimball's book has been great and I would highly recommend it.
Kimball is great, but Star Schema The Complete Reference is even better.
July 29, 2014 at 1:06 am
Viewing 15 posts - 2,236 through 2,250 (of 11,678 total)