Viewing 15 posts - 3,901 through 3,915 (of 59,067 total)
Caruncles wrote:CHAR has bitten me numerous times...
How so? Especially when it comes to single byte stuff that even you know will never change?
I'd' say it's time to stop...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:17 pm
Just got a good laugh at the end of this conversation. Saw the following line. Is this a limitation of a CHAR data element?
Viewing 11 posts - 1 through...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:12 pm
CHAR has bitten me numerous times...
How so? Especially when it comes to single byte stuff that even you know will never change?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:04 pm
I almost always agree with Phil and Grant that this should be done at presentation time in whatever app is generating the final output.
But, then there's the human factors of...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:01 pm
This conversation brings up an ancient pain of mine and that's the mantra of "Pre-optimization is the root of all evil" parable that Knuth first stated in one of his...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 2:34 pm
BigQuery has a data type called STRING with no size specification.
In Snowflake all text columns are VARCHAR under the hood, including CHAR.
For pure column stores the method of encoding...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 2:01 pm
Sure. I use CHAR. It's all a part of right-sizing data. Such right sizing does some incredible things, not the least of which is preventing the massive page splits and...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 6:13 am
Maybe. I'd like to think that we prevent a posting here, so no one is notified, which should prevent there being two.
I have asked for data analysis of threads...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:54 am
I feel like that list is proof that Grant and Jeff are the same person, as they have exactly the same amount of subscriptions.
No.
You've got that all...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:45 am
Unfortunately some of the leaders are saying the dev and design groups are too busy to work much on providing documentation or to concern themselves with the structure of...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:34 am
If you use a compressed backup of a single table database, you wouldn't have to worry about zipping anything and you wouldn't have to worry about doing it in "off...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:26 am
Thanks Grant. I presume there are sys tables for jobs and job activity. Not sure if I then do sp_stop_job or KILL process.
If you stop a job and the actual...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:18 am
Another way of doing it is to create a small special purpose, single table database that you write the "export' data to as a real table. Then do a compressed...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:11 am
p.s. And, the files will be smaller because INTs will actually only take 4 bytes and dates will only take a maximum of 8 and could be as little as...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:08 am
With that thought in mind, I have to ask, why are you messing around with the likes of "CSV" files and PowerShell, etc? It's a simple thing to BCP a...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 11, 2022 at 3:03 am
Viewing 15 posts - 3,901 through 3,915 (of 59,067 total)