Viewing 15 posts - 1,156 through 1,170 (of 2,904 total)
To use Truncate or not........
If you use truncate (with DBCC SHRINKFILE or with BACKUP LOG dbname WITH TRUNCATE_ONLY), you 'break' the backup chain and must start a new chain. That...
March 21, 2006 at 7:15 am
You say you can't restore the database. What error are you getting?
(By the way 'point in time' is used with LOG restores only. With 'point in time' you can restore...
March 21, 2006 at 7:12 am
You need to create a linked server connection between the two database servers. Then you will be able to work from one to the other.
Refer to the BOL for...
March 20, 2006 at 7:36 am
Oh. An important fact you didn't tell us.
I am sure you would have gotten better suggestions if you had told us this happened on a TEST system and not on...
March 20, 2006 at 7:32 am
What do you mean you want to hide it?
-SQLBill
March 20, 2006 at 7:28 am
You should have only restored two files.
1. The latest FULL backup prior to the 23rd.
2. The DIFFERENTIAL from the 23rd.
AND you should have restored the full backup using the command...
March 17, 2006 at 10:59 am
You can shrink the database file size by using DBCC SHRINKFILE command. Check the BOL for the syntax. You have to use the actual file name. To check what it...
March 17, 2006 at 10:50 am
Did you register the SQL Server instance? (In EM, right click on SQL Server Groups).
If you did, try refreshing.
Lastly, what version of SQL Server are you using (SELECT ServerProperty(ProductVersion)).
-SQLBill
March 17, 2006 at 10:44 am
It's a joke......tells you that if this happens: What happens if you lose the disk on your primary in the middle of the copy and you have no backups?
You...
March 17, 2006 at 7:22 am
In keeping with the humor........
The answer should have been Log Reader, the question was about performing last "WRITES" - not "RITES". Two different things.
-SQLBill
March 17, 2006 at 7:19 am
Are you sure it's location wasn't on ANOTHER drive?
-SQLBill
March 16, 2006 at 8:13 am
You can't do log shipping if you are attaching databases.
How big is your log file?
If you aren't doing backups (FULL and Log), then your database must be growing huge from...
March 16, 2006 at 8:10 am
I'm not a geocacher, yet. I've looked into trying it, but haven't had the time. I'm in Maryland, USA. There's quite a few sites near me, so hopefully,...
March 15, 2006 at 12:30 pm
Could be:
1. antivurus checking the destination file when the backup job starts
2. antispyware running
3. another backup job backing up that file. Are your sysadmins/network admins running a backup job...
March 15, 2006 at 11:14 am
Why not just use CONVERT and MONEY?
DECLARE @test-2 VARCHAR(13)
SET @test-2 = '12345678.0000'
SELECT CONVERT(MONEY, @test-2, 1)
-SQLBill
March 15, 2006 at 11:09 am
Viewing 15 posts - 1,156 through 1,170 (of 2,904 total)