Viewing 15 posts - 1 through 15 (of 36 total)
A while back, I learnt of the (possibly apocryphal) story of Steve Jobs who, during the development of the original iPhone, was demanding that the software engineers reduce the boot...
September 24, 2023 at 9:46 am
MS needs to improve the performance of the Format command - a Convert(101) makes NO sense when reviewing code for date formatting problems - unlike the format which...
August 8, 2022 at 2:37 am
The question was what should replace xxx in " SELECT 'xxx', ... ".
There are already quotes around the xxx. Why would I include another set of quotes around the...
March 22, 2020 at 6:58 am
I take it that your Visual Studio plugin talks to a web service that you're hosting, and that it sends the SQL code up for conversion?
And I assume...
March 7, 2019 at 3:05 pm
The author conflates, among other things:
1) relational database theory,
2) SQL (the language)
3) relational database *management systems*
4) applications/frameworks that use these RDBMS's
September 14, 2018 at 3:18 am
March 14, 2017 at 1:00 pm
Horses for courses.
I would say 'it depends' on, amongst other things, your scale, your mix of servers/instances, your job function and experience.
I find truly ironic, this "Text...
March 14, 2017 at 12:52 am
fregatepllada (5/26/2015)
May 26, 2015 at 5:21 pm
don't understand why people think they need to write a CLR for this
and
Why not use native T-SQL commands?
Don't know that you'd want to, but maybe mass loading a whole bunch...
May 26, 2015 at 4:48 pm
Unfortunately, the computer industry is full of organisations that suffer from NIH (not invented here) syndrome.
So if one company comes up with a good idea (in this case, Sybase/Microsoft and...
March 30, 2015 at 8:52 pm
Jeff, challenge accepted.
something like this?:
create function [dbo].[fn_callist](@startdate date , @enddate date)
returns table as
-- CTE Tally table from http://www.sqlservercentral.com/blogs/never_say_never/2010/03/19/tally_2D00_table_2D00_cte/
return
WITH
t1 AS (SELECT 1 N UNION ALL SELECT 1 N),
t2...
February 23, 2014 at 12:32 am
Stan Kulp-439977 (3/18/2012)
...I was interested in demonstrating how to do things in as illustrative and understandable a manner as possible.I broke it into stages just to illustrate it better...
That's exactly...
March 18, 2012 at 6:57 pm
It took me a while before I could read the article past where we generate XML with attributes and then transform it using a style sheet.
Maybe I'm missing something,...
March 18, 2012 at 4:27 pm
Joe,
I would have responded sooner, but I've spent a couple of days looking after some other clients, and away from this project.
Firstly, thanks for taking the time to actually respond...
November 2, 2011 at 5:03 pm
Just want to add my thanks to Jeff.
This article helped me solve my own, slightly similar problem (@ http://www.sqlservercentral.com/Forums/Topic1196820-391-1.aspx )
Mine is a bill of materials problem, and involved adding up...
October 30, 2011 at 8:38 pm
Viewing 15 posts - 1 through 15 (of 36 total)