Viewing 15 posts - 1 through 15 (of 21 total)
The flat file would be used as the data source by a search platform for user searches on a site. The live data sits on a Sql box. I am...
May 8, 2012 at 2:22 pm
"The process could not access database 'I:\test_repl.txt' on server 'NYSQLGRP03'."
Here is the code that I am using to create the subscription, I have already set the publication to allow heterogeneous...
May 8, 2012 at 11:46 am
SELECT 'Subtotal',pin,SUM(CONVERT(INT,callduration)) sum_callduration,SUM(CONVERT(FLOAT,charge)) sum_charge FROM #gmreport
GROUP BY pin
Insert these values in another temp table to get the result in the format that you want.
March 30, 2012 at 10:10 am
You should be able to setup a linked server from the sql 2008 to sql 2000 server, please take a look at this
http://msdn.microsoft.com/en-us/library/ms190479.aspx
Once the linked server is setup you...
March 14, 2012 at 2:57 pm
Understood, Can you try the linked server solution. If that is not feasible can you post some sample data and also the package file, I can take a look in...
March 14, 2012 at 2:23 pm
From what I understand, you might need a data conversion task between your source and destination in the package to make sure that the datatypes are the same.
The other approach...
March 14, 2012 at 1:44 pm
Thanks for the correction. The background thread is spawned when TDE is enabled on the db. It runs during the initial encryption. I am quoting the article,
"When TDE is enabled...
March 14, 2012 at 9:23 am
I would use transactional replication, its pretty easy to set up from the GUI. Also this article explains the entire replication process in detail, http://msdn.microsoft.com/en-us/library/ms151198.aspx
January 17, 2012 at 1:07 pm
And the reason I need that column is to satisfy a constraint on the table at the subscriber. So for eg. If modifieddate exists in a third table(on the subscriber)...
May 22, 2011 at 9:52 am
Pankaj Shere (5/20/2011)
May 22, 2011 at 9:48 am
Also if you are doing vertical partitioning all columns must be present on the subscriber. In my case they are not. So if table A is a publisher and I...
May 20, 2011 at 6:24 pm
The column names are different. I get an error when I start replication. "invalid column". Havent played much with service broker but will look into it. For now we are...
May 20, 2011 at 6:05 pm
This can be done. You need to modify the delete procedure used by replication to delete if older than 6 months. The procedure can be found on the subscriber database...
May 12, 2011 at 3:01 pm
Lowell, thanks for the response. I plan to put the trigger on the staging table on the subscriber, so it ll fire on the same server as the target table.
Also...
May 12, 2011 at 8:19 am
This is what I use to;
SQL job which runs a script every 15 mins and checks for latency. The job does the following:
1. Post a tracer token at the publisher
2....
May 11, 2011 at 2:26 pm
Viewing 15 posts - 1 through 15 (of 21 total)