Viewing 15 posts - 2,506 through 2,520 (of 11,678 total)
Are you reading Excel files?
The JET OLE DB provider is 32-bit only.
June 23, 2014 at 2:00 am
chalam87 (6/23/2014)
i apply constraint to check two columns values.below is my table structure
priority1 priority2 priority3 priority_hashvalue
my check constraint is
[priority_hashvalue]=hashbytes('md5',([priority1]+[priority2]+[priority3]))
it's working fine while inserting new record into...
June 23, 2014 at 1:33 am
waralees (6/22/2014)
At the same package, same server, the Problem is depend on run-time mode. For 64 bit run-time mode, then the problem is...
June 23, 2014 at 1:17 am
If you want to give official Microsoft courses, you need to be an MCT.
I'm not sure what happens if you design your own course.
A lot of people blog, share videos...
June 23, 2014 at 1:15 am
How I usually solve this in SQL is that I have a table with all the months in it and I join this against the data with a left outer...
June 23, 2014 at 1:11 am
You could just define new views on top of the other ones.
(which is not ideal of course)
June 23, 2014 at 12:59 am
Ed Wagner (6/19/2014)
Or worse - they store integer values in an nvarchar(8)! Seen it! :w00t: Hated it. :angry:
When importing data from an untyped source - a flat file...
June 23, 2014 at 12:44 am
pwalter83 (6/19/2014)
Sachin Nandanwar (6/19/2014)
SELECT SUM(YourSum) FROM
(
SELECT SUM(CASE WHEN SOA_TYPE = 'Agent' THEN USD_AMOUNT ELSE 0 END) +
SUM(CASE WHEN SOA_TYPE = 'Freight' THEN USD_AMOUNT ELSE 0 END) +...
June 23, 2014 at 12:36 am
Scott Clark-275269 (6/19/2014)
SSIS 2012 still has a limitation on the String data type for variables. The use of the VarChar(Max) or NVarChar(Max) data type in the query...
June 23, 2014 at 12:34 am
thomashohner (6/21/2014)
Your post must have been good luck. I get my official offer on monday. Start in 2 weeks:-D
Congrats!
June 23, 2014 at 12:28 am
Chitown (6/19/2014)
I think that's about it yes 🙂
What happens if there is no activity in the DB? The job will run regardless but will it send out email notification even...
June 19, 2014 at 7:40 am
Ed Wagner (6/19/2014)
melanie.townsend (6/19/2014)
June 19, 2014 at 6:07 am
Viewing 15 posts - 2,506 through 2,520 (of 11,678 total)