Viewing 15 posts - 931 through 945 (of 1,065 total)
You can backup over the network using a UNC name. You don't need to set up a device, you just need to do:-
BACKUP DATBABASE dbname TO DISK='\\servername\sharename\path\file'
SQL Server must be...
August 12, 2003 at 8:03 am
You have to give the relevant permissions on database A, and let the permissions changes work their way to database B via log shipping.
Note. If database A and Database B...
July 15, 2003 at 3:49 am
SQL Server will only create these pseudo indexes if you have the 'Auto Create Statistics' option set on.
You probably have the option set on for the database with 250 indexes,...
July 11, 2003 at 9:12 am
You probably have one or more read only databases, and therefore cannot update the access permissions for those databases.
Enterprise manager is just telling you that those databases aren't being included...
July 11, 2003 at 7:16 am
You can't back up a database that is in STANDBY or NORECOVER mode. Log shipping will leave the database at the standby server in one of these 2 modes.
July 7, 2003 at 9:03 am
Look in the C:\Winnt (or wherever you installed Windows) directory on each node in the cluster.
Look for the latest sqlstp*.log file. This gives detailed information about the setup processs.
There will...
July 3, 2003 at 8:56 am
Just do:-
select @na = [na] FROM [xsisi]
July 3, 2003 at 8:42 am
Try running the following command immediately before the restore:-
alter database dbname set single_user with rollback immediate
July 1, 2003 at 9:23 am
The error message generated when you tried to connect as 'sa' looks like the server is set up for Windows authentication only, not SQL Server and Windows authentication.
The second attempt...
July 1, 2003 at 6:10 am
You can always make the sort column the first column in the select statement, and then use a case statement to determine the actual column e.g.
declare @order int
set @order =...
June 30, 2003 at 3:20 am
You need to use the value of the variable @file to create the dynamic statement i.e.
SET @sql = "BULK INSERT temp FROM '" + @file1 + "' WITH (FIELDTERMINATOR...
June 25, 2003 at 11:01 am
INSERT TABLE1
SELECT 1,614,ID
FROM TABLE2
WHERE PROJECTID IN (18, 26, 20, 22, 35, 38, 148, 149, 155, 278)
June 25, 2003 at 4:12 am
Yes, the Log shipping backups are sufficient for backing up, they are legitimate transaction log backups.
If you introduce separate log backups you run the risk of breaking the log shipping...
June 24, 2003 at 2:56 am
It doesn't work because SQL thinks the contents of your variable is a single item in the IN clause. i.e. it is searching for ''orders'',''syscomments'',''sysobjects''
If you create the whole select...
June 24, 2003 at 1:44 am
Viewing 15 posts - 931 through 945 (of 1,065 total)