Viewing 15 posts - 7,036 through 7,050 (of 7,168 total)
I have participated in a migration from Sybase to SQL Server...I was handed specific requirements to cleanse and standardize the data during the migration. I evaluated several options including SSIS...
March 3, 2011 at 3:33 pm
drew.allen (3/3/2011)
The OP probably didn't look closely enough at the results to notice.
Sure, nor did I obviously 😀
I am trying to further this example to learn how to present multi-level...
March 3, 2011 at 3:17 pm
drew.allen (3/3/2011)
opc.three (3/3/2011)
SELECT b.value('(offerId)[1]', 'Int') AS [offer_id],
fr.value('(internetPrice)[1]', 'decimal') AS [internet_price],
fr.value('(newStandPrice)[1]', 'decimal') AS...
March 3, 2011 at 2:45 pm
If you're just looking for an SQL script with all data in a database scripted out as DML commands (similar to what mysqldump can do) you can get that from...
March 3, 2011 at 2:27 pm
March 3, 2011 at 2:06 pm
Check out RedGate's SQL Data Compare tool @ http://www.red-gate.com
March 3, 2011 at 1:51 pm
Opening an SSIS package in a text editor and changing the server name does work, I have done it that way to do changes en masse.
I do not know...
March 3, 2011 at 1:30 pm
Just FYI using NOLOCK in an UPDATE or DELETE statement has been marked as deprecated in SQL 11 (Denali).
March 3, 2011 at 12:29 pm
Try this:
SELECT b.value('(offerId)[1]', 'Int') AS [offer_id],
fr.value('(internetPrice)[1]', 'decimal') AS [internet_price],
fr.value('(newStandPrice)[1]', 'decimal') AS [news_stand_price],
...
March 3, 2011 at 11:01 am
If your SSIS package are stored in SQL Server you can query the contents of them using LIKE with wildcards the same way you can query sys.sql_modules for references in...
March 3, 2011 at 10:48 am
Please post the DDL and DML.
March 3, 2011 at 10:38 am
Related post from same OP: http://www.sqlservercentral.com/Forums/Topic1072204-148-1.aspx
March 3, 2011 at 9:44 am
Viewing 15 posts - 7,036 through 7,050 (of 7,168 total)