Viewing 15 posts - 841 through 855 (of 992 total)
CE only supports merge replication (as far as I know) and, from MSDE, it only supports Merge in both directions (transactional subscriber not publisher, and snapshot are also available). So...
September 29, 2005 at 1:45 am
That's an impressive amount of code!
I can only assume that it works!
Surely though it could...
September 29, 2005 at 1:44 am
Set ANSI_PADDING is something that applies to the current block of SQL, it doesn't change it for the database. The databasePropertyEx function tells you the "default" value that connections will...
September 29, 2005 at 1:35 am
Are you deleting whilst reading new data (eg users using the app, running selects) - I assume you plan to try to do the deletion during a "quiet" time in...
September 29, 2005 at 1:16 am
Readtext is usually for use within TSQL stuff executing on the server. You can "select" text / image columns and it is up to your client side library (eg...
September 28, 2005 at 1:16 am
Yup, covering index is usually the easiest way to avoid bookmark lookups - just make sure your inserts & updates are not affected adversely.
September 28, 2005 at 1:10 am
Yeah Remi is right. The other one is very procedural - not very SQL friendly.
September 28, 2005 at 1:08 am
I assume there is no "line number" or other incrementing number in your text file - add an identity field to the table and then order your cursor based on...
September 27, 2005 at 9:40 am
I had awful trouble once trying to just understand the myriad of things to do with Oracle - client had an app with it that we had to work with...
September 27, 2005 at 9:36 am
There must be 50 posts on this site about the topic - it is true, and makes good sense when you think that SQL Server has to make some assumption...
September 27, 2005 at 9:25 am
As far as I know this is not true - 5 concurrent users is the limit at which MSDE starts throttling back its performance. The more concurrent CONNECTIONS to the...
September 27, 2005 at 9:19 am
It's almost 1am where I am (Australia) so I'm not really gonna look deep into the code, but when I had a similar trouble with bookmark lookups I did one of...
September 27, 2005 at 9:14 am
And I guess it is precisely the reason why DTS can fail if you just tell it to "copy data" - it doesn't analyse table relationships, etc. You are effectively...
September 27, 2005 at 9:09 am
Well certainly for a data load such as you describe, I suppose it is quite ok to disable constraints, etc on your tables because
September 27, 2005 at 9:08 am
Viewing 15 posts - 841 through 855 (of 992 total)