Viewing 15 posts - 841 through 855 (of 1,170 total)
MarkusB (9/27/2013)
Your backup file is definetly not ok. Could it be that the backup was taken on a different version of SQL Server than your...
September 27, 2013 at 5:51 am
IgorMi (9/27/2013)
MarkusB (9/27/2013)
Can you do a Restore HEADERONLY ?Yes I'm able to do it
BackupNameBackupDescriptionBackupTypeExpirationDateCompressedPositionDeviceTypeUserNameServerNameDatabaseNameDatabaseVersionDatabaseCreationDateBackupSizeFirstLSNLastLSNCheckpointLSNDatabaseBackupLSNBackupStartDateBackupFinishDateSortOrderCodePageUnicodeLocaleIdUnicodeComparisonStyleCompatibilityLevelSoftwareVendorIdSoftwareVersionMajorSoftwareVersionMinorSoftwareVersionBuildMachineNameFlagsBindingIDRecoveryForkIDCollationFamilyGUIDHasBulkLoggedDataIsSnapshotIsReadOnlyIsSingleUserHasBackupChecksumsIsDamagedBeginsLogChainHasIncompleteMetaDataIsForceOfflineIsCopyOnlyFirstRecoveryForkIDForkPointLSNRecoveryModelDifferentialBaseLSNDifferentialBaseGUIDBackupTypeDescriptionBackupSetGUIDCompressedBackupSize
*** INCOMPLETE ***NULLNULLNULLNULL1NULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULLNULL
September 27, 2013 at 5:42 am
MarkusB (9/27/2013)
Can you do a Restore HEADERONLY ?
Yes I'm able to do it
September 27, 2013 at 5:40 am
Hi,
It's easy with extended events (XE) in sql server 2012 by help of its GUI. It should be possible with XE 2008 R2, but you'll have to write some code...
September 27, 2013 at 5:07 am
I do have those pages in the restored database but because the database is in simple mode, page restore isn’t an option and DBCC repair_allow_data_loss doesn’t remove the corruption either.
The...
September 26, 2013 at 6:52 am
Bhuvnesh (9/25/2013)
IgorMi (9/23/2013)
What is the recovery model of your TempDB? Default is SIMPLE, and it should be.can we change it ? ??
You're right! It cannot be different from SIMPLE....
September 25, 2013 at 6:05 am
Very nice article!
I believe that every developer with 2+ years experience has passed through all the mentioned rules.
Thanks.
September 24, 2013 at 6:23 am
Hi,
What is the recovery model of your TempDB? Default is SIMPLE, and it should be. Autogrowth of 10% is not the best option.
Citing Erland:
Do you have any databases that...
September 23, 2013 at 4:14 am
shiwani.plrs (9/20/2013)
for informationdatabase size is 16938.25 MB
and available space is 1455.23 MB
Hi,
According to your info, you should not shrink the database's files.
If you do that, then do not forget...
September 20, 2013 at 5:16 am
Nice and interesting article. I didn't know it.
Thanks
IgorMi
September 17, 2013 at 2:39 am
Nice question.
Results are very obvious.
It needs
DECLARE @i TABLE( mychar VARCHAR(11));
September 11, 2013 at 2:20 am
SQL_Kills (9/8/2013)
I don't want to alter any table, I want this done by a sql select statement only? Plus this would not work as only want it to appear as...
September 9, 2013 at 1:58 am
Hi
This code should do your job:
alter table salesOrders
add OrderMatched varchar(3) null
update salesOrders
set OrderMatched = 'yes'
from salesOrders s join ProductList p on s.ProductID = p.ProductID
update salesOrders
set OrderMatched = 'no'
where OrderMatched is...
September 8, 2013 at 5:20 pm
eobiki10 (9/8/2013)
I have this error message; Violation of Primary key Constraint. Cannot insert duplicate primary key in object. The value that is causing this error is (128503).
I have queried...
September 8, 2013 at 4:31 pm
Viewing 15 posts - 841 through 855 (of 1,170 total)