Andrew Jackson
Forum Replies Created
-
AuthorPosts
-
November 16, 2020 at 11:45 am in reply to: How to Convert OST to PST Format on Windows 10 Computer? #8422 Score: 0
Hi, can you please explain the free method.
I searched on internet for Free OST to PST Converter but not found any.
October 29, 2020 at 12:49 pm in reply to: How to Convert OST to PST Format on Windows 10 Computer? #8401 Score: 0Thanks for your quick response.
I am not technically wise and never used any converter software before. Can I use this OST to PST Converter on my own?
October 17, 2020 at 9:04 am in reply to: How Can I Merge Multiple PST Files into One? #8358 Score: 0I don’t want to merge duplicate items that are stored in the PST file. Does this PST Merge tool merge multiple PST files without duplicates?
March 18, 2020 at 12:26 pm in reply to: How Do I Move Windows 7 Mails to Outlook Windows 10? #7972 Score: 0Thanks a lot,
Your suggestion worked for me, I successfully transferred Windows 7 mails to Outlook on Windows 10.
March 18, 2020 at 11:34 am in reply to: How Do I Move Windows 7 Mails to Outlook Windows 10? #7970 Score: 0Thanks,
I installed the software on my Windows 7 machine. Now what should I do?
March 18, 2020 at 8:08 am in reply to: How Do I Move Windows 7 Mails to Outlook Windows 10? #7968 Score: 0Thanks for your suggestion,
I searched on the internet for Import Windows 7 Mails to Windows 10 Outlook. There are many software in Google result page. Now I am confused, which one should I use?
Can you please help me in selecting the right one.
October 18, 2019 at 5:35 am in reply to: How To Decrypt Restrictions of Locked PDF without Password #7816 Score: 0Yes, you are right. I have recently tried this method and unfortunately, it is not helped me out. My files are locked with all restrictions like, editing, copying, printing, commenting, etc. Now please suggest me any other effective solution which can be able to help me out of this situation.
October 17, 2019 at 12:38 pm in reply to: How To Decrypt Restrictions of Locked PDF without Password #7808 Score: 0Yes, I have tried it, but it doesn’t work because it needs first to enter the permission password in order to remove restrictions from PDF files. I am still facing the same issue and unable to work over those files. Can you please tell me any other solution??
October 15, 2019 at 4:37 am in reply to: How Can I Merge Multiple PST Files into One? #7770 Score: 0Hey, can you teach me how to create a new PST and import all the data into a new PST? I am not a too technical person and I am confused about how to do the same.
Yes, it is a AlwaysOn drawback. SQL Server Replication uses very high bandwidth. I think its best to use log shipping for a DR solution, because you can use DR db in standby mode & it uses very low traffic.
I think when log file grows many times in small time take extra i.o. and locks to add new extents. This may result in delay for entire system concurrent processes while we have the same setup. My options is without demand of other resources so. As a DBA we can try. Else network issues can be verified in parallel in other way during low peak hours.
June 7, 2016 at 12:07 pm in reply to: How to Move Distribution Database to Another Server in SQL Server #2212 Score: 0So it appears that you are migrating the instance to another server and this instance is working as a publisher, distributor and subscriber (at least this is what I am guessing from your short explanation).
- Backup your publisher and subscriber databases.
- Restore them on the destination instance with norecovery and setup log shipping or mirroring between the two servers.
- At this time the replication is intact and there is no downtime been taken i.e. your application is still up and running.
- Take the downtime
- Remove LS or mirroring from the target instance after ensuring that the source and destination DBs are in sync.
- Take the last log backup of subscriber and publisher databases and restore them on the target databases with recovery.
- Setup the distribution and publication on the new instance.
- Setup replication between the publisher DB and whatever subscribers you have but do not initialize them as the data is in sync already.
- Do the same with the subscriber database.
- Change the connection strings in the application to point to the new server.
June 6, 2016 at 12:32 pm in reply to: How to Fix this SQL Network Interfaces Error 26 on SQL Server 2008 r2 ? #2209 Score: 0The following link provides possible causes of the error with solutions
http://www.sqlserverlogexplorer.com/fix-error-code-26/June 1, 2016 at 11:53 am in reply to: How to remove identity in a column through query #2134 Score: 0Hope it will help you
BEGIN TRAN BEGIN TRY EXEC sp_rename '[SomeTable].[Id]', 'OldId'; ALTER TABLE [SomeTable] ADD Id int NULL EXEC ('UPDATE [SomeTable] SET Id = OldId') ALTER TABLE [SomeTable] NOCHECK CONSTRAINT ALL ALTER TABLE [SomeTable] DROP CONSTRAINT [PK_constraintName]; ALTER TABLE [SomeTable] DROP COLUMN OldId ALTER TABLE [SomeTable] ALTER COLUMN [Id] INTEGER NOT NULL ALTER TABLE [SomeTable] ADD CONSTRAINT PK_JobInfo PRIMARY KEY (Id) ALTER TABLE [SomeTable] CHECK CONSTRAINT ALL COMMIT TRAN END TRY BEGIN CATCH ROLLBACK TRAN SELECT ERROR_MESSAGE () END CATCH
May 13, 2016 at 11:38 am in reply to: Getting Error while Attaching the Database in SQL Server #2075 Score: 0What may the possible reasons for this error?
The problem of operating system error 5(access is denied.) is due to lack of permissions for SQL Server to access the Primary (.mdf) & Log (.ldf) files.
And to fix this error
Change the MSSQLSERVER service startup user account, with the user account who have better privileges on the files and then try to attach the database.
Or
Startup with windows administrator account, and open SQL Server with run as administrator option and try to login with windows authentication and now try to attach the database.- Make sure that your SQL Server port is not blocked by the system Firewall
- Go to Computer Management >> Service and Application >> SQL Server 2005 Configuration >> Network Configuration
Enable TCP/IP protocol.
For more information: http://www.sqlserverlogexplorer.com/database-mirroring-error-1418/
April 27, 2016 at 10:02 am in reply to: how to remove secondary transaction log file? #1989 Score: 0You can also follow the below steps:
1. Connect to the instance of SQL Server Database Engine & expand the instance.
2. Expand Databases > right-click the database from which to delete the file, and then click Properties.
3. Select the Files page.
4. In the Database files grid, select the file to delete and then click Remove.
5.Click OK.The reason of error is self explained means that the error reason is explained in error message.
Use BACKUP LOG WITH NORECOVERY to backup the log if it contains work you do not want to lose.
You need to restore the database from full backup using WITH REPLACE clause something like this:RESTORE DATABASE DATABASE_NAME FROM DISK = 'C:\database.BAK' WITH REPLACE GO
March 18, 2016 at 12:27 pm in reply to: How to change the database location in SQL Server? #1698 Score: 0You can try this also that changes the default database location.
ALTER DATABASE my SET SINGLE_USER WITH ROLLBACK IMMEDIATE; ALTER DATABASE my SET OFFLINE; ALTER DATABASE my MODIFY FILE ( Name = my_Data, Filename = 'D:\DATA\my.MDF' ); ALTER DATABASE my MODIFY FILE ( Name = my_Log, Filename = 'D:\DATA\my_1.LDF' );
March 17, 2016 at 12:25 pm in reply to: How to Recover Deleted Records from SQL Table? #1697 Score: 0You can use this sample query to find out when the table was last updated.
SELECT OBJECT_NAME(OBJECT_ID) AS DatabaseName, last_user_update,* FROM sys.dm_db_index_usage_stats WHERE database_id = DB_ID( 'DB_name') AND OBJECT_ID=OBJECT_ID('Table_name')
-
AuthorPosts