home.social

#sqlserver — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #sqlserver, aggregated by home.social.

  1. PSBlitz 6.1.0 is live
    New checks for Backups (RPO/RPO est.) & Instance Security (beta).
    ImportExcel support
    Up to 70% faster Excel exports
    Retry logic for transient errors

    Read the full breakdown: vladdba.com/2026/05/28/psblitz
    Repo: github.com/VladDBA/PSBlitz

    #sqlserver #sqldba #powershell #microsoftsqlserver #mssqlserver #mssql #mssqldba #dba #PSBlitz #MVPBuzz

  2. PSBlitz 6.1.0 is live
    New checks for Backups (RPO/RPO est.) & Instance Security (beta).
    ImportExcel support
    Up to 70% faster Excel exports
    Retry logic for transient errors

    Read the full breakdown: vladdba.com/2026/05/28/psblitz
    Repo: github.com/VladDBA/PSBlitz

    #sqlserver #sqldba #powershell #microsoftsqlserver #mssqlserver #mssql #mssqldba #dba #PSBlitz #MVPBuzz

  3. PSBlitz 6.1.0 is live
    New checks for Backups (RPO/RPO est.) & Instance Security (beta).
    ImportExcel support
    Up to 70% faster Excel exports
    Retry logic for transient errors

    Read the full breakdown: vladdba.com/2026/05/28/psblitz
    Repo: github.com/VladDBA/PSBlitz

    #sqlserver #sqldba #powershell #microsoftsqlserver #mssqlserver #mssql #mssqldba #dba #PSBlitz #MVPBuzz

  4. It's been said that experience is a comb life gives you after your hair has fallen out.

    #SQLServer
    #SQL
    #Development
    #DBA

  5. It's been said that experience is a comb life gives you after your hair has fallen out.

    #SQLServer
    #SQL
    #Development
    #DBA

  6. It's been said that experience is a comb life gives you after your hair has fallen out.

    #SQLServer
    #SQL
    #Development
    #DBA

  7. It's been said that experience is a comb life gives you after your hair has fallen out.

    #SQLServer
    #SQL
    #Development
    #DBA

  8. It's been said that experience is a comb life gives you after your hair has fallen out.

    #SQLServer
    #SQL
    #Development
    #DBA

  9. Another reason: object types sometimes change. For years my organization had a table named dbo.tbl_FooBar.

    To overcome performance problems involved with populating & syncing the table, it was replaced with a VIEW. The old table was referenced in too many places to warrant changing the object name. So we didn't.

    And now we have a VIEW named dbo.tbl_FooBar. And that's just messed up.

    #SQLServer
    #Databases
    #DBA

  10. Another reason: object types sometimes change. For years my organization had a table named dbo.tbl_FooBar.

    To overcome performance problems involved with populating & syncing the table, it was replaced with a VIEW. The old table was referenced in too many places to warrant changing the object name. So we didn't.

    And now we have a VIEW named dbo.tbl_FooBar. And that's just messed up.

    #SQLServer
    #Databases
    #DBA

  11. Another reason: object types sometimes change. For years my organization had a table named dbo.tbl_FooBar.

    To overcome performance problems involved with populating & syncing the table, it was replaced with a VIEW. The old table was referenced in too many places to warrant changing the object name. So we didn't.

    And now we have a VIEW named dbo.tbl_FooBar. And that's just messed up.

    #SQLServer
    #Databases
    #DBA

  12. Another reason: object types sometimes change. For years my organization had a table named dbo.tbl_FooBar.

    To overcome performance problems involved with populating & syncing the table, it was replaced with a VIEW. The old table was referenced in too many places to warrant changing the object name. So we didn't.

    And now we have a VIEW named dbo.tbl_FooBar. And that's just messed up.

    #SQLServer
    #Databases
    #DBA

  13. Another reason: object types sometimes change. For years my organization had a table named dbo.tbl_FooBar.

    To overcome performance problems involved with populating & syncing the table, it was replaced with a VIEW. The old table was referenced in too many places to warrant changing the object name. So we didn't.

    And now we have a VIEW named dbo.tbl_FooBar. And that's just messed up.

    #SQLServer
    #Databases
    #DBA

  14. Why?

    For probably 20 years or so, development tools (like SQL Server Management Studio and Visual Studio) have been sophisticated enough to indicate an object's type via tool tips (they usually pop up when you hover the mouse cursor/icon over the object's name).

    You can see an SSMS example in the attached picture. Microsoft didn't use Hungarian notation, and it's not necessary--we clearly see the object is a VIEW.

    #SQLServer
    #Databases
    #DBA

  15. Why?

    For probably 20 years or so, development tools (like SQL Server Management Studio and Visual Studio) have been sophisticated enough to indicate an object's type via tool tips (they usually pop up when you hover the mouse cursor/icon over the object's name).

    You can see an SSMS example in the attached picture. Microsoft didn't use Hungarian notation, and it's not necessary--we clearly see the object is a VIEW.

    #SQLServer
    #Databases
    #DBA

  16. Why?

    For probably 20 years or so, development tools (like SQL Server Management Studio and Visual Studio) have been sophisticated enough to indicate an object's type via tool tips (they usually pop up when you hover the mouse cursor/icon over the object's name).

    You can see an SSMS example in the attached picture. Microsoft didn't use Hungarian notation, and it's not necessary--we clearly see the object is a VIEW.

    #SQLServer
    #Databases
    #DBA

  17. Why?

    For probably 20 years or so, development tools (like SQL Server Management Studio and Visual Studio) have been sophisticated enough to indicate an object's type via tool tips (they usually pop up when you hover the mouse cursor/icon over the object's name).

    You can see an SSMS example in the attached picture. Microsoft didn't use Hungarian notation, and it's not necessary--we clearly see the object is a VIEW.

    #SQLServer
    #Databases
    #DBA

  18. Why?

    For probably 20 years or so, development tools (like SQL Server Management Studio and Visual Studio) have been sophisticated enough to indicate an object's type via tool tips (they usually pop up when you hover the mouse cursor/icon over the object's name).

    You can see an SSMS example in the attached picture. Microsoft didn't use Hungarian notation, and it's not necessary--we clearly see the object is a VIEW.

    #SQLServer
    #Databases
    #DBA

  19. As the saying in IT goes, "Naming things is hard". Coming up with a naming convention everyone agrees on is even more difficult.

    For SQL Server database objects, one 'rule' I try to always follow is to *not* use Hungarian notation, which involves prefixing an object name to indicate the object type. For example a "tbl_" prefix for tables or "vw_" for views.

    #SQLServer
    #Databases
    #DBA

  20. As the saying in IT goes, "Naming things is hard". Coming up with a naming convention everyone agrees on is even more difficult.

    For SQL Server database objects, one 'rule' I try to always follow is to *not* use Hungarian notation, which involves prefixing an object name to indicate the object type. For example a "tbl_" prefix for tables or "vw_" for views.

    #SQLServer
    #Databases
    #DBA

  21. As the saying in IT goes, "Naming things is hard". Coming up with a naming convention everyone agrees on is even more difficult.

    For SQL Server database objects, one 'rule' I try to always follow is to *not* use Hungarian notation, which involves prefixing an object name to indicate the object type. For example a "tbl_" prefix for tables or "vw_" for views.

    #SQLServer
    #Databases
    #DBA

  22. As the saying in IT goes, "Naming things is hard". Coming up with a naming convention everyone agrees on is even more difficult.

    For SQL Server database objects, one 'rule' I try to always follow is to *not* use Hungarian notation, which involves prefixing an object name to indicate the object type. For example a "tbl_" prefix for tables or "vw_" for views.

    #SQLServer
    #Databases
    #DBA

  23. As the saying in IT goes, "Naming things is hard". Coming up with a naming convention everyone agrees on is even more difficult.

    For SQL Server database objects, one 'rule' I try to always follow is to *not* use Hungarian notation, which involves prefixing an object name to indicate the object type. For example a "tbl_" prefix for tables or "vw_" for views.

    #SQLServer
    #Databases
    #DBA

  24. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #mssql #sqlserver #selfhosting #selfhosted #apache #freetds

  25. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #mssql #sqlserver #selfhosting #selfhosted #apache #freetds

  26. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #mssql #sqlserver #selfhosting #selfhosted #apache #freetds

  27. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide) This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS. What is Microsoft SQL Server? Microsoft SQL ... Continued 👉 #selfhosted #apache #freetds #mssql #selfhosting #sqlserver

    How to Install Microsoft SQL S...

  28. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #selfhosted #apache #mssql #freetds #selfhosting #sqlserver

  29. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #selfhosted #apache #mssql #freetds #selfhosting #sqlserver

  30. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #selfhosted #apache #mssql #freetds #selfhosting #sqlserver

  31. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #selfhosting #mssql #freetds #apache #sqlserver #selfhosted

  32. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #selfhosting #mssql #freetds #apache #sqlserver #selfhosted

  33. How to Install #Microsoft SQL Server on #Ubuntu #VPS (10 Minute Quick-Start Guide)

    This article provides a guide for how to install Microsoft SQL Server on Ubuntu VPS.
    What is Microsoft SQL Server?
    Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It is used to store, retrieve, manage, and analyze data in a structured way using SQL (Structured ...
    Continued 👉 blog.radwebhosting.com/install #selfhosting #mssql #freetds #apache #sqlserver #selfhosted