Viewing 15 posts - 151 through 165 (of 1,098 total)
No, the subscriber database doesn't appear in the job's name.
Check the agent parameters to be sure that everything is ok.
Also run sp like sp_helpmergepublication,
sp_helpmergesubscription and sp_helpmergearticle to be sure...
April 30, 2004 at 3:00 pm
Not possible.
Log shipping will put the db in read only mode, so replication won't be able to apply changes at the subscriber.
With log shipping, you can have both things. You...
April 30, 2004 at 2:58 pm
Not use by what you mean with secure FTP.
SQL replication will use FTP. Security depends on the network security, not SQL configuration.
April 30, 2004 at 2:55 pm
Never tried. With replication you won't be allowed to use any alter table sintax.
Maybe if you create a new file within the same filegroup and use dbcc shrinkfile. But I...
April 30, 2004 at 2:54 pm
Run sp_helpArticle 'PublicationName' from the ex published database.
If there are still articles in there, try dropping them with sp_droparticle.
To remove replication it is always better to use the wizards.
April 30, 2004 at 2:51 pm
Not directly.
You can try to convert the column to a lower size, like this:
SELECT CONVERT(VARCHAR(30), name) AS name FROM msdb.dbo.sysjobs
But it will cut the names larger that the size you specify.
April 30, 2004 at 2:45 pm
Yes.
From BOL
If you drop a clustered index on a table with nonclustered indexes, all the nonclustered indexes are rebuilt to replace the clustered index keys with row pointers.
April 30, 2004 at 2:41 pm
With many, sp_help, sp_columns, etc.
You can also use a query like this:
IF EXISTS (SELECT 1 FROM syscolumns where name = 'ColName' AND OBJECT_NAME(id) = 'TableName') PRINT 'Exists' ELSE PRINT 'no...
April 30, 2004 at 2:37 pm
No. But you can try creating indexes views.
Create the view that matches all the tables you need with schemabinding, and then create indexes on that view.
April 30, 2004 at 2:31 pm
Try running xp_logininfo with no parameters.
It will show info for all nt users and groups.
April 28, 2004 at 12:28 pm
Any changes in the servers?
What about database compatibility level?
April 28, 2004 at 12:06 pm
Can you post some example data?
April 28, 2004 at 8:17 am
I have always used BCP to export and bulk insert to import. It may not be the easiest way, but for me it is the fastest to transfer big amount...
April 28, 2004 at 8:12 am
You can change the configuration from the distributor.
From EM, right click over Replication, Configure Publishing ..., in the publishers Tab, select your publisher and there you can switch between the...
April 28, 2004 at 8:06 am
You can configure the publisher to connect to the distributor with a trusted connection, so that the distributor_Admin passqword is not necesary.
April 28, 2004 at 7:17 am
Viewing 15 posts - 151 through 165 (of 1,098 total)