Viewing 15 posts - 6,421 through 6,435 (of 7,168 total)
Thanks. You won't be able to browse your complete MySQL object hierarchy through the SSMS Linked Server node for the reason I mentioned in my previous post about them not...
May 17, 2011 at 2:26 pm
Try this:
-- The CTE returns the cat hierarchy:
-- one row for each ancestor-descendant relationship
-- (including the self-relationship for each category)
WITH CTE
...
May 17, 2011 at 1:48 pm
What does this return when executed on your SQL Server?
EXEC('SHOW VARIABLES LIKE "%version%";') AT [MYSQL];
May 17, 2011 at 1:36 pm
Visual Studio 2010 has built-in Data and Schema Compare tools:
Data: http://msdn.microsoft.com/en-us/library/aa833428.aspx
Schema: http://msdn.microsoft.com/en-us/library/aa833435.aspx
May 17, 2011 at 12:22 pm
mariann harper (5/17/2011)
http://www.ideaexcursion.com/2009/02/25/howto-setup-sql-server-linked-server-to-mysql/
The database is there, but no tables are visible. Aren't I supposed to...
May 17, 2011 at 12:10 pm
mister.magoo (5/16/2011)
I wasn't intentionally saying it was an easy way to bcp out, although yes that would be possible - but as you quite rightly say, that would involve...
May 16, 2011 at 3:34 pm
colin.Leversuch-Roberts (5/16/2011)
May 16, 2011 at 3:01 pm
mister.magoo (5/16/2011)
opc.three (5/16/2011)
...SQL Agent jobs don't make dynamic behavior easy...
I actually use SQL Agent jobs dynamically as a method of executing background tasks from a web application - where the...
May 16, 2011 at 10:44 am
3) bcp out anyone??
While "bcp out" is possible, it is not directly usable from within T-SQL. SQL Agent jobs and xp_cmdshell do not count because those are still a...
May 16, 2011 at 9:35 am
diamondgm (5/14/2011)
Might also be of benefit to ensure that your new table has the "same" indexes (and perhaps statistics) on it as the old table.
That is definitely a good thing...
May 14, 2011 at 8:03 am
Syed Jahanzaib Bin hassan (5/13/2011)
Depending (there is that word again) on the volume of data changes a setup involving transactional replication can utilize infinitely more network and system resources than...
May 14, 2011 at 7:59 am
Yes, there is a relationship. If you are comparing Unicode values to Non-Unicode values the Non-Unicode values undergo what's called an "Implicit Data Type Conversion" (IDTC). An IDTC can negate...
May 13, 2011 at 5:25 pm
Syed Jahanzaib Bin hassan (5/13/2011)
May 13, 2011 at 1:32 pm
DerbyNeal (5/13/2011)
I realise that the code in my original posting needed double quotes
"\\ServerName\AX\WT A to B\Mileage.Bat"
I'm not sure whether the '/c' should be within the double...
May 13, 2011 at 7:55 am
Viewing 15 posts - 6,421 through 6,435 (of 7,168 total)