Star Knowledge

Star Knowledge

@stark
Joined Mar 2020
0 Followers
7 Writeups
0 Following
Popular WriteUps
View all →
Recent Activity
Star Knowledge posted a new writeup in Technology May 20, 2020
Technology DevOps Automation: Create Google Compute Engine VM Instance

<p>Automate the creation of <a rel="nofollow" href="https://tabexp.com/blog/devops-automation-create-google-compute-engine-instance-using-powershell-scripts/">google compute engine VM instances</a> using these PowerShell scripts. 6 simple steps to DevOps automation on the google cloud (gCloud)</p>


Star Knowledge posted a new writeup in Technology Apr 20, 2020
Technology Office 365 Readiness Assessment: Are you O365 Ready? | Star Knowledge

<p>O365 migration on mind? Have you considered conducting an <a rel="nofollow" href="https://www.star-knowledge.com/office-365-readiness-assessment/">Office 365 readiness assessment</a>? A thorough assessment helps you prevent losses &amp; migration failure</p>


Star Knowledge posted a new writeup in Technology Apr 10, 2020
Technology IAM Consulting Services | IDaaS | Knowledge On TAP

<p>Our <a rel="nofollow" href="https://www.knowledgeontap.com.au/">IAM Consulting Services</a> come from highly experienced IAM Consultants who develop IAM Solution plans &amp; digital transformation strategy for our clients.</p>


Star Knowledge posted a new writeup in Technology Apr 10, 2020
Technology Setting Up Remote Teams for a Microsoft Partner

<p>An MS partner company generates higher ROI by setting up remote teams (virtual teams) in less than a week. Hired developers around SharePoint, O365 &amp; Power BI. Contact us to hire developers on<a rel="nofollow" href="https://www.star-knowledge.com/sharepoint-consulting-services/"> SharePoint</a>, <a rel="nofollow" href="https://www.star-knowledge.com/office-365-consulting-services/">Microsoft Office 365</a>, and more.&nbsp;</p>


Star Knowledge posted a new writeup in Technology Apr 2, 2020
Technology How to Automate Continuous Database Backup and Restore

<p><strong>Follow these simple 4 universal steps to <a rel="nofollow" href="https://tabexp.com/blog/how-to-automate-continuous-database-backups-and-restores/">automate continuous SQL database</a>, MySQL, Oracle or any other database backups and restores.</strong></p><p>Microsoft SQL is the most widely used database management system. As a user, you put huge amount of data there. Using this popular database is easy but its maintenance and backup is not. We hear a lot of cries from users where they accidentally drop a database, lose backups, want to restore and retrieve the data and more.</p><p>While there are several easy ways you can lose your data such as a bug in the database engine, using an unreliable infrastructure to host your database, damage to the files, storage device failure etc., there are also very easy and simple steps to avoid data loss and automate <a rel="nofollow" href="https://azure.microsoft.com/en-us/services/sql-database/">SQL database</a> backup &amp; restore.</p><p>But you don’t want to lose your data, do you? Or are you hit by this disaster ALREADY???</p><p>To help you out of this mess, we bring to you this step-by-step guide on how to automate SQL database backup and how to restore the backups.</p><p>Although, these days databases are more stable and reliable, you still need perfect, automated database backup and restore solutions for your database, be it SQL, MySQL, Oracle or any other database. Let’s dive in:</p><p><strong><em>Other posts:&nbsp;</em></strong><a rel="nofollow" href="https://tabexp.com/case-studies/azure-infrastructure-migration-platform-as-a-service/"><em>Azure Infrastructure Migration</em></a></p><strong>How to Automate Continuous Backups for SQL Database</strong><p>Whether your SQL server is running on Microsoft Azure, AWS (Amazon Web Service), Google Cloud or is running on any Virtual Machines (VMS) or PaaS instances, the tips and tricks for automation of database backups shared in this article are universal.</p><strong>Important Benefits of Database Backup Automation</strong><ul><li>Guess what? you need not be an Automation expert, a skilled database engineer or an experienced database administrator to execute this job.</li><li>Forget database mirroring. You don’t have to spend time in learning how it’s done.</li><li>This is just a one-time set up. Yes, you read it right! Once you setup the automation explained in this article, you will never have to worry about scheduling backups. It automatically does all that for you.</li></ul>Follow this easy 4-step guide on how to automate continuous backups for SQL database:<p></p><p><strong>Step 1:</strong> <strong>Run an Azure Batch Job – Portal</strong></p><p>Microsoft <a rel="nofollow" href="https://docs.microsoft.com/en-us/azure/batch/batch-technical-overview#:~:text=">Azure Batch</a> is largely used for its cost optimization benefit. You’re charged only when you execute a back-up or restore Job. This job scheduling and compute management platform is widely used as it enables running large-scale applications efficiently on the cloud.</p><p>Now, follow <a rel="nofollow" href="https://docs.microsoft.com/en-us/azure/batch/quick-create-portal">this link</a> to create a batch account which you will need to create pools, jobs, and tasks.</p><p><strong>Step 2: &nbsp;obtain the SQLpackage command-line utility</strong></p><p>You can <a rel="nofollow" href="https://superuser.com/questions/429423/where-can-i-obtain-the-sqlpackage-command-line-utility">obtain the SQLpackage command-line utility</a> in “SQL Server Database Tools” from Microsoft.</p><p><strong>Step 3: Upload to the Azure blob container</strong></p><p><strong>Step 4:</strong> <strong>Create Azure batch&nbsp;</strong><a rel="nofollow" href="https://docs.microsoft.com/en-us/rest/api/batchservice/task/add"><strong>task Add</strong></a></p><ul><li>RESOURCE FILES as blob container location</li></ul><p></p><p><strong>Command Line</strong></p><p>cmd /c &nbsp;“%AZ_BATCH_APP_PACKAGE_sqlpack#v1%\DAC\bin\SqlPackage.exe /a:Export /ssn:&lt;HOST IP&gt; /sdn:&lt;databasename&gt; /su:&lt;loginUSErNAME&gt; /sp:&lt;PASSWORD&gt;/tf:\&lt;Azure-file-share&gt;.file.core.windows.netcommonextractv-batch.bacpac”</p><strong>How to Automate Continuous Database Restore:</strong><p>Follow the below 4 easy steps to automate database restore:</p><p></p><p><strong>Step 1:</strong> Run an Azure Batch Job – PortalFollow <a rel="nofollow" href="https://docs.microsoft.com/en-us/azure/batch/quick-create-portal">this link</a> to create a batch account which you will need to create pools, jobs, and tasks.</p><p><strong>Step 2:</strong> Obtain the SQLpackage command-line utility</p><p><strong>Step 3:</strong> Upload to the Azure blob container</p><p><strong>Step 4</strong>: &nbsp;Create Azure batch task Add</p><ul><li>RESOURCE FILES as blob container location</li></ul><p></p><p><strong>Command line</strong></p><p>cmd /c “%AZ_BATCH_APP_PACKAGE_sqlpack#v1%\DAC\bin\SqlPackage.exe /a:Import /tsn:ae-dev-sql.database.windows.net /tdn:extractv /tu:tabexpone /tp:Tabexp@123 /sf:\.file.core.windows.netcommonextractv3-batch.bacpac</p><strong>Conclusion</strong><p>The above steps for automation of database backups will help you avoid disasters from data loss and focus on more important things.</p><p>TabExp Apps with several years in <a rel="nofollow" href="https://tabexp.com/microsoft-azure-devops-services/">Microsoft Azure DevOps</a> and <a rel="nofollow" href="https://docs.microsoft.com/en-us/azure/sql-database/sql-database-manage-automation">Azure Automation</a> space, has helped several businesses automate software development and delivery. Get in touch with our Azure consultants for quick cloud migration and Azure DevOps challenge resolution.</p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p>


Star Knowledge posted a new writeup in Technology Mar 24, 2020
Technology COVID-19: Benefits of Virtual Teams During Corona Virus

<p>COVID-19 seems to be leading us towards the future of work. During this difficult time, the benefits of <a rel="nofollow" href="https://www.star-knowledge.com/sharepoint-migration-services/">virtual teams </a>can help reduce the adverse business impact</p>


Star Knowledge posted a new writeup in Software Engineering Mar 16, 2020
Software Engineering Custom Software Development Company | Star Knowledge

<p>Star Knowledge is an award-winning ISO 9001: 2015 certified <a rel="nofollow" href="https://www.star-knowledge.com">software development company</a> offering best in class mobile app development, web development, cloud solutions, managed services and application support &amp; maintenance services. We are a Microsoft Certified Partner offering Microsoft solutions such as <a rel="nofollow" href="https://www.star-knowledge.com/sharepoint-consulting-services/">SharePoint</a>, Azure Cloud solutions, OneDrive for Business, <a rel="nofollow" href="https://www.star-knowledge.com/office-365-consulting-services/">Office 365</a>, Skype for Business and migration services. Our experienced and certified developers build software that matches your unique requirements. Our development team is expert in technologies like ASP.Net, MVC.net, Mean Stack, HTML 5, CSS3, Bootstrap, WordPress, Joomla, Magento, Shopify NOPCommerce, iOS, Android, Native and Hybrid apps. Contact us for more business inquiries.</p>