Viewing 15 posts - 7,036 through 7,050 (of 7,165 total)
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
My fault, I missed the distinction you made. SSIS does not handle embedded column delimiters or embedded text qualifiers as robustly as I would like. SSIS will however handle embedded...
March 3, 2011 at 9:41 am
Some thoughts:
1. Don't use Hungarian naming for your procs, i.e. don't prefix with sp.
Try this code:
ALTER PROCEDURE dbo.compare_orders
AS
BEGIN
SET NOCOUNT ON ;
DECLARE...
March 2, 2011 at 3:59 pm
Viewing 15 posts - 7,036 through 7,050 (of 7,165 total)