Viewing 15 posts - 1,411 through 1,425 (of 4,820 total)
DELETE FROM #Table
WHERE ID in (
SELECT r1.id...
April 27, 2018 at 8:58 am
April 26, 2018 at 8:56 am
Using the DelimitedSplit8K function appears to whip the pants off of the other method. I couldn't get any duration at all from even a datetime2(7) = SYSDATETIME() computation of DATEDIFF. ...
April 26, 2018 at 8:52 am
Have you thought this through? If you had such a CHECK constraint in place, how would you ever add anything new to the table? Assuming existing data already added up...
April 26, 2018 at 6:00 am
April 25, 2018 at 2:59 pm
soldout6000 - Wednesday, April 25, 2018 9:42 AMSteve,
Up to how many decimals places are allowed in ssrs?
SQL Server supports data types...
April 25, 2018 at 2:54 pm
April 25, 2018 at 2:37 pm
Not that you can't do computation in T-SQL, but if you're looking to put formulas into columns and expect solutions, I'd have to question your judgment skills. That kind of...
April 25, 2018 at 2:04 pm
April 25, 2018 at 1:59 pm
When you join you'll have to CONVERT the nvarchar value to varchar and then to varbinary.
April 25, 2018 at 9:13 am
Let's add the displayed data and the code to do it:CREATE TABLE #Table (
ID int NOT NULL PRIMARY KEY CLUSTERED,
OrigID int NOT NULL,
Col1 int NOT NULL,
Col2...
April 25, 2018 at 8:55 am
April 25, 2018 at 8:03 am
April 24, 2018 at 2:47 pm
Viewing 15 posts - 1,411 through 1,425 (of 4,820 total)