jack of all trades master of some https://jackofalltradesmasterofsome.com/blog/ Consultant - Real Estate - Author - Business Intelligence Fri, 17 Mar 2023 18:36:38 +0000 en-US hourly 1 https://wordpress.org/?v=5.9.8 Decrypt and Save a Text or CVS with PGPY and Python http://jackofalltradesmasterofsome.com/blog/2023/03/17/decrypt-and-save-a-text-or-cvs-with-pgpy-and-python/ Fri, 17 Mar 2023 18:36:18 +0000 https://jackofalltradesmasterofsome.com/blog/?p=1321 Hopefully this helps someone to Decrypt and Save a Text or CVS file with PGPY and Python. Use Kleopatra and  OpenPGP to generate and save your key. You can obtain it by Exporting “Backup Secret Keys”. Then run this code to decrypt and save the file in whatever location you need. That’s it! Keeping it ... Read more

The post Decrypt and Save a Text or CVS with PGPY and Python appeared first on jack of all trades master of some.

]]>
Hopefully this helps someone to Decrypt and Save a Text or CVS file with PGPY and Python. Use Kleopatra and  OpenPGP to generate and save your key. You can obtain it by Exporting “Backup Secret Keys”.

Then run this code to decrypt and save the file in whatever location you need.

import pgpy

emsg = pgpy.PGPMessage.from_file('YOUR FILE.pgp')
key,_  = pgpy.PGPKey.from_file('YOUR PRIVATE KEY.asc')
with key.unlock('YOUR PGP PASSWORD'):
    print (key.decrypt(emsg).message)
    with open("my_file.txt", "wb") as binary_file:
   
        # Write bytes to file
        binary_file.write(key.decrypt(emsg).message)

That’s it! Keeping it short and simple.

The post Decrypt and Save a Text or CVS with PGPY and Python appeared first on jack of all trades master of some.

]]>
Best Science-Themed Gifts: Get Your Nerd On http://jackofalltradesmasterofsome.com/blog/2022/12/20/best-science-themed-gifts-get-your-nerd-on/ Tue, 20 Dec 2022 00:21:37 +0000 https://jackofalltradesmasterofsome.com/blog/?p=1272 Are you struggling to find the perfect gift for the scientist in your life? Look no further! We’ve compiled a list of the best creative gift ideas that are sure to impress the science-loving person in your life. Here are our top 5 Best Science-Themed Gifts. A periodic table throw blanket This cozy blanket is ... Read more

The post Best Science-Themed Gifts: Get Your Nerd On appeared first on jack of all trades master of some.

]]>
Are you struggling to find the perfect gift for the scientist in your life? Look no further! We’ve compiled a list of the best creative gift ideas that are sure to impress the science-loving person in your life. Here are our top 5 Best Science-Themed Gifts.

A periodic table throw blanket

  • This cozy blanket is not only functional, but it’s also educational! The periodic table of elements is featured prominently, making it the perfect gift for the chemistry enthusiast in your life
Best Science-Themed Gifts blanket
Periodic Table Throw Blanket

Custom Handmade Patent

  • Has your favorite scientist been awarded a patent. Help them show off their hard work with a custom patent designed for them to hang in their office or home.
Best Science-Themed Gifts patent
Custom Handmade Patent on Etsy

A science-themed cookbook:

  • If your scientist friend loves to cook, consider gifting them a cookbook filled with recipes that incorporate scientific principles. From molecular gastronomy to edible chemistry experiments, there are plenty of options to choose from.
Best Science-Themed Gifts books
The Food Lab: Better Home Cooking Through Science

A DIY terrarium kit

  • For the botanist or plant lover in your life, consider giving a DIY terrarium kit. This gift allows them to create their own miniature ecosystem and learn about plant care in the process.
Best Science-Themed Gifts
DIY Terrarium Kit

A Science-Themed Gifts board game

  • Board games make for a great gift, and there are plenty of options available with a science twist. From chemistry-themed games like “Elements” to biology-themed games like “Pandemic,” there’s something for every science enthusiast.
Best Science-Themed Gifts board game
Pandemic Board Game

5. Science fiction novel

  • Give the gift of a good read with a science fiction novel. From classic works by authors like Isaac Asimov to more modern offerings, there are plenty of options to choose from.

No matter what gift you choose, your scientist friend is sure to appreciate the thought and creativity you put into it. Happy shopping! Best Science-Themed Gifts

The post Best Science-Themed Gifts: Get Your Nerd On appeared first on jack of all trades master of some.

]]>
Get Data from NetSuite using Azure Data Factory http://jackofalltradesmasterofsome.com/blog/2022/05/17/get-data-from-netsuite-using-azure-data-factory/ Tue, 17 May 2022 16:25:29 +0000 https://jackofalltradesmasterofsome.com/blog/?p=1263 Get Data from NetSuite using Azure Data Factory. As Netsuite is an oracle product, getting data into your data warehouse can be a little tricky. Here is a helpful guide to get started. Side Note: Want to learn SQL or Python for free. In less then 10 minutes a day and less than an hour ... Read more

The post Get Data from NetSuite using Azure Data Factory appeared first on jack of all trades master of some.

]]>
Get Data from NetSuite using Azure Data Factory. As Netsuite is an oracle product, getting data into your data warehouse can be a little tricky. Here is a helpful guide to get started.

Side Note: Want to learn SQL or Python for free. In less then 10 minutes a day and less than an hour total? Signup for my free classes delivered daily right to your email inbox for free!

Back to the article…

Helpful Links

https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_3994744300.html

https://www.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2020_1/analytics/record/transactionLine.html

1.      Setup VM

Virtual Machine will be required since a server with the ability to install the correct ODBC drivers and a SQL Server to create the linked services will be needed. This will allow you to install an Integration runtime for Azure Data Factory to connect to and leverage the Linked Server

  1. Items to install on VM
    1. SQL Express Local DB
      1. Needed to test and verify ODBC connection to NetSuite and created Linked Server Connection
      1. SQL Server Express LocalDB – SQL Server | Microsoft Docs
      1. Install the SQL Server as a Mixed Authentication Mode
        1. Create a User on SQL Server that has rights to all databases and linked servers needed in the final steps
    1. SQL Server Management Studio
      1. Needed to test and verify Linked Server ODBC connection to NetSuite
    1. Azure Data Factory Integration Runtime
      1. Needed to connect a VM to Data Factory
      1. Download Microsoft Integration Runtime from Official Microsoft Download Center
    1. NetSuite ODBC Driver for Windows
      1. See next steps for download and setup instructions

2.      Setup the NetSuite ODBC driver for Windows

You will need to install the NetSuite ODBC drivers on the VM so that it can communicate with the NetSuite Servers

  1. This will be provided by your Admin or Via the NetSuite Portal
    1. You will need to obtain the server host, service port, service data source, account ID and Role ID from NetSuite as well as configure a user that has access to these settings.
  2. NetSuiteODBCDrivers_Windows64bit
  3. Navigate to your ODBC Settings in Windows and Add a new System DSN. If everything installed correctly you will now see a “NetSuite Drivers 64bit” to select from.
  4. In the Settings for this page, enter the Account ID, and Role ID from the setup instructions from Netsuite
  5. Once you select “Test Connect” you will be prompted to enter your credentials you configured in NetSuite.

3.      Setup a Linked Server Connection

With SQL Server Express and SQL Server Management Studio Setup, you can now create a Linked Server Connection to NetSuite.

  1. In the General tab, enter the following information:
    1. Linked server: NETSUITE (Name which you want to appear in the object explorer)
    1. Provider: Microsoft OLE DB Provider for ODBC Drivers
    1. Product name: NetSuite.com
    1. Data Source: The name of you 64-Bit ODBC Data Source from Previous Step. This was “NetSuite” in this example.
    1. Provider string: DSN=NetSuite.com
  • In the Security tab, select “Be made using this security context:”. For remote login, use your NetSuite login and password.
  • The linked server should now appear in the object explorer.
    • you can now query the tables with queries similar to “Select * from [NETSUITE].[Database].[Administrator].[ACCOUNT_ACTIVITY]”

4.      Set Up Integration Runtime in Azure Data Factory

Now that a linked server has been set up from your VM to the NetSuite box, you can now use this connection in Azure Data Factory. Since this is considered a on-premise server, you will need to install an Azure Integrated Runtime so that Azure Data Factory which is on the cloud can find and communicate with this VM.

5.      Setup and Install Integration Runtime on VM

You now will need to install the Integration Runtime on the VM and configure it so that it can find and communicate with the Azure Data Factory Service you configured in previous step

If all was done correctly, you will now see a valid connection inside Azure Data Factory

6.      Azure Data Factory Setup

Everything should now be setup and to move data from your NetSuite to your destination in Azure Data Factory

a.       Setup a Linked Service in Data Factory

b.      Create a Data Source

c.       Create a Pipeline and Move Data

The post Get Data from NetSuite using Azure Data Factory appeared first on jack of all trades master of some.

]]>
Use Azure Blob Storage for SFTP http://jackofalltradesmasterofsome.com/blog/2022/03/08/use-azure-blob-storage-for-sftp/ Tue, 08 Mar 2022 15:55:29 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1244 This feature is in preview at time of writing and may be subject to change. Here is a quick guide on how to Use Azure Blob Storage Gen2 for SFTP for cheap serverless SFTP. Step by step guide on setup and access. By using local users, this allows you to create a series of SSH ... Read more

The post Use Azure Blob Storage for SFTP appeared first on jack of all trades master of some.

]]>
This feature is in preview at time of writing and may be subject to change. Here is a quick guide on how to Use Azure Blob Storage Gen2 for SFTP for cheap serverless SFTP. Step by step guide on setup and access. By using local users, this allows you to create a series of SSH users and passwords for segmented folders and control access to your SFTP file storage.

Use Azure Blob Storage for SFTP

  1. Navigate to Subscriptions and select the subscription you want to activate the SFTP features against
  • Select “Preview Features” and then search for “SFTP”. Select “SFTP support in Azure Blob Storage and click Register.
  • Create a new Gen2 storage account in Azure. Use any name you need and set as Standard.
  • Under advanced setting you must Enable hierarchical namespace in the storage settings as well as Enable SFTP.

Setup SFTP in Azure Blob Storage

  1. In your storage, create a new container.
  • Under Settings you now should have a SFTP option to navigate too.
  • Create a new local user and select “SSH Password”
  • Next give this user the correct permissions to the containers and folders. Once completed the password will be shared with you.

Connect to Azure SFTP in Cleint

  1. Open a SFTP tool such as WinSCP or FileZilla
  2. For the host name enter the blob storage name, and user name and password from the previous steps.
    1. storagename.blob.core.windows.net
  3. Hit connect. You may be prompted for approval of a key. Once you accept, you should now have access to the SFTP on blob storage!

For more information be sure to check out the rest of this blog for azure tips and tricks and business intelligence tutorials. Azure belongs to the Microsoft suite of products and for more details please see the portal site on Microsoft’s documentation.

The post Use Azure Blob Storage for SFTP appeared first on jack of all trades master of some.

]]>
Connect to Azure SQL using Active Directory and Grant Access outside Organization http://jackofalltradesmasterofsome.com/blog/2022/02/13/connect-to-azure-sql-using-active-directory-and-grant-access-outside-organization/ Sun, 13 Feb 2022 20:08:58 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1235 Learn how to Connect to Azure SQL using Active Directory and Grant Access outside users outside of your Organization. This comes in handy when you have a user that sits outside of your organization and they need to log into a SQL environment you have provisioned for them. They will need to be invited as ... Read more

The post Connect to Azure SQL using Active Directory and Grant Access outside Organization appeared first on jack of all trades master of some.

]]>
Learn how to Connect to Azure SQL using Active Directory and Grant Access outside users outside of your Organization. This comes in handy when you have a user that sits outside of your organization and they need to log into a SQL environment you have provisioned for them. They will need to be invited as a guest user and then the appropriate access setup so they can login with out needed a hard coded SQL authentication login which creates risk.

1. Allowing Active Directory to Authenticate to SQL Server

  • Navigate to your server and Click on “Not Configured” for Active Directory admin inside the Server you are interested in allowing AD access to.
  • Set Admin and set your Azure Portal account as admin.
  • Leave the check box for Azure Active Directoy authentication only set to unchecked. This way you can continue to use defined crecentianls when needed.
  • Be sure to click Save to save changes.
  • Head back to SSMS and log in using Azure Active Directory – Universal with MFA or use the correct setting approved by your administrator.

2. Invite User to Your Organization

  • Add a new Guest User from the User section in your Azure Portal
  • User will get an email to activate their account

3. Adding a External AD user to your Database

  • Create a new Query window and run the following commands. and edit the user name and business to the users created in step 2

CREATE USER [username.com#EXT#@business.onmicrosoft.com] FROM EXTERNAL PROVIDER;

ALTER ROLE [db_datareader] ADD MEMBER [username.com#EXT#@business.onmicrosoft.com];

4. Conclusion

And that is all you need to Connect to Azure SQL using Active Directory and Grant Access outside Organization.

The post Connect to Azure SQL using Active Directory and Grant Access outside Organization appeared first on jack of all trades master of some.

]]>
Top 20 NFT Influencers On Twitter You Need To Be Following To Make Money http://jackofalltradesmasterofsome.com/blog/2022/01/12/top-20-nft-influencers-on-twitter-you-need-to-be-following-to-make-money/ Wed, 12 Jan 2022 19:49:16 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1229 Do your own research and copy the big players in the space. Here are Top 20 NFT influencers on Twitter you should follow to make money. All data is open and provided by UpNFT’s Whale Tracker and Newsletter which updates hourly! Which Top NFT Influencers On Twitter Do You follow? Which NFT influencers on Twitter ... Read more

The post Top 20 NFT Influencers On Twitter You Need To Be Following To Make Money appeared first on jack of all trades master of some.

]]>
Do your own research and copy the big players in the space. Here are Top 20 NFT influencers on Twitter you should follow to make money. All data is open and provided by UpNFT’s Whale Tracker and Newsletter which updates hourly!

Which Top NFT Influencers On Twitter Do You follow?

Which NFT influencers on Twitter do you follow? Perhaps it’s the same faces each month or just a few. If so, I highly doubt that they are all providing you with the best and most relevant information to help your trading decisions.

Our List of NFT Influencers On Twitter You Need To Be Following

1. Farokh.eth

His current portfolio is at around 1.4 million at time of writing and still growing. He has a large twitter and Instagram following and was early into Cool Cats, Bored Apes, and Crypto Punks and host Twitter spaces for @rugragdio

2. Coco__Bear

The biggest of the whales at 44 Million dollars in his vault!

3. j1mmy_vault

4. dingalingg

5. 888

6. pranksy

7. ColeThereum.eth

Founder of Pudgy Penguins and early at things like $WGMI, $LOOKS and insider at many projects.

8. shamdoo.eth

Founder of HeadDAO and active collector and can move markets with updates on Twitter.

9. NFTmachine.eth

One of the biggest influential voices in the NFT World

10. artchick.eth

11. flur

12. Cozomo de’ Medici

Snoop Dog alter ego in the NFT world, he has been an early adopter from the celebrity side and will be an interesting watch in the space.

13. DannyUkes.eth

14. nathanabauman.eth

15. rexwub.eth

Famoulsy rolled from Creatures to a play in Doodles which he was critizied for and than Doodles went from 1ETH to 10ETH. Great play and great person to watch.

16. tmas.eth

Sometimes called FudMas, there is no doubt tmas has been able to move projects up and down with his tweets.

17. wab.eth

Founder of Sappy Seals and frequent poster of great content. At 10k Followers at time of writing, Wab will continue to grow into one of the pioneers of play to earn with Sappy Seals Pixel Verse

17. Andrew Wang

Andrew has been a big promoter of NFT and has now sealed his place in NFT celebrity land with networks into the best creators and projects.

18. Daniel100.eth

Founder of The Gltiches Project and an early NFT investor that helped makes Punks popular!

19. gmoney.eth

20. punk6529

Conclusion of NFT Influencers On Twitter You Need To Be Following

It could be said that Twitter is the driving force behind the recent NFT trend, since many of the top users in this space are all on Twitter. If you want to keep up with all that’s going on in the world of NFTs, and maximize your chances of making some money as a result, it helps to follow influential developers, content creators and community leaders.

Top 20 NFT Influencers On Twitter You Need To Be Following To Make Money

The post Top 20 NFT Influencers On Twitter You Need To Be Following To Make Money appeared first on jack of all trades master of some.

]]>
Best Men’s Fashion Blog Links http://jackofalltradesmasterofsome.com/blog/2021/12/26/beset-mens-fashion-blog-links/ Sun, 26 Dec 2021 19:40:27 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1223 Cheap Business Casual Capsule Wardrobe for Men The Capsule Wardrobe Guide for men 2022 Best Male Fashion Watches on Amazon Under $50 The Guide on How to Care for Men’s Sweaters The Basic Bastard Wardrobe Guide Basic Layering Tips for Men Affordable Wedding Bands For Men: The Best Cheap Wedding Bands Ideal Men’s Haircut for ... Read more

The post Best Men’s Fashion Blog Links appeared first on jack of all trades master of some.

]]>
  • Cheap Business Casual Capsule Wardrobe for Men
  • The Capsule Wardrobe Guide for men 2022
  • Best Male Fashion Watches on Amazon Under $50
  • The Guide on How to Care for Men’s Sweaters
  • The Basic Bastard Wardrobe Guide
  • Basic Layering Tips for Men
  • Affordable Wedding Bands For Men: The Best Cheap Wedding Bands
  • Ideal Men’s Haircut for Every Face Type
  • Beset Men’s Fashion Blog Links

    The post Best Men’s Fashion Blog Links appeared first on jack of all trades master of some.

    ]]>
    Copy data to and from Salesforce with Azure Data Factory http://jackofalltradesmasterofsome.com/blog/2021/06/04/copy-data-to-and-from-salesforce-with-azure-data-factory/ Fri, 04 Jun 2021 22:56:07 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1188 Salesforce is a key tool in many organizations, so it is important to be sure the data in the tool is tightly integrated to other systems and moved to a data warehouse for analytics. Here is how to Copy data to and from Salesforce with Azure Data Factory. Side Note: Want to learn SQL or ... Read more

    The post Copy data to and from Salesforce with Azure Data Factory appeared first on jack of all trades master of some.

    ]]>
    Salesforce is a key tool in many organizations, so it is important to be sure the data in the tool is tightly integrated to other systems and moved to a data warehouse for analytics. Here is how to Copy data to and from Salesforce with Azure Data Factory.

    Side Note: Want to learn SQL or Python for free. In less then 10 minutes a day and less than an hour total? Signup for my free classes delivered daily right to your email inbox for free!

    Now back to the article…

    1. Log into Salesforce as an admin account and navigate to settings.
    • Reset your security token on the left hand side menu under “My Personal Information”. This will email you a token that will be used in later steps.
    • Navigate to “Setup”
    • Navigate to “Setup -> Permission Sets -> (name) -> System permissions” and edit the “Security Center Integration User” and then the “System Permissions”
    • Verify that Enable “API Enabled”

    Create a Linked Service to Salesforce in Azure Data Factory

    1. Create a new Linked Service for Azure
    2. Obtain your environment name from Salesforce and log in with your credentials and service key from the previous steps. You should be able to now test your connection to verify it works. you will need the security token that was emailed to you as well in this step.

    Create a Azure Data Factory Dataset to Salesforce

    1. Create a new dataset in ADF and Select Salesforce
    • Point to the linked Service you created for Salesforce in the previous step. Select the table you wish to interact with. In this case, it will be the Contact table. Hit preview data to ensure the connection is working and set up correctly. Name the dataset and Save to complete.

    Create a pipeline to move Data

    The last step is the easy part. Create copy commands in the Pipelines to move data in and out of Salesforce. This can be used to update contacts, accounts, leads and other values automatically form other systems and processes.

    Copy data to and from Salesforce with Azure Data Factory

    Get Salesforce here

    Get Azure here

    Enjoying Learning about Azure and Azure Data Factory? Check out some of my online classes here or how to set up a run time to move data on-prem.

    The post Copy data to and from Salesforce with Azure Data Factory appeared first on jack of all trades master of some.

    ]]>
    What is an NFT (Non-Fungible Token)? http://jackofalltradesmasterofsome.com/blog/2021/03/04/what-is-an-nft-non-fungible-token/ Thu, 04 Mar 2021 15:59:58 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1151 What is an NFT Non-Fungible Token? What is an NFT (Non-Fungible Token)? Digital art has become one of the most popular forms of art in the last decade. You can hang it on digital frames or even use as your computer desktop wallpaper, of just store it as a digital asset in your investment portfolio. ... Read more

    The post What is an NFT (Non-Fungible Token)? appeared first on jack of all trades master of some.

    ]]>
    What is an NFT Non-Fungible Token?

    What is an NFT (Non-Fungible Token)? Digital art has become one of the most popular forms of art in the last decade. You can hang it on digital frames or even use as your computer desktop wallpaper, of just store it as a digital asset in your investment portfolio. This art is now considered non-fungible tokens, or NFTs, a new method for digitally buying and selling art and other media. These cryptoassets are the latest use of the blockchain and allow you to create art that can be digitally tracked as an “original” and “limited quantity” item making it have more values and impossible to steal or replicate without being deemed a false duplicate. Think of it as owning the Mona Lisa opposed to owning a poster of the Mona Lisa. Check out my first collection to get an idea of what we will be talking about using AI generated Art I created!

    What is Non-Fungible Token?

    Non-fungible token or NFTs are cryptocurrencies or blockchain-based assets that are not limited to one specific use, but that can be used in many different ways, such as a medium of exchange, a vehicle of exchange, a payment mechanism, a crowd-funding mechanism, or a digital ledger for data storage and security. Non-fungible assets have unique features that differentiate them from traditional currency or physical commodities. Bitcoin is the best known of these assets, but they are not limited to cryptocurrencies. NFTs exist as a form of digital currency or cryptoasset which can be used to obtain or transfer an asset in a variety of forms. These can be as simple as buying a song on iTunes or even a brand new NFT token. They can be used in almost every sense of the word.

    What is Digital Art?

    Art has always been something we look at in a museum and either wanted to own or paint ourselves and art has always been one of the most expensive forms of collecting. Physical Art has traditionally been come kind of medium (paint, pencils, charcoal, etc.) on a surface or canvas. Digital art on the other hand is now one of the most common from of art. Digital art is art created using a digital device such as a computer, table or some other digital medium. You can create digital art using photoshop, MS paint, Procreate, or 1000’s of other tools based on your style and preference.

    More Digital Art

    Why NFTs are Important

    What is digital art without a backing currency that is liquid and can be easily traded? That is where the NFTs come into play. NFTs allow you to own a piece of art, make it your asset, and sell or trade it on the blockchain. With so many different artists looking for ways to get their artwork in the hands of people all over the world, why not do it through the digital economy? This allows artist to track and trade their work and prevent it from being replicated without the certificate of authenticity that the crypto backend provides thus empowering artist to control the distribution of their work and actually make a living on the sales and auctions of their work.

    How to Buy NFTs

    There are many digital art platforms that allow you to buy these assets. Popular ones include OpenSea.io, or Nifty Gateway. You can easily trade these “art” tokens via exchanges using the Ethereum digital asset as the currency. A Note About the Cryptocurrency Community Cryptocurrency is quickly gaining popularity amongst everyday people. The older generations are starting to take notice, and the younger generations are warming up to it as well.

    Conclusion

    Today’s news regarding the market has made a lot of waves. NFT is the new Bitcoin and many fear this may be a bubble, but a world where artists are now protected from having their work stolen and creating a true scarcity you would find with a physical painting creates a world where digital art can reach a caliber and value of its physical counterpart which has been long overdue. Check out my first NFT to see how digital art looks and can be bought and sold online.

    What is an NFT Non-Fungible Token?

    The post What is an NFT (Non-Fungible Token)? appeared first on jack of all trades master of some.

    ]]>
    Power BI to Yardi Real Estate Data http://jackofalltradesmasterofsome.com/blog/2021/02/16/power-bi-to-yardi-real-estate-data/ Tue, 16 Feb 2021 14:07:59 +0000 http://jackofalltradesmasterofsome.com/blog/?p=1142 Most of the basic CRE tools have a deep suite of reports and analytics baked in with standard reporting, but everyone’s business is unique, and everyone’s reporting and integration needs are slightly different. Data from a single property ERP usually needs to be combined with other data points from other systems such as Salesforce, Accounting ... Read more

    The post Power BI to Yardi Real Estate Data appeared first on jack of all trades master of some.

    ]]>
    Most of the basic CRE tools have a deep suite of reports and analytics baked in with standard reporting, but everyone’s business is unique, and everyone’s reporting and integration needs are slightly different. Data from a single property ERP usually needs to be combined with other data points from other systems such as Salesforce, Accounting Software, Construction Software and even static excel files. This is why most CRE organizations must use tools such as Power BI to conduct analytics outside of the core tools. With Yardi, the data is usually harder to get too and there is no ODBC connection, it is doable just with a few extra steps. Let’s review how to Connect Power BI to Yardi Real Estate Data.

    If the contents of this post are a outside of your wheelhouse, don’t worry, this is why I started CREXchange.io! We have free Commercial Real Estate Power BI Reports to help clients get up and off the ground with Yardi Data Integration and Advanced Power BI Custom Reports to help run your CRE business. Contact us there for more details or a demo!

    1.     Export and Restore your Yardi Database backup locally

    The first step to be able to analyze your data is going to involve getting access to your data. Most SaaS platforms including Yardi do not allow direct access to the database or data model but most do allow for you to export this data to your local instance to do as you please. You will need to build a process that imports and restores the back up database copy to a local SQL Server. This process can be tricky, but it can be done. See our whitepapers below to get more informational on this step. You will require a SQL server license and a virtual machine to host the back up.

    Connect Power BI to Yardi Real Estate Data
    Get our free Power BI reports here!

    2.     Transform the Yardi data into a usable data model

    There are thousands of tables in the database, most which you will never need. Extract the handful of tables you need for your data that pertain to occupancy, revenue, properties, tenants, units and accounting and others you may need and organize this data into a data model that can be easily sliced and diced. The model can be complex so be sure to use the right ID and ensure you have similar rules and logic tied to the type id’s and param to be sure you are getting the right data for the right timeline. If you need help with this piece, reach out for more help to get access to our proprietary real estate data model.

    3.     Connect Power BI do your Data Model

    Once you have your data model created and a process to refresh and reload this data nightly, you are ready to connect your visualization tools to being building cool new reports, analytics, and visualizations. Using Power BI’s default SQL server connector, you can connect to your database weather it is on the cloud or on-prem and import the data into Power BI. Your data model should have the foreign keys establish so that it is inherited and be able to create reports and dashboards. Here is an example of one of our Reports that enables tenant and leasing data.

    Connect Power BI to Yardi Real Estate Data
    Get our free Power BI reports here!

    4.     Connect Power BI to other data sources and combine to your Yardi real estate data

    Having Yardi or Real Estate data is never enough. Now with Power BI, you can connect to numerous data sources in your business to begin to combine data too create analytics across all your business units and lifecycle of the real estate business.

    Step 1 and 2 are the more technical heavy steps of the process. In previous post I have written white papers about getting data from Yardi nightly or even hourly using transaction log shipping, both available for download.

    Connect Power BI to Yardi Real Estate Data
    Get our free Power BI reports here!

    If the contents of this post are a outside of your wheelhouse, don’t worry, this is why I started CREXchange.io to help clients get up and off the ground with Yardi Data Integration and Advanced Power BI Custom Reports to help run your CRE business. Our reports are free with integration! Contact us there for more details or a demo!

    The post Power BI to Yardi Real Estate Data appeared first on jack of all trades master of some.

    ]]>