Viewing 15 posts - 226 through 240 (of 5,111 total)
Hi Thom,
Unfortunately, I have too old version - SQL Server 2008 🙂
Why did you post in the SQL Server 2016 forum then? 2008 has been completely unsupported since mid...
March 10, 2022 at 5:02 pm
Any news on fixing the spam issue as yet? Every post apart from 1 on the "Active Threads" page just now was a spam post for the same telephone number....
March 10, 2022 at 12:22 pm
COALESCE
is a shorthand CASE
expression, and a CASE
expression uses data type precedence to determine the data type for the returned value. With column names like VendorName
and...
March 10, 2022 at 9:06 am
Can you use FORMAT? I have only ever used it in ad-hoc queries to make numbers easier to read, and I can't vouch for its performance, but it seems...
March 10, 2022 at 8:46 am
Any chance you can convert that multiline scalar function to an inline table value function? Multi-line scalar functions can perform poorly, and your function has a WHILE
inside it, which...
March 9, 2022 at 9:03 am
Adding a PK to the table, based on the procedure's name, probably make sense anyway. This stops the unlikely scenario of 2 people starting the process almost simultaneously and when...
March 8, 2022 at 4:21 pm
One method would be to use DelimitedSplit8K_LEAD , which returns the ordinal position of the string, and then you can easily get the Nth value:
SELECT *
FROM...
March 7, 2022 at 11:57 am
I changed the schema to allow NOT NULL in my matching columns. Still i get the same output.
This wasn't a suggestion; changing columns that don't allow NULL
values to...
March 4, 2022 at 1:42 pm
Honestly, adding a new column to be a primary key candidate (such as an a column with the IDENTITY
property) is the easy part here. Cleaning up the duplicate rows...
March 3, 2022 at 11:45 am
Adding a new column that's a Primary key isn't going to stop those duplicate rows anyway; to stop that you likely need to also implement a UNIQUE INDEX
. As for...
March 3, 2022 at 9:14 am
Any one got any ideas why the discussion post for today's article, Can We Please Stop Sending Passwords Over the Wire?, has been marked as "spam"?
March 2, 2022 at 9:51 am
Apart from none of that will work on Windows 10, Rachel; SQL Server 2000 cannot be run on Windows 10. Windows 10 wasn't even a glint in Microsoft's eye when...
March 2, 2022 at 9:18 am
SSC isn't the only site that has been receiving this kind of spam recently. I'm aware of at least 2 other sites that have suffered "Customer Service Number" spam posts...
February 28, 2022 at 3:50 pm
So a lot of folks have written articles where no one has posted to the discussions in well over a year. If someone reads and article and has a...
February 15, 2022 at 2:49 pm
I feel like that list is proof that Grant and Jeff are the same person, as they have exactly the same amount of subscriptions.
February 9, 2022 at 4:55 pm
Viewing 15 posts - 226 through 240 (of 5,111 total)