Viewing 15 posts - 1,156 through 1,170 (of 1,220 total)
Does this code get executed after the changes to the data are made ?
I have not actually coded an application on a PDA as yet so I am making assumptions...
October 13, 2004 at 9:24 pm
Have a look at the join hint "REMOTE". If the cause of the delay is because the query is dragging all the data from the remote server and then applying...
October 13, 2004 at 9:22 pm
Declare @sql varchar (1000)
Select @sql = 'DTSRun /E /S ' + @@Servername + ' /N ImportExcelFile'
Exec master..xp_cmdshell @sql
October 13, 2004 at 9:03 pm
I suspect you are not getting the new records because you have not synchronised the SQLCE database with the published database.
With SQL CE, the merge agent does not run unless...
October 13, 2004 at 9:01 pm
Check whether the subscribing server is allowed to be a subscriber. This is done on the publisher. Probably easiest done by using the "Configure Publishing and Distribution Wizard".
October 10, 2004 at 8:30 pm
This may be because the subscriber is not in the publication access list.
How is the subscriber connecting to the publisher ? i.e. what SQL Server Login or Windows Account is...
October 7, 2004 at 9:31 pm
You are not limited to varchar/char datatypes. This is a limitation of the example because it is using a local variable. You are permitted to use a text datatype if...
September 20, 2004 at 6:00 pm
All changes (inserts/updates/deletes) are logged in SQL 2K. However, you can change the recovery model so that you can keep the max size of you transaction log down.
Book online says...
September 9, 2004 at 9:32 pm
You probably need to do something like
exec sp_trace_setfilter @TraceID, 34, 0, 7, @tab
I assume that the variable @tab contains the value that you wish to filter...
September 8, 2004 at 10:06 pm
DBCC SHRINKFILE is the command you are after. When used for a transaction log file, it will only release space that is at the end of the log file. If...
September 8, 2004 at 9:50 pm
I do not think that you can make this change to an existing column. You will need to re-create the table with NOT FOR REPLICATION set.
July 5, 2004 at 9:47 pm
You actually only need to install DTS to do what you are after. DTS can be installed without requiring the installation of SQL Server.
When you run DTS, you can...
June 15, 2004 at 9:26 pm
Have a look in book online at article "Restoring the master Database from a Current Backup". I think it will answer your question
June 15, 2004 at 9:11 pm
DNS/WINS etc are not the source of the HOSTNAME you are seeing.
This value is supplied as part of the connection string used by an application connecting to SQL. This value...
June 6, 2004 at 6:43 pm
Viewing 15 posts - 1,156 through 1,170 (of 1,220 total)