Here's a few of the new posts today on the forums. To see more, visit the forums.
|
SQL Server 2017 - Administration |
waittypes in sql server - Hi All, We have a UAT sql instance running on SQL 2017 EE CU23. 16cpu's - 256GBRAM max server memory set to 230GB max degree of parallelism set to default 0. At database level MAXDOP is set to 4. Tempdb configuration : 8 files and 1 logfile. When load testing is done, we […] |
SQL Server 2016 - Administration |
SQL 2016 updates - Hello, so Microsoft has two Feb 2023 SQL updates listed under the same CVE. 5021128 Security update for SQL Server 2016 SP3 Azure Connect Feature Pack+GDR, and 5021129 Security update for SQL Server 2016 SP3+GDR. I support three 2016 SQL VMs within VMWare. Question; why two updates for 2016 SQL, as they both address the […] |
SQL Server 2016 - Development and T-SQL |
Additional records needed with Using MAX function on Most Recent Record - Hello - I would like to show a record for a patients last visit regardless of what doctor they saw. If patient saw a doctor who is not their primary doctor on their last visit by date, show the record and then show the record of the last time they saw their primary doctor. If […] |
Development - SQL Server 2014 |
Update row using different steptype within same order - Hi All, been a while since I posted. Facing weird calculation, I cant wrap my head around on how to google it. I have a data that looks like this (simplified): Need to calculate Lead Time, rules as follow: For StepType 1: If Actual is empty: Today minus Steptype 10 "schedule" date Actual is not […] |
SQL Server 2019 - Administration |
Semaphore Errors in Variety of Applications - Hello - about 2 months ago our users started to receive semaphore errors in a variety of applications we run with SQL Server backends, including SSMS. All of our servers are hosted in Azure and our SQL servers are traditional server setups, we are not using Azure SQL managed instances or databases. Resources on the […] |
Download Sql Server 2019 - Hi, I am trying to download Sql Server 2019 enterprise edition, but I am not able to find a link to download the .exe file. Can someone help me with it? Thanks. |
Right way and SSIS sql server integration services projects instalation - Hi there, i ´m new in this roads, and i don´t see the right topic to wrote this . I'm connected to an instance on a standard SQL 2019 server. I installed SQL Dev 2019 on my pc and visual studio 2022 community, but I can't install ssis because during the installation it doesn't recognize […] |
SQL Server 2019 - Development |
Join 4 Columns of Date/Time together - Hi Forumers, I have a file with 4 Columns pertaining to Date & Timestamp Values. I want to join them to show the 4 Columns as one Column with forward slashes between the Year/Month/Day and then a Colon between the Year/Month/Day & the Timestamp field. An example is attached, thanks for your help. |
SQL - Grouping SQL output in 5 minute intervals - I have a dataset that has a date column every 1 minute. I wanted to group the information to have the data "organized" every 5 minutes and average the SellCount column. For example, I have 5 records, 1 for minute 1, another for minute 2, another for minute 3, another for minute 4 and finally […] |
Reporting Services |
how to test https for SSRS reports in SSRS web portal - We have configured to use https on the SSRS server with port 443. so for the web portal URL is How can I test the https is working or not from SSRS web portal? Thanks |
PL/SQL to SSRS: how to migrate report events----- From ORB to SSRS - Hi everyone, I was wondering if there is an equivalent of the "after report" and "before report" events that existe in Oracle Report Builder. In ORB, we can use these events to handle errors or update parameters and to much thing before or after report execution in PL/SQL. Can anyone tell me if SSRS has […] |
Design Ideas and Questions |
Help with database design - Hi all, I'vebeen using an excel spreadsheet to capure info on oranistions and vehcile related data and would like to tranfer this into the Microsoft dataverse environment. As you can probably tell, my database skills aren't as good as my excel skills. I'd be grateful if someone could cast there eyes over the design below […] |
SQL Server 2022 - Administration |
DBCC error with sys.Syscolpars table - Consistency error in DB. 1 page from sys.syscolpars table is missing. There is no any impact but the thing is can't able to upgrade the DB from 2008 to higher version. Backup restore fails. Old good backups are not available. As this is a sys schema table so needed DAC connection to query it. But […] |
SQL Server 2022 - Development |
Random Number Generating - Hi All, I need to generate random unique numbers for 10 million records. Here is my requirement The numbers should begin with 11. The minimum length of the number should be 14 The maximum length of the number should be 25 Need to generate the random unique numbers for 10 million records. Thanks Sathish Kumar […] |
Please help on SQL Code - You are given a table of people’s openions about places in a city: Create table opinions ( Id int not null primary key, Place varchar(255) not null, Opinion varchar (255) not null ); Each row contains place’s name and an opinion about it, which is eaither recommended or not recommended. Your task is to generate […] |