Viewing 15 posts - 7,276 through 7,290 (of 8,731 total)
caippers (1/2/2014)
January 2, 2014 at 8:31 am
The question would be, what do you want?
SSIS and SSAS are great tools for BI development. If you already know SSRS, you can go all the way.
You must evaluate both...
January 2, 2014 at 8:24 am
Thank you for all of your recommendations. I will try all of them (I might not be able to use the error file because of permissions to write on disk).
I...
January 1, 2014 at 9:15 am
Yes and no.
All import utilities from SQL Server (bcp, bulk insert, openrowset, SSIS) have options to handle errors. The first 3 have the errorfile and max errors options. SSIS has...
January 1, 2014 at 9:05 am
You could use an errorfile during the import operation to validate your values. Be sure to have an acceptable value for MAXERRORS to avoid the import to fail.
January 1, 2014 at 8:46 am
Is there a formula to obtain the name for each week? or will someone define it manually?
If you go to the connection properties, look for Expressions and use the expression...
January 1, 2014 at 8:37 am
This seems to work fine, unless you have other 4 digits number in your string.
If you have any questions on how it works or why did I used something,...
January 1, 2014 at 8:31 am
Remember to use the option to enable triggers (FIRE_TRIGGERS) or the result will be the same.
December 31, 2013 at 12:04 pm
Maybe this will avoid errors.
CAST( CASE WHEN CHARINDEX('T', c3.value('@runDate[1]','varchar(30)')) = 0
THEN STUFF( REPLACE(c3.value('@runDate[1]','varchar(30)'), ' ', ''), 11, 0, 'T')
ELSE REPLACE(c3.value('@runDate[1]','varchar(30)'), ' ', '') END AS datetime2)
But the best...
December 31, 2013 at 12:01 pm
It's hard to give an answer as I don't know your table or xml structure. Could you give a sample of values for the following query?
SELECT c3.value('@runDate[1]','varchar(100)') as runDate
FROM xmlResults...
December 31, 2013 at 10:08 am
I believe that Lynn was referring to what command did you use (eg. INSERT INTO, BULK INSERT, bcp, etc).
December 31, 2013 at 9:46 am
Just a guess, but your runDate in the XML might not have the correct format or might be an invalid date.
December 31, 2013 at 8:44 am
Hi,
To get better and faster answers, you should post DDL and sample data in a consumable format as I did this time for you. (It seems that you edited your...
December 31, 2013 at 8:20 am
petr.caslavka (12/30/2013)
December 30, 2013 at 3:21 pm
If there's no primary key, then performance won't be great. Even if there's no PK defined as a constraint, you could identify a PK that will help you identify duplicates.
Here's...
December 30, 2013 at 2:59 pm
Viewing 15 posts - 7,276 through 7,290 (of 8,731 total)