2024-03-13
436 reads
2024-03-13
436 reads
2023-11-08
443 reads
There is sometimes a need to figure out the maximum space that is being used by a particular column in your database. You would initially think that the LEN() function would allow you to do this, but this function does not work on Text, NText or Image data types, so how do you figure out the length of a value in a column that has one of these data types?
2022-04-20
2021-09-29
661 reads
2021-01-12
438 reads
2021-01-05
526 reads
2019-12-19
255 reads
2019-06-11
846 reads
2018-11-27
1,018 reads
This article will show how to change the data type of a column when the table contains more than 1 billion records.
2017-11-09
5,238 reads
This month, I prompted bloggers to discuss whether good enough is perfect. Thank you to all...
By Steve Jones
Recently a customer asked if SQL Compare and SQL Data Compare can be used...
i see this in the definition of a linked server on our wh sql...
Is this even possible ? Tried with grant but to no avail. [sys].[database_role_members] and...
Comments posted to this topic are about the item Stairway to Snowflake Level 5...
What does this code return in SSMS 20 from SQL Server 2019?
select '|' + CHAR(0)+'abc' + '|';See possible answers