HannuPlumbing122

https://hannuqualityplumbing.com/
Hannu Quality Plumbing is a full-service plumbing company. Our highest-quality licensed plumbers are some of the most qualified service professionals.
We are a Christian based plumbing company with over twenty years of experience in the industry. Whether it’s new construction, additions, remodels, service and repair, sewers and water, or commercial projects we have the experience, equipment, and manpower to get the job done right and timely. We strive to model the golden rule found in Matthew 7:12 of treating others how you want to be treated. Our company motto is also found in the Bible in Matthew 5:41 which teaches us to “go the extra mile.

It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

Monday Monitor Tips: AI Query Analysis

By

AI is everywhere. It’s in the news, it’s being added to every product, management...

AI: Blog a Day – Day 8: RAG – Retrieval Augmented Generation

By

RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...

AI: Blog a Day – Day 7: Vector and Vector Databases

By

Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...

Read the latest Blogs

Forums

would it be so terrible to install ssms on a few user desktops?

By stan

Hi, ssms is free here.   I can think of other reasons to do this...

I'm thinking about submitting some articles

By Doctor Who 2

I've written some documentation on using different Markdown types of files on GitHub. It's...

Not Just an Upgrade

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Not Just an Upgrade

Visit the forum

Question of the Day

Restoring On Top I

I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?

USE Master
BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak'
GO

USE DNRTest
GO
CREATE TABLE MyTest(myid INT)
GO
USE master
RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACE

See possible answers