Viewing 15 posts - 16 through 30 (of 140 total)
You might want to look at third party backup tools which will reduce your backup window. Red Gate (who I work for) have a product called SQL Backup which...
August 18, 2007 at 2:29 pm
Hi,
The first thing you need to do is run:
RESTORE DATBASE [DatabaseName] FROM DISK='path to full backup' WITH NO RECOVERY, <Any move options required>
You then need to restore any differential backups...
August 18, 2007 at 2:26 pm
Hi Jonathan,
What sort of manipulations are you doing? Can you post the DDL for your Views and we might be able to get them working without a significant performance hit.
James
August 18, 2007 at 3:08 am
Jurgen,
A Snapshot backup would be the fastest way to backup your data however this can often be very expensive as it require three way mirror drives.
Replication, or log shipping, would...
August 17, 2007 at 3:10 am
No problem, always happy to help,
James
August 8, 2007 at 4:05 am
August 8, 2007 at 2:39 am
John,
If the three databases are all on one server then there should be no serious overhead of doing a cross database query.
How much data are you trying to report on?...
August 7, 2007 at 7:08 am
Hi,
If you are using SQL Server 2005 you can do this very nicely with CTE's (Common Table Expressions) - have a look at http://www.sqlservercentral.com/columnists/sSampath/recursivequeriesinsqlserver2005.asp - if you are using SQL 2000...
August 6, 2007 at 7:07 am
Bah.. beaten by Jeff.. that man is unstoppable![]()
August 6, 2007 at 4:36 am
Somthing like...
DECLARE @firstDayOfMonth DATETIME
DECLARE @lastDayOfMonth DATETIME
DECLARE @firstDayOfNextMonth DATETIME
SELECT @firstDayOfMonth = DATEADD(mm,DATEDIFF(mm,0,GETDATE()),0)
SELECT @firstDayOfNextMonth = DATEADD(mm, 1, @firstDayOfMonth)
SELECT @lastDayOfMonth = DATEADD(dd, -1, @firstDayOfNextMonth)
SELECT @firstDayOfMonth [FirstDayOfMonth], @lastDayOfMonth [LastDayOfMonth], @firstDayOfNextMonth [FirstDayOfNextMonth]
James
August 6, 2007 at 4:35 am
Taylor,
What expression do you have to do this? I would imagine it is somthing along the lines of
sp_addlinkedserver
@server='AccessDb',
@srvproduct='Acess',
@provider='Microsoft.Jet.OLEDB.4.0',
@datasrc='C:\nwind.mdb'
If so you just put this in a query...
August 4, 2007 at 4:38 am
Jason,
There is some documentation on it around which seems to suggest its OK. The only time I have done it I ended up playing with fixing linked servers/remote logins, jobs,...
August 4, 2007 at 4:25 am
Have a look here - http://msdn2.microsoft.com/en-us/library/ms190737.aspx you should be able to get it started using some combination of the mentioned flags - probably -m or -f and then drop the...
May 1, 2007 at 1:49 pm
Just gave this a go myself you can do this is Viso fairly well - will probably require a little tweaking - Go file -> new diagram -> database ->...
May 1, 2007 at 1:07 pm
Hi Colin,
What behaviour are you seeing and what are you expecting to happen - it sounds from your question as though you are having partial success in this?
- James
May 1, 2007 at 11:57 am
Viewing 15 posts - 16 through 30 (of 140 total)