Viewing 14 posts - 31 through 44 (of 44 total)
Watch out for embedded carriage returns, tabs, etc...
RTRIM(LTRIM()) and REPLACE(string,' ','') will not clean it all up.
I don't have the full list at hand, mine is an Oracle version.
Obvious ones...
January 7, 2008 at 2:51 pm
BTW, the only other thing I changed in the dowloaded package was setting the MaximumErrorCount to 99. I ended up adding a bunch of servers and instances that...
January 7, 2008 at 2:36 pm
David, Thanks for the cool tool. I look forward to parts II and III.
January 7, 2008 at 2:33 pm
BTW, if you can not see the variables in the list, right click on the designer surface and click variables. I downloaded the zip and SVR_Conn did not show...
January 7, 2008 at 1:42 pm
If you have not, try setting the default value for the SVR_Conn variable to (local) or to your server name \ instance name . That worked for me. ...
January 7, 2008 at 1:28 pm
OK, now that we have picked on Oracle let's point out a few of its good or unique features.
1. Spatial data is an interesting feature hardly anybody uses. Storing...
January 6, 2008 at 11:13 am
Also, in my experiences I've only seen DB2 used in production where old IBM mainframes are found somewhere in the building or attached to the network. We dumped support...
January 5, 2008 at 10:54 pm
Keep in mind that the Windows platform is not Oracle's main focus. UNIX platforms almost always get patches or bug fixes before the Windows platform. I'm always told...
January 5, 2008 at 10:40 pm
I have 500 customers running their own SQL Server with our products database installed on their server. The DB is theirs and they have to do all of the...
December 21, 2007 at 8:56 am
Compressing the files before transferring on a slower network also helps.
December 20, 2007 at 5:39 pm
You could generate insert statements of your data and run those against your other DBs.
Try:
select 'insert into temp_table_name values (''' + column_value + ''')' from source_table
You will need to address...
December 20, 2007 at 3:49 pm
I admit I'm a DBA/Developer for an ISV and support internal systems and 500 customers running SQL 6.5 - 2005 and Oracle 8 - 10. So by habit I...
December 20, 2007 at 10:12 am
How do you find the duplicate rows in a table with Integer ID and a varchar name fields?
select * from [table_name] a where
[varchar column] in (select [varchar column], count(*)...
December 20, 2007 at 9:06 am
Viewing 14 posts - 31 through 44 (of 44 total)