Viewing 15 posts - 1,081 through 1,095 (of 2,062 total)
Importing views, stored procedures, functions isn't straigth forward because different SQL-dialects (TSQL vs PL/SQL ...). Have you tried copy objects?
The following link is the microsoft guide on how to migrate...
April 11, 2008 at 6:54 am
Looks like some job is causing troubles.
Have you an overview of that jobs/programs... are accessing the server at those times?
Does it occur daily? (perhaps a profiler trace might help to...
April 9, 2008 at 1:52 pm
Have you checked your hardware because your database has quite some errors.
Other suggestions:
http://www.sqlservercentral.com/Forums/Topic477115-5-1.aspx#bm477258
April 5, 2008 at 3:41 am
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
Viewing 15 posts - 1,081 through 1,095 (of 2,062 total)