Viewing 15 posts - 2,896 through 2,910 (of 7,609 total)
March 19, 2019 at 2:23 pm
Something like this:
SET ANSI_NULLS ON;
SET QUOTED_IDENTIFIER ON;
GO
CREATE PROCEDURE [dbo].[AppTracker_Milestone_Dates_Browse_SP]
@UserName VARCHAR(51),
@DecisionDate DATE,
@State...
March 19, 2019 at 10:23 am
March 19, 2019 at 10:20 am
March 18, 2019 at 2:41 pm
Maybe two separate hashes: (1) all the other columns and (2) the 4K column alone?
March 14, 2019 at 1:15 pm
March 13, 2019 at 3:34 pm
Trim it within the SELECT statement:
--insert records into $Sheet1 of Template
SET @SqlCmd =
'INSERT OPENDATASOURCE
( ''Microsoft.ACE.OLEDB.12.0'',''Data Source=' + @ServerShare + '\' + @ExportFileName...
March 13, 2019 at 10:24 am
There should be some way to copy the file even with the "busy" flag on. Then open the copy, not the original.
That is, the logic becomes:
check for...
March 12, 2019 at 12:24 pm
For 3 varchar values, it's tricky, and I'd have to do some testing/experimenting first.
For 3 numeric values, it's easy to list all 3.
For only 2 values of...
March 7, 2019 at 3:49 pm
It looked you also wanted to list the specific values found.
That's easy for two values, much trickier for 3 (3 numeric values is easy, but not 3 char...
March 7, 2019 at 3:11 pm
SELECT pid
FROM @table1
GROUP BY pid
HAVING COUNT(DISTINCT gcode) = 3
I don't understand why you don't have p1 and p3 in your result set.
March 7, 2019 at 2:19 pm
Viewing 15 posts - 2,896 through 2,910 (of 7,609 total)