Viewing 15 posts - 886 through 900 (of 1,539 total)
Thumperfla (6/26/2009)
Currently, we are only backing up the DB using a...
June 27, 2009 at 12:25 am
bytesizedata (6/26/2009)
Restore filelistonly from disk='backupfile' gave me the logical file names "Records" and "Records_log"
Executing
Restore database Records2009 from disk='path+filename.bak' with move datafile_name='C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\Records', logfile_name='C:\Program Files\Microsoft SQL...
June 26, 2009 at 7:20 am
FreeHansje (6/26/2009)
This is a solution I had tried first.
Don't get me wrong, but have you checked this in SSMS? I don't think so...
BTW, I have found the problem. Some options...
June 26, 2009 at 7:18 am
bytesizedata (6/26/2009)
June 26, 2009 at 4:49 am
MO (6/26/2009)
Is there a reason you can't get the first backup job to call the second and so on? That way the second would only always start after the...
June 26, 2009 at 4:45 am
ALTER INDEX [MUTA_PI3]
ON [prd_00rpd_hrm].[hrm].[MUTA]
REBUILD
WITH
(ONLINE = ON,
FILLFACTOR = 90,
MAXDOP = 0)
PARTITION = 2;
error: Msg 102, Level 15, State 1, Line 8
Incorrect syntax near 'PARTITION'.
Try...
June 26, 2009 at 4:31 am
Agreeing to what others said, you create a login to grant access to the server as a whole and u create a User id to grant access to a database....
June 26, 2009 at 4:19 am
1. create a filegroup and a file in it
2. to move a table from one filegroup to other:
If u've got clustered index on the table, rebuild...
June 26, 2009 at 4:16 am
FreeHansje (6/26/2009)
SELECT c1, c2, c3 FROM Table1
WHERE c3 = 'ABC'
I can do this with a view, which said login can READ,...
June 26, 2009 at 1:01 am
vrabhadram (6/25/2009)
i have a job to archive data from the production to another log database(600 tables). for this purpose i have created the statements for each...
June 25, 2009 at 4:56 am
vrabhadram (6/25/2009)
i have checked with the log file size after transaction log backup, but it's not decreased.After shrinking the database also, size was not decreased.
You're right. Transaction log file's physical...
June 25, 2009 at 12:19 am
thang_ngo_2002 (6/24/2009)
Yes, I already copy backup data file from PRI to STB then recoverSo I don't thing problem by network, may be by Server Link
This may happen because of query...
June 24, 2009 at 10:53 pm
vrabhadram (6/24/2009)
i'm preparing the job for our databses in production.
we have job plan like every day full backup, every one hour transactional log backups.
what i'm following is
in the...
June 24, 2009 at 10:48 pm
check if this user has sufficient permissions to restore the database.
and this user has sufficient permissions to access the file share containing the backup file
You can write something like this
create...
June 24, 2009 at 9:31 pm
2 Tim 3:16 (6/24/2009)
June 24, 2009 at 9:16 pm
Viewing 15 posts - 886 through 900 (of 1,539 total)