{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":["availability","callout","img","partial","faq","faq-item"]},"type":"markdown","userRole":"Users, Editors, and Admins","accountType":"All accounts","plan":"Exclusive to select subscription plans"},"seo":{"title":"Integrate Microsoft SQL Server with Databox","description":"Connect your SQL Server database to Databox to query, filter, and visualize your data alongside metrics from your other tools.","siteUrl":"https://help.databox.com","llmstxt":{"title":"Databox Knowledge Base","description":"Databox is a business analytics platform that consolidates data in one place, enabling real-time performance tracking and insights by mixing and matching data from various sources for a comprehensive view.","details":{"content":"This knowledge base covers everything from account setup and integrations to building Databoards, creating custom metrics, and using AI-powered features."},"sections":[{"title":"General","includeFiles":["docs/general/*.md","docs/general/visualization-types/*.md","docs/general/templates/*.md"],"excludeFiles":[]},{"title":"AI","includeFiles":["docs/ai/*.md"],"excludeFiles":[]},{"title":"Account Management","includeFiles":["docs/account-management/**/*.md"],"excludeFiles":[]},{"title":"Databoards","includeFiles":["docs/databoards/**/*.md"],"excludeFiles":[]},{"title":"Data Management","includeFiles":["docs/data-management/**/*.md"],"excludeFiles":[]},{"title":"Metrics","includeFiles":["docs/metrics/**/*.md"],"excludeFiles":[]},{"title":"Forecasts","includeFiles":["docs/forecasts/*.md"],"excludeFiles":[]},{"title":"Goals","includeFiles":["docs/goals/*.md"],"excludeFiles":[]},{"title":"Reports","includeFiles":["docs/reports/*.md"],"excludeFiles":[]},{"title":"Notifications","includeFiles":["docs/notifications/*.md"],"excludeFiles":[]},{"title":"Pricing and Billing","includeFiles":["docs/pricing-and-billing/*.md"],"excludeFiles":[]},{"title":"Mobile","includeFiles":["docs/mobile/*.md"],"excludeFiles":[]},{"title":"Support","includeFiles":["docs/support/*.md"],"excludeFiles":[]},{"title":"Integrations","includeFiles":["docs/integrations/**/*.md"],"excludeFiles":[]}],"hide":false,"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"integrate-microsoft-sql-server-with-databox","__idx":0},"children":["Integrate Microsoft SQL Server with Databox"]},{"$$mdtype":"Tag","name":"Availability","attributes":{"users":"users","accounts":"all","plans":"exclusive"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Microsoft SQL Server is a widely used relational database management system (RDBMS) that stores and retrieves structured data using T-SQL. It powers everything from small business applications to large-scale enterprise systems and is commonly deployed on-premises on Windows or Linux servers. Connecting SQL Server to Databox lets you pull data directly from your database, build custom metrics using SQL queries, and visualize business-critical figures alongside data from your other connected tools."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"Callout","attributes":{"type":"note"},"children":["This article covers self-hosted SQL Server instances. If you are using a managed SQL Server service, see the dedicated article for your provider: ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/integrate-amazon-rds-for-sql-server-with-databox"},"children":["Amazon RDS for SQL Server"]},", ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/integrate-google-cloud-for-sql-server-with-databox"},"children":["Google Cloud for SQL Server"]},", or ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/integrate-microsoft-azure-with-databox"},"children":["Microsoft Azure"]},"."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"connection","__idx":1},"children":["Connection"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["If you've already established a connection, you can ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/add-a-data-source"},"children":["reuse"]}," it to add new data sources to your Databox account."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-1-create-a-read-only-sql-server-login-for-databox","__idx":2},"children":["Step 1: Create a read-only SQL Server login for Databox"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Databox only reads data from your database — it never writes to it. Create a dedicated SQL Server login with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SELECT"]},"-only permissions scoped to the database you want to connect."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"sql","header":{"controls":{"copy":{}}},"source":"CREATE LOGIN databox WITH PASSWORD = 'your_secure_password';\nGO\nUSE your_database;\nGO\nCREATE USER databox FOR LOGIN databox;\nGO\nGRANT SELECT ON SCHEMA::dbo TO databox;\nGO\n","lang":"sql"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Replace ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["your_database"]}," with the name of the database you want to connect, and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["your_secure_password"]}," with a strong password. If you need to grant access to additional schemas, repeat the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["GRANT SELECT ON SCHEMA"]}," statement for each one."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"Callout","attributes":{"type":"note"},"children":["Avoid the following special characters in your SQL Server password, as they can cause encoding issues when establishing the connection: ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["`"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["'"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\""]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["/"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\\"]},", and spaces."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-2-configure-sql-server-to-accept-remote-connections","__idx":3},"children":["Step 2: Configure SQL Server to accept remote connections"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["By default, SQL Server may have the TCP/IP protocol disabled or listening only on a dynamic port. To allow Databox to connect, enable TCP/IP and set a fixed port using SQL Server Configuration Manager."]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Open ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["SQL Server Configuration Manager"]},". You can find it in the Start menu, or run ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SQLServerManager{version}.msc"]}," (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SQLServerManager16.msc"]}," for SQL Server 2022)."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["In the left pane, expand ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["SQL Server Network Configuration"]}," and click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Protocols for {your instance name}"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Right-click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["TCP/IP"]}," and select ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Enable"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Double-click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["TCP/IP"]}," and open the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["IP Addresses"]}," tab."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Scroll to the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["IPAll"]}," section at the bottom:",{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Clear the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["TCP Dynamic Ports"]}," field (set it to blank)."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Set ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["TCP Port"]}," to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433"]},"."]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["OK"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["In the left pane, click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["SQL Server Services"]},", right-click your SQL Server instance, and select ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Restart"]}," to apply the changes."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"Callout","attributes":{"type":"note"},"children":["If you are running a named SQL Server instance (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SERVERNAME\\INSTANCENAME"]},"), make sure the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["SQL Server Browser"]}," service is running — it is required for clients to resolve named instances. You can start it from the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["SQL Server Services"]}," node in SQL Server Configuration Manager."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-3-whitelist-the-databox-ip-address","__idx":4},"children":["Step 3: Whitelist the Databox IP address"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Open port ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433/TCP"]}," for inbound connections from the Databox IP address ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["52.4.198.118"]}," on your server's firewall. The exact steps depend on your infrastructure:"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Windows Firewall (Command Prompt, run as Administrator):"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"netsh advfirewall firewall add rule name=\"Databox SQL Server\" protocol=TCP dir=in localport=1433 action=allow remoteip=52.4.198.118\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Linux (iptables):"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"iptables -A INPUT -s 52.4.198.118/32 -p tcp --dport 1433 -j ACCEPT\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Cloud-hosted VM (AWS, Azure, Google Cloud):"]}," Add an inbound rule to your instance's network security group or firewall policy allowing TCP on port ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433"]}," from ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["52.4.198.118/32"]},"."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"step-4-enter-your-sql-server-connection-details-in-databox","__idx":5},"children":["Step 4: Enter your SQL Server connection details in Databox"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["In Databox, go to ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Data Sources > + New connection"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Search for ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Microsoft SQL Server"]}," and click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Connect"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Fill in the connection form:",{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Data source name"]}," — a label for this connection in Databox."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Server name"]}," — the hostname or IP address of your SQL Server."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Port"]}," — the port SQL Server listens on. The default is ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Username"]}," — the SQL Server login name created in ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"#step-1-create-a-read-only-sql-server-login-for-databox"},"children":["Step 1"]},"."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Password"]}," — the password for that login."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Database name"]}," (optional) — the specific database to connect to. Leave blank to connect at the server level."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Timezone"]}," — the time zone used to interpret date values in query results. Defaults to ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Etc/UTC"]},"."]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Click ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Connect"]},"."]}]},{"$$mdtype":"Tag","name":"Image","attributes":{"src":"/assets/integrate-microsoft-sql-server-with-databox_1.e360ed16ef14f64085aa7f46c02f98acf4536f6ed8bea28ffbdcac005ea7d277.4783b0ec.png","alt":"connect","withLightbox":true,"className":"ss-img"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"datasets","__idx":6},"children":["Datasets"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The Microsoft SQL Server integration supports the creation of ",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/understanding-datasets"},"children":["datasets"]},", which allow you to define and shape the specific data you want to use for reporting in Databox. Datasets make it easier to focus on the most relevant information, enabling you to filter, visualize, and analyze metrics across projects, teams, and clients without writing complex queries each time."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"steps-to-create-a-dataset","__idx":7},"children":["Steps to create a dataset:"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Select a table"]},": Pick the appropriate schema within that database."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Select columns"]},": Browse and select the specific columns (fields) from your tables or views to include in your dataset. These columns define the structure and content of your dataset."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"optional-write-sql","__idx":8},"children":["Optional: Write SQL"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For more advanced use cases, you can write a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["custom SQL query"]}," instead of selecting columns manually. This allows you to:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Join multiple tables"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Apply filters and aggregations"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Format or transform data before importing it into Databox"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Your query must return a valid tabular result to be used as a dataset."]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"additional-resources","__idx":9},"children":["Additional resources"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://learn.microsoft.com/en-us/sql/sql-server/"},"children":["SQL Server documentation"]}," — Official Microsoft documentation hub covering installation, T-SQL syntax, security, replication, and release notes for all supported versions."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"https://learn.microsoft.com/en-us/sql/tools/configuration-manager/sql-server-configuration-manager-help"},"children":["SQL Server Configuration Manager"]}," — Reference for managing SQL Server services, network protocols, and client configuration."]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"resources","__idx":10},"children":["Resources"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For comprehensive details on metrics, data availability, templates, specifications, usage guidelines, and other key information, refer to the resources listed below."]},{"$$mdtype":"Tag","name":"Cards","attributes":{"columns":4,"cardMinWidth":240},"children":[{"$$mdtype":"Tag","name":"IntegrationResources","attributes":{"integrationKey":"microsoft-sql-server","hideMetrics":true},"children":[]}]},{"$$mdtype":"Tag","name":"Faq","attributes":{},"children":[{"$$mdtype":"Tag","name":"FaqItem","attributes":{"question":"Can I connect a named SQL Server instance?"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Yes. For a named instance (e.g., ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SERVERNAME\\INSTANCENAME"]},"), enter the full instance name in the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Server name"]}," field and ensure the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["SQL Server Browser"]}," service is running on your server. Alternatively, if you have configured the named instance to listen on a fixed port, enter that port in the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Port"]}," field instead of the default ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433"]},"."]}]},{"$$mdtype":"Tag","name":"FaqItem","attributes":{"question":"What should I do if Databox cannot connect to my SQL Server?"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Check the following in order:"]},{"$$mdtype":"Tag","name":"ol","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["TCP/IP is enabled in SQL Server Configuration Manager and the instance is listening on port ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The SQL Server service was restarted after enabling TCP/IP or changing the port"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Your firewall permits inbound TCP traffic on port ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1433"]}," from ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["52.4.198.118"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The SQL Server login exists at the server level and a corresponding user with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SELECT"]}," permissions exists in the target database"]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[" "]},{"$$mdtype":"Tag","name":"Cards","attributes":{"columns":4,"cardMinWidth":160},"children":[{"$$mdtype":"Tag","name":"FooterCard","attributes":{"title":"Ask Genie","icon":"genie","to":"https://app.databox.com/genie","variant":"elevated"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Get instant answers or help with your data using the in-app AI assistant."]}]},{"$$mdtype":"Tag","name":"FooterCard","attributes":{"title":"Talk to an expert","icon":"assistance","to":"https://meetings.hubspot.com/databox-meeting/account-management","variant":"elevated"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["For customers: Get help with your setup, strategy, or making the most of Databox."]}]},{"$$mdtype":"Tag","name":"FooterCard","attributes":{"title":"Book a demo","icon":"eye-open","to":"https://meetings.hubspot.com/databox-meeting/ref-knowledge-base","variant":"elevated"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["New to Databox? See how it works and get guidance on getting started."]}]},{"$$mdtype":"Tag","name":"FooterCard","attributes":{"title":"Send an email","icon":"help","to":"mailto:help@databox.com","variant":"elevated"},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Reach out to support for help with your account, data, or technical issues."]}]}]}]},"headings":[{"value":"Integrate Microsoft SQL Server with Databox","id":"integrate-microsoft-sql-server-with-databox","depth":1},{"value":"Connection","id":"connection","depth":2},{"value":"Step 1: Create a read-only SQL Server login for Databox","id":"step-1-create-a-read-only-sql-server-login-for-databox","depth":3},{"value":"Step 2: Configure SQL Server to accept remote connections","id":"step-2-configure-sql-server-to-accept-remote-connections","depth":3},{"value":"Step 3: Whitelist the Databox IP address","id":"step-3-whitelist-the-databox-ip-address","depth":3},{"value":"Step 4: Enter your SQL Server connection details in Databox","id":"step-4-enter-your-sql-server-connection-details-in-databox","depth":3},{"value":"Datasets","id":"datasets","depth":2},{"value":"Steps to create a dataset:","id":"steps-to-create-a-dataset","depth":3},{"value":"Optional: Write SQL","id":"optional-write-sql","depth":3},{"value":"Additional resources","id":"additional-resources","depth":3},{"value":"Resources","id":"resources","depth":2}],"frontmatter":{"slug":"integrate-microsoft-sql-server-with-databox","seo":{"title":"Integrate Microsoft SQL Server with Databox","description":"Connect your SQL Server database to Databox to query, filter, and visualize your data alongside metrics from your other tools."},"keywords":{"includes":["Microsoft SQL Server integration","connect SQL Server to Databox","SQL Server dataset","SQL Server custom SQL query","SQL Server read-only login","SQL Server remote connection","whitelist Databox IP SQL Server","SQL Server cannot connect","SQL Server TCP/IP Databox","SQL Server port 1433"]},"metadata":{"userRole":"Users, Editors, and Admins","accountType":"All accounts","plan":"Exclusive to select subscription plans"}},"lastModified":"2026-04-17T19:27:17.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/integrate-microsoft-sql-server-with-databox","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}