Viewing 15 posts - 4,486 through 4,500 (of 11,678 total)
It should work when you create the SQL statement in a string variable and use that variable as the source for your SQL statement in the OLE DB source.
Make sure...
October 16, 2013 at 7:34 am
ikrami2000 (10/16/2013)
i already got the error , but i need to store this values in a view
You cannot "store" values in a view.
October 16, 2013 at 7:32 am
I don't think you can use the IF...ELSE construct in a view.
You'll need a stored procedure for that.
The error might have given this away:
Msg 156, Level 15, State 1, Procedure...
October 16, 2013 at 7:19 am
It might.
Hard to tell without knowing actual table DDLs and their indexes and the actual query plan.
About how many rows are we talking here?
How long is "lots of time"?
Also, with...
October 16, 2013 at 5:33 am
There's a DTS package migration wizard:
Using the DTS Package Migration Wizard
There's also a 3rd party tool that can help you with the migration:
If it is that mission critical, the...
October 16, 2013 at 5:30 am
I guess CboValuesTranslations.cboValueTranslationName is not used in certain rows as it is inside an ISNULL function. If CboValuesTranslations.cboValueTranslationName is NULL, another column is used.
I would simply select CboValuesTranslations.cboValueTranslationName and CboValues.cboValueName...
October 16, 2013 at 2:58 am
If the database servers have SQL Server authentication and TCP/IP enabled, you could use SSIS to transfer the data.
October 16, 2013 at 1:39 am
If it's SSIS 2012, you can very easily start SSIS packages with parameters using stored procedures, so I would look into that route. I believe you can also run the...
October 16, 2013 at 1:36 am
alex_2356 (10/16/2013)
October 16, 2013 at 1:27 am
This seems to be some sort of running total.
You can solve this without a cursor and without a recursive CTE.
Read the following (long and advanced) article by Jeff Moden on...
October 16, 2013 at 1:25 am
churlbut (10/15/2013)
October 15, 2013 at 2:21 pm
Viewing 15 posts - 4,486 through 4,500 (of 11,678 total)