Home » » Page 10

Lincoln Burrows

~ Modified: July 24th, 2024 ~ ~ 8 Minutes Reading

Forum Replies Created

Viewing 20 posts - 181 through 200 (of 249 total)
  • Author
    Posts
  • Lincoln Burrows
    Moderator
    16 pts

    Thanks Dexter, Now i am able to access old Emails in laptop. But i am still unable to access mails from exchange server in my PC.

    in reply to: How to Synchronize Outlook between Laptop and Desktop?? #1368 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    I have copied PST file into folder but i don’t know where should i paste it. Is there any specific folder in which i should paste it.
    It is little bit confusing, can you please describe it in more simple way?

    Lincoln Burrows
    Moderator
    16 pts

    Thanks Dexter for solution,

    Now i can Open Outlook.

    in reply to: Recover Exchange User Mailbox from OST File #1360 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    I am trying to open OST file in outlook but i am unable to login. I don’t have the password of any user. Now what should i do?

    in reply to: How can we choose a file organization? #1259 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    There are four types of file organization system in SQL Server database, you can choose one of them as per your convenience.
    1. Heap file organization: when there is a huge number of data needs to load into the database at a time, then this method of file organization is best suited. Best suited for very small files as the fetching of records is faster.

    2. Hash file organization: The block address is known by hash function, accessing any record is very faster. It is suitable for online transaction systems like online banking, ticket booking system etc

    3. Sequential organization:. When there are large volumes of data, this method is very fast and efficient. This method is helpful when most of the records have to be accessed like calculating the grade of a student, generating the salary slips etc. This method is good in case of report generation or statistical calculations.

    4. Clustered organization: This file organization is not best suited for the large number of data because the ordering of records are not based on the primary key.

    in reply to: Recover Exchange User Mailbox from OST File #1194 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Thanks Dexter for your effort.
    But i have something good as i searched a lot for user data and i found OST file of Exchange 2010 which were named according to date and time. Now i want to view all data stored in OST file, so can you suggest any solution for extraction of data from OST file.

    Lincoln Burrows
    Moderator
    16 pts

    Thanks for your reply Dexter.

    I could not find any properties of Outlook Application. Can you please elaborate about this?

    in reply to: How can I setup a new AOL account? #1170 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Hi

    Well the procedure is not that complicated , i will tell you step by step :-

     

    • Goto AOL.com and request for Sign up. Remember you are a new user hence click Get a free username.
    •  
      AOl sign up
       

    • Now you will see a registration form which you need to fill exactly what they asked.
    •  

    • Click on Submit and you will be redirected to another page where some security checks & your AOL email address & AOL username resides. Perform the checks and click OK.
    •  

    • Now you are a registered AOL account holder. You can use AOL mails anytime just by Sign in action.
    •  
      AOL sign in
       

     
     

    Regards
    Lincoln Burrows

    in reply to: Recover Exchange User Mailbox from OST File #1161 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Firstly Exchange server 2010 was installed, at that time Active Directory & Mailbox had been deleted two times. At upgrade time Exchange Server 2010 to 2013 Active directory had again deleted and since that time Active directory is deleted again during Exchange Server upgrade from 2013 to 2016.

    in reply to: Recover Exchange User Mailbox from OST File #1150 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    NO, I don’t have any backup of exchange server database. Is it possible to recover those user data? Because i haven’t got any good response from anyone related to this problem till now.

    in reply to: How to change the database location in SQL Server? #1149 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    You can also change the path of an existing database using transact-SQL

    • First, detach database:
    • USE master;
      GO
      ALTER DATABASE DatabaseName SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
      GO
      EXEC sp_detach_db @databasename = N'DatabaseName';
      GO
      
    • Then copy the detach database file to a new location
    • At last attach the database:
    • USE master;
      EXEC sp_attach_db @databasename = N'dbName', 
      @filename1 = N'',  --path do .mdf
      @filename2 = N'';  --path to .ldf
      GO
    in reply to: How to change the database location in SQL Server? #1106 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    This won’t create the new path for you, this will change the default database to already exists path only

    in reply to: How to Recover SQL Server Database from SUSPECT Mode #1104 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Some of the basic reasons for SQL Server Database to go into suspect mode are:

    • SQL Server Database file or transaction log could have been corrupted
    • Unexpected shutdown of SQL Server database
    • Database could not be opened due to the lack of disk space

    To recover SQL Server database from suspect mode

    • At very first change the status of your database
    • Change Database Status

    • Then set the SQL Server database in emergency mode
    • Set In Emergency Mode

    • Check the database for any inconsistency
    • Database Inconsistency

    • Then execute the following query
    • Recover SQL Server Database From Suspect Mode

    • Now run the REPAIR_ALLOW_DATA_LOSS
    • Repair Allow Data Loss

    • Change database mode to MULTI USERS
    • Multi Users

    • Refresh your database server and connect to database

    Note: take the backup of your database for safety

    in reply to: How to convert SQL Server database to MS Access? #1062 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Simply follow the below steps to export SQL Server data to MS Access

    • Go to the tables in MS Access database tab
    • Select Import
    • Make an odbc connection with SQL database
    • And import tables.
    in reply to: How do I open Microsoft SQL Server Management Studio? #1046 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    To open SQL Server Management Studio

    Click on the Start menu
    Point to All Programs
    Point to Microsoft SQL Server 2016
    Then click SQL Server Management Studio

    in reply to: How to rename SQL Server database? #1038 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Thanks Stephen for this informative link this is exactly what I am looking for I just did it on my SQL Server 2008

    in reply to: How to rename SQL Server database? #1018 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Thanks Andrew for providing this script it works fine, but I also want to know can I rename the physical file. for example
    MyDatabase.mdf
    to
    MyDatabaseNew.mdf
    Is it possible to change the physical file name

    in reply to: Getting Error while Attaching the Database in SQL Server #1017 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    You need to provide the modify privilege to the SQL Service accounts to the folder C:\ArrowSQL\Arr@Data and then attach the db, it will attach without privilege error!!
    Now, if you are using windows 7. Open the SSMS like this – Right click -> Run as Administrator and then login in windows mode and try to attach the database files.

    in reply to: How to enable and disable trigger in SQL server #1007 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Thanks Andrew for the script, it works great, but I also want to know can I enable and disable SQL Server Trigger using SQL Server Management Studio (GUI).

    in reply to: How to Create a Full Database Backup in SQL Server ? #999 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Creating backups using SQL Server Management Studio is pretty simple. Look at this blog for a description how to create a full database backup using SQL Server Management Studio and T-SQL: http://www.sqlserverlogexplorer.com/create-full-database-backup/

Viewing 20 posts - 181 through 200 (of 249 total)