Viewing 15 posts - 376 through 390 (of 1,069 total)
It is possible to easily list the replicated databases:
select * from sys.databases
where is_published = 1
December 7, 2011 at 4:54 am
anandha31 (12/6/2011)
This should be for every table in the database.
Note that, if you try to store all the insert/delete/update info for all the tables in the db, it can...
December 7, 2011 at 12:53 am
ericwenger1 (12/6/2011)
I get an error stating that and insert is trying to insert and * into an integer field.
Where do you see this error message?
Can you post the complete...
December 6, 2011 at 11:45 pm
COPY_ONLY does not break the log chain.
So if you have log shipping configured, you can use COPY_ONLY option to take a full database backup of testing, etc.
December 1, 2011 at 3:51 am
azhar.iqbal499 (12/1/2011)
December 1, 2011 at 12:20 am
Check the create_date in the sys.views.
If it is newer than the date the view was deployed, it means the view was DROPped and reCREATEd.
November 30, 2011 at 11:51 pm
Welsh Corgi (11/29/2011)
I have a Database Trigger as defined below.WHen I try and Drop a Table I get an error.
Drop failed for Table 'dbo.abc.
CREATE TRIGGER Backup_Procs
ON DATABASE
FOR CREATE_PROCEDURE, ALTER_PROCEDURE, DROP_PROCEDURE
Your...
November 30, 2011 at 11:36 pm
azhar.iqbal499 (11/30/2011)
I want this to avoid any changes in the objets in Live Environment.
You have to consider permissions also. Grant minimum permission to the users.
By revokeing ALTER permission, you can...
November 30, 2011 at 10:22 pm
1) Enable TCP/IP protocol
2) Enable Remote Connections
November 30, 2011 at 5:15 am
Try this:
select * from sys.databases where is_distributor = 1
sp_helpdistributiondb
sp_helpdistributor
November 30, 2011 at 12:20 am
Since you are not using the default port
1) Mention the port number with the servername (or IP) or
2) Make sure that SQL Server browser service is running on the server.
November 29, 2011 at 11:50 pm
Also run:
xp_fixeddrives
and post the result.
November 29, 2011 at 10:02 pm
cjohn5552 (11/29/2011)
November 29, 2011 at 9:11 pm
I don't think select on a table blocks update on a different table.
How did you notice this or come to this conclusion.
November 29, 2011 at 4:52 am
delete from a
from EMP a
inner join (select [EMP_ID],MAX([DEPT_ID]) DEPT_ID From EMP group by [EMP_ID]) b
on a.EMP_ID = b.EMP_ID
and a.DEPT_ID < b.DEPT_ID
November 29, 2011 at 2:16 am
Viewing 15 posts - 376 through 390 (of 1,069 total)