Viewing 15 posts - 5,911 through 5,925 (of 59,089 total)
Hi, I need to build a hierachy multi-column table based on data in 1 column where the length of the string determines in which column the string must be...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 13, 2020 at 4:56 am
Ahoi,
i have a set of 7 int columns in a table.
My goal is im trying to create a unique key/integer for each possible combination of these 7 by merging...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 13, 2020 at 4:51 am
ORDER BY is never needed, in the sense that it's irrelevant to whether SQL uses minimal logging or not. Therefore, the code doesn't need it for "safety". And it's...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 9:29 pm
hello
How would you combine the results from two or more columns for the same unique customer #? Example Table: customer | message 1 | some text 1 | even...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 8:37 pm
Agreed, so let's not even get into how badly they mangled the date functions 🙂
Or the "newer" temporal datatypes themselves. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 6:37 pm
Why is there no BOMONTH to go along with EOMONTH? Imo it's because DATEFROMPARTS already exists and BOMONTH would just be a special case of that function and therefore...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 6:26 pm
Why is there no BOMONTH to go along with EOMONTH? Imo it's because DATEFROMPARTS already exists and BOMONTH would just be a special case of that function and...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 6:15 pm
The best I can find is that it is controlled by the service and not externally managed.
Either way, if I had this issue on my servers I would create...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 6:09 pm
The other disadvantages are the somewhat increased overhead and the possibility of increased and/or undetected errors. If you create a view, any error will be found immediately. If you...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 5:34 pm
To answer the question, you could instead change the criteria you cited to...
AND log_reuse_wait_desc <> Nothing'
Like I said in the comment in the code I posted, the...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 5:22 pm
You cannot change the time when that process runs - but you can disable the process that removes log entries and perform that step manually.
Good info, Jeffrey. Just curious,...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 5:13 pm
The ORDER BY is useless (rather than "absolutely essential"). ORDER BY doesn't control the order of physical INSERTs into a table, only the assignment of identity values. I've quoted...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 7:38 am
Just checking so correct me if I'm wrong, please... The end result of your code was to build a view for each AttributeType and then something would have to figure...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 7:11 am
Damn... It's been 5 years already. I miss you buddy!
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 4:50 am
I have been demonstrating how to create high performance Pivot transformations of data using SQL or Linq. Those queries both use a Pivot Table to enhance the performance of...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 12, 2020 at 4:48 am
Viewing 15 posts - 5,911 through 5,925 (of 59,089 total)