Viewing 15 posts - 1,066 through 1,080 (of 2,044 total)
Who or what is taking the backups? (sql jobs or third party)
March 31, 2008 at 12:03 pm
If you run a dbcc check... with allow repair data loss, then there can be dataloss. In your case probably 2 records.
With
use mydb
select OBJECT_NAME(.....) you can find out what...
March 31, 2008 at 11:59 am
If your transaction log is full, the whole last transaction will rollback.
March 31, 2008 at 11:54 am
Please disregard my previous post, i have no experience with web security.
You could build minor security checks (login valid,..) in the stored procedures before they do their intented job to...
March 22, 2008 at 8:38 am
I would go with a webservice.
1)It provides abstraction in case
*you want to alter the stored procedure, change db, ...
2)No login "visible", the security context of the webservice calling...
March 20, 2008 at 12:49 pm
After you change the recovery to Full, do you take a full backup/differential backup before taking the transaction log backup?
March 18, 2008 at 11:26 am
or you could use a script that uses
the stored procedure sp_start_job
if there are no dependencies.
March 18, 2008 at 11:20 am
Any option to validate the transactionlog before applying?
(RESTORE VERIFYONLY .... )
March 18, 2008 at 11:17 am
As far I know linked servers don't expose sublinked servers.
Linkedserver1 with sublinkedserver3
Server 2 can't query Linkedserver1.Sublinkedserver3.dbo.table1.
Linked server1 could create a view MyView based on sublinkedserver3.dbo.table1
March 18, 2008 at 6:36 am
I'll try to answer this on Tuesday.
Does a basic query works?
It could be that distributed transactions ain't configured correctly.
(Are the server machines windows 2003?)
*spGetNewExhibitJSubContractorsDetails is located on the external system...
March 17, 2008 at 1:24 pm
*If your checkpoint is barely 5%, it won't help to set it longer. If you set it longer, it will take longer to bring your database online.
*My primary reason of...
March 17, 2008 at 1:15 pm
At the initial snapshot, the tables at the subscribers will get dropped to ensure a match with the publication.
The drop is prevented by the foreign key. Either remove the table...
March 16, 2008 at 3:21 pm
Haven't found the option yet, and the clearing is by design
http://support.microsoft.com/kb/252434
Enterprise manager Query Analyzer
March 16, 2008 at 2:50 pm
*I assume the query is run against the internal system because openquery requires a linked server connection.
*Strange that you repeat the server name in the openquery
I would expect
OPENQUERY(XYZ,'Select DepartmentName From...
March 14, 2008 at 1:19 pm
KILL 54 WITH STATUSONLY
gives
--This is the progress report.
spid 54: Transaction rollback in progress. Estimated rollback completion: 80% Estimated time left: 10 seconds.
although it tends to stick at 100% for...
March 14, 2008 at 12:07 pm
Viewing 15 posts - 1,066 through 1,080 (of 2,044 total)