SteemSQL SSMS simple install guide

in #sql6 years ago (edited)

SteemSQL is a publicly available Microsoft SQL database, it should contain all the Steem blockchain data. Very valuable information, if you know how to write SQL.

This post will guide you through the setting up DBsteem in Server Management Studio, and get you started querying.

First download SQL Server Management Studio (SSMS) aprox 800 MB
Run SSMS as administrator.

Use these credientials

Login Steemit
Pass Steemit

STEEMSQL1.PNG

Check trust server certificate

STEEMSQL2.PNG

Now you should be connected and able to write a query...

Lets do a test

SELECT TOP (100) [ID]
,[tx_id]
,[type]
,[from]
,[to]
,[amount]
,[amount_symbol]
,[memo]
,[request_id]
,[timestamp]
FROM [DBSteem].[dbo].[TxTransfers]
order by amount desc

I use top 100 to reduce the load time, and i order by desc to get the highest amount first.

You should get something like this

STEEMSQL3.PNG

Coin Marketplace

STEEM 0.27
TRX 0.13
JST 0.032
BTC 62802.08
ETH 2941.62
USDT 1.00
SBD 3.59