Viewing 15 posts - 7,276 through 7,290 (of 8,753 total)
Here is the first part and the goal of this part is to improve the yearweek table which then allows us to do a direct join to it rather than...
August 28, 2014 at 10:09 pm
Quick thought, isn't Merge Cells what you are after here?
😎
August 28, 2014 at 9:57 pm
The code fails because the first character in the Pattern sequence is NCHAR(0). Any usage of the string will recognise this as the end of the string, truncating the string...
August 28, 2014 at 9:50 pm
smart_analyst (8/28/2014)
I am using one input variable school_name...
August 28, 2014 at 9:28 pm
sqlfriends (8/28/2014)
For example some retired db is at version 2000 and only works with 2000, some with 2005 etc.
So...
August 28, 2014 at 1:54 pm
Some good points you make there Steve, thanks!
But now a days computers are such a robust stable platforms, with such a stable reliable storage media, used by very competent and...
August 28, 2014 at 1:45 pm
Quick thought, my preferred approach would be a named SQL Server instance, normally SERVERNAME_OLD. Kind of in line with Jeff's suggestion. Reason being that normally there are more than one...
August 28, 2014 at 1:14 pm
Ed Wagner (8/28/2014)
Lynn Pettis (8/28/2014)
August 28, 2014 at 1:00 pm
Here is a quick sample solution, much worse performance wise than Chris's but I put it forward more as an alternative method anyway.
😎
USE tempdb;
GO
;WITH TDOC(
[ID]...
August 28, 2014 at 12:48 pm
Here is a quick SQL 2K8 solution, toggles by the flag changes using self-join, SQL 2012 solution would be easier with running total;-)
😎
USE tempdb;
GO
create table #test ( num int ,orig_time...
August 28, 2014 at 8:00 am
Here is a quick solution, adds a row number to join the two sets
😎
IF OBJECT_ID('Tempdb..#tTable1') IS NOT NULL
DROP TABLE #tTable1
CREATE TABLE #tTable1(ID INT,
...
August 28, 2014 at 2:10 am
daz.chauhan (8/28/2014)
Please can someone help with the format of a field? I have a number field (well I have hundreds on a number of reports) and I need...
August 28, 2014 at 1:54 am
My apologies if I was out of line earlier, somehow I get kind of agitated when requirements focus more on HOW than WHAT, especially when it's incorrect.
The problem itself is...
August 28, 2014 at 1:01 am
Hi and welcome to the forum, complements on the fine DDL and sample data!
Not too clear on what you are after but please bear with me as I'm only on...
August 27, 2014 at 10:53 pm
errolthomasql (8/27/2014)
also, i am not going to be opening up...
August 27, 2014 at 10:10 pm
Viewing 15 posts - 7,276 through 7,290 (of 8,753 total)