Home » Blog »

Andrew Jackson

~ Modified: October 6th, 2023 ~ ~ 8 Minutes Reading

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 81 total)
  • Author
    Posts
  • in reply to: How to Convert OST to PST Format on Windows 10 Computer? #8422 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Hi, can you please explain the free method.

    I searched on internet for Free OST to PST Converter but not found any.

    in reply to: How to Convert OST to PST Format on Windows 10 Computer? #8401 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Thanks 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?

    in reply to: How Can I Merge Multiple PST Files into One? #8358 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    I 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?

    in reply to: How Do I Move Windows 7 Mails to Outlook Windows 10? #7972 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Thanks a lot,

    Your suggestion worked for me, I successfully transferred Windows 7 mails to Outlook on Windows 10.

    in reply to: How Do I Move Windows 7 Mails to Outlook Windows 10? #7970 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Thanks,

    I installed the software on my Windows 7 machine. Now what should I do?

    Andrew Jackson
    Moderator
    1 pt

    Thanks 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.

    Andrew Jackson
    Moderator
    1 pt

    Yes, 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.

    Andrew Jackson
    Moderator
    1 pt

    Yes, 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??

    in reply to: How Can I Merge Multiple PST Files into One? #7770 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Hey, 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.

    in reply to: Alwayson is out of sync #2379 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    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.

    in reply to: Alwayson is out of sync #2310 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    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.

    Andrew Jackson
    Moderator
    1 pt

    So 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.
    Andrew Jackson
    Moderator
    1 pt

    The following link provides possible causes of the error with solutions
    http://www.sqlserverlogexplorer.com/fix-error-code-26/

    in reply to: How to remove identity in a column through query #2134 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Hope 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
    Andrew Jackson
    Moderator
    1 pt

    What 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.

    in reply to: Getting SQL Server Error 1418. How to Fix? #2074 Score: 0
    Andrew Jackson
    Moderator
    1 pt
    • 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/

    in reply to: how to remove secondary transaction log file? #1989 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    You 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.

    in reply to: Getting SQL Error 3159 #1701 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    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
    in reply to: How to change the database location in SQL Server? #1698 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    You 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'
    );
    in reply to: How to Recover Deleted Records from SQL Table? #1697 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    You 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')
    
Viewing 20 posts - 1 through 20 (of 81 total)