Viewing 15 posts - 31 through 45 (of 7,608 total)
Is there any circumstances where you would allow code with a 'SELECT * ' to go into production?
I believe this should NEVER happen. There is a discussion that...
February 21, 2025 at 8:39 pm
SELECT
LEFT(Bname, CHARINDEX(' ', BName) - 1) AS BName,
MAX(CASE WHEN BName LIKE '% Start%' THEN StartDate ELSE '' END) AS...
February 21, 2025 at 6:02 pm
I don't know of a super-slick way to do this off the top of my head:
SELECT DISTINCT run_date, run_time,
CAST(CAST(run_date AS varchar(8)) +...
February 10, 2025 at 3:32 pm
OOPS, SORRY, I did it back'ards.
SELECT [Profile ID]
FROM dbo.table_name
GROUP BY [Profile ID]
HAVING COUNT(DISTINCT [Customer ID]) =
(SELECT COUNT(DISTINCT [Customer ID]) FROM dbo.table_name)
February 7, 2025 at 7:18 pm
SELECT [Customer ID]
FROM dbo.table_name
GROUP BY [Customer ID]
HAVING COUNT(DISTINCT [Profile ID]) = (SELECT COUNT(DISTINCT [Profile ID]) FROM dbo.table_name)
February 7, 2025 at 3:08 pm
You should definitely switch the key order on the lookup table, i.e., not:
PRIMARY KEY CLUSTERED ( iid, cart_id )
but instead do this:
PRIMARY KEY CLUSTERED ( cart_id, iid )
February 3, 2025 at 5:21 pm
You could also likely work around changing the db code using views, if changing the code is just too difficult to do quickly by hand. Typically that doesn't cause performance...
January 30, 2025 at 10:08 pm
Yes.
EXEC sys.sp_rename 'dbo.table_name.column_name', 'new_column_name', 'COLUMN'
for each table column that you want to rename.
January 30, 2025 at 7:08 pm
OOPS, quite right, I should have used ">=" and "<" rather than "BETWEEN".
January 11, 2025 at 2:43 am
I have NOT uber-tuned this, just trying to get something that works (so many people here obsess over every microsecond). If you have a lot of rows, more tuning might...
January 10, 2025 at 11:03 pm
SELECT G.Gage_ID 'ID', G.Model_No 'Model', L.LocationName 'Room', D.GageDescriptionName 'Desc',C.Calibration_DateTime 'Cal', G.Gage_SN 'S/N', S.StatusName 'Status', C.NextDue 'Due'
FROM GAGETRAK.Gages G
JOIN GAGETRAK.Locations L ON G.StorageLocation_RID_FK=L.Location_RID
JOIN GAGETRAK.GageDescriptions D ON G.GageDescription_RID_FK=D.GageDescription_RID
JOIN GAGETRAK.Status S ON G.Status_RID_FK=S.Status_RID...
January 8, 2025 at 11:44 pm
that lookup went into one of many nested loop join objects in the plan
(Nested) loop joins are a concern, particularly if SQL doesn't properly estimate the number of...
January 8, 2025 at 7:32 pm
If you select the query code, right-click on it, and then select "Display Estimated Execution Plan", you should see any recommended index
January 7, 2025 at 8:49 pm
SELECT B.*, CASE WHEN A.ServerName IS NULL THEN 'Not present in Table A'
ELSE 'Present in Table A' END AS Comment
FROM TableB B
LEFT...
January 3, 2025 at 8:07 pm
ALTER procedure db.ToolReduceLogFileSize
@db_name nvarchar(128),
@size_mb int = 1024
AS
SET NOCOUNT ON;
DECLARE @sql nvarchar(max);
SET @sql = 'USE [' + @db_name + '];...
January 2, 2025 at 9:06 pm
Viewing 15 posts - 31 through 45 (of 7,608 total)