Viewing 15 posts - 76 through 90 (of 108 total)
I've answered my own (perhaps near-sighted) question:
The 2007 Office System Driver: Data Connectivity Components does install the provider for Microsoft.ACE.OLEDB.12.0.
I can now see it in my list of Providers.
I've executed...
June 16, 2008 at 8:54 am
Thanks so much for the detailed posting, JALVES.
- On your Server Objects > Linked Servers > Providers, Righ Click on Microsoft.ACE.OLEDB.12.0 and select Options. Check the option Allow inprocess
I noticed...
June 13, 2008 at 12:46 pm
You're the man!
Thanks so much - I really appreciate it.
-Simon
June 9, 2008 at 3:00 pm
Just wanted to say a quick thanks your code, M V Jones - I was able to use it to get exactly what I needed in a much simpler and...
April 30, 2008 at 2:31 pm
Doug:
I flipped a switch in the MySQL ODBC Connector (see pic attached) to allow transactions, and things seem to be working great now.
Thanks so much for helping me get started...
April 24, 2008 at 11:33 am
Doug:
Thank you very much for the help.
I wrote the following bit of code, to test:
INSERT OPENQUERY (MYSQL_OE_Dreamhost, 'SELECT WebAccountID, PromotionAbr, PeriodID, OfferID, Feedback, DateAdded FROM oe_dbo.WebFeedback')
VALUES (8,'PS2','PS2803',38,'This is super!','April 24...
April 24, 2008 at 10:46 am
Doug:
I am very interested in some of the processes you described in your post - most notably loading rows from SQL Server 2005 into MySQL tables, via SSIS, or a...
April 24, 2008 at 7:03 am
Great article - thanks for the terrific contribution, Paul.
I'm going to be able to use the article immediately to help me get data out to the people who need it...
April 23, 2008 at 8:46 am
Jim Dillon (2/21/2008)
INSERT INTO [Linked Server Name].catalog.[my_sql_table_name] (my_sql_columns)
SELECT [MS SQL SERVER columns]
FROM [Your MS SQL SERVER table]
I believe you can use a three...
February 21, 2008 at 10:44 am
Jim:
Your post has been incredibly helpful - thanks so much.
I was in meetings yesterday that revolved around integrating live MySQL data from the web with a local MsSQL database. I...
January 22, 2008 at 10:11 am
Damon Wilson (1/16/2008)
SELECT name AS NameOfFile,
size/128.0 as TotalSizeInMB,
CAST(FILEPROPERTY(name, 'SpaceUsed' )AS int)/128.0 AS SpacesUsedInMB,
size/128.0 -CAST(FILEPROPERTY(name, 'SpaceUsed' )AS int)/128.0 AS AvailableSpaceInMB
FROM dbo.SYSFILES
go
Thanks, Damon, for this tasty bit of code - I like...
January 17, 2008 at 7:21 am
Matt Miller (1/16/2008)
January 16, 2008 at 9:27 am
Thanks for your feedback and input, Michael, I appreciate it.
Suppose that one of the 3 conditions you mentioned was true - say, for example that there was a row in...
January 16, 2008 at 9:10 am
I think that you need to JOIN your two tables, as such:
UPDATE s
SET s.src_long_description = c.text
FROM database.dbo.test s
INNER JOIN database.dbo.copy_text c
on S.[PRIMARY KEY] = c.[FOREIGN KEY]
WHERE c.pageName = '/service/extended_description/serviceA'
Where...
January 11, 2008 at 10:34 am
Retire!!
(I know that's what I'm looking forward to...) 😉
January 11, 2008 at 10:28 am
Viewing 15 posts - 76 through 90 (of 108 total)