Viewing 15 posts - 9,076 through 9,090 (of 59,067 total)
You can do this easily with string functions, but it’s still a stinking kludge caused by bad design. Most of the work in SQL is done in the DDL,...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 9:00 pm
Because of a rather insidious change that MS made for the new LOB datatypes compared to the old ones in 2005, most people's usage of LOBs causes huge problems and...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 1:39 pm
Hi there I have the following code which has to extract an number from a AccountNumber variable declare @AccountNumber varchar(20) = '8063#0018375' select SUBSTRING(@AccountNumber,CHARINDEX('#',@AccountNumber)+1,Len(@AccountNumber) - CHARINDEX('#',@AccountNumber)) select Len(SUBSTRING(@AccountNumber,CHARINDEX('#',@AccountNumber)+1,Len(@AccountNumber) -...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 1:33 pm
Ummmm.... is that where the decisions to not include critical functionality or "not good enough but we have a schedule to meet" decisions are cast in...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 11:30 am
What a day, one could not make it up! My best friend taken to a hospital (second time in two days) after collapsing going flat on the ground,...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 2:52 am
Hi All The table structure is as below. Whilst i get that a clustered index is the data, the thing I'm struggling to get my head round is why...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 2:46 am
Also, you can implement compression (page or row) and get indexes smaller + less I/O and wiser RAM usage. Thanks to Kalen Delaney for the ported version of standard...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2019 at 2:23 am
Ummmm.... is that where the decisions to not include critical functionality or "not good enough but we have a schedule to meet" decisions are cast in stone?...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 27, 2019 at 11:18 pm
With the new SSC, everything is supposed to run through a dev/QA cycle before prod. We have PRs that require review before they get merged into a deployable spot....
--Jeff Moden
Change is inevitable... Change for the better is not.
June 27, 2019 at 6:59 pm
Hi,I'm pretty new to Azure but less new to SQL Server. We have an Azure SQL database with one table of about 300000 rows. So not huge. But, whilst...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 26, 2019 at 3:31 pm
From the article:
Flash storage is known for enabling significant improvements in data processing operation speeds, allowing multi-terabyte databases to be stored "in-memory", with a read/write speed that is four...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2019 at 1:40 pm
Please see the following articles. The first compares PIVOTs to an old "Black Arts" technique known a CROSSTAB (as well as fully explaining CROSSTABs), which is what Erland is talking...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2019 at 11:55 am
Jeff, You ask some great questions. Are you suggesting that I create a separate database with only views (that are named with the original names of the tables I...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 21, 2019 at 11:47 am
If prod is on a SAN, a lot of SAN vendors provide the ability to do "SAN Snapshots", which are virtually instantaneous.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 20, 2019 at 8:38 pm
I guess what I'd really like to know is why do you have the second set of fully replaceable tables to begin with? What are in these tables and why...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 20, 2019 at 1:51 pm
Viewing 15 posts - 9,076 through 9,090 (of 59,067 total)