Viewing 15 posts - 256 through 270 (of 562 total)
First of all thanks to all the contributors of this thread.
Allthough this thread and all the links (and indirect links) is a bit overwelming.
I have allready learned a lot and...
April 4, 2016 at 3:58 am
Jeff Moden (4/1/2016)
Sachin Nandanwar (3/31/2016)
April 1, 2016 at 8:49 am
As Promissed this is what I reached on Friday, but now cleaned.
It is still not 'complete'.
Known problems:
Performance.
In some situations where a string is started with a double qoute, this is...
April 1, 2016 at 1:53 am
Sachin Nandanwar (3/31/2016)
March 31, 2016 at 12:54 pm
Eirikur Eiriksson (3/26/2016)
Alan.B (3/25/2016)
Are you really on SQL Server 2008? If you were using SQL 2012 this article would get you 90% there:http://www.sqlservercentral.com/articles/SQL+Server+2012/106903/[/url]
I would say more like 99.99% there:-D
😎
The...
March 31, 2016 at 2:16 am
Luis Cazares (3/25/2016)
March 25, 2016 at 6:47 pm
Luis Cazares (3/25/2016)
In my opinion, you would be better fixing the process that creates the string. Something as simple as changing the delimiter would solve all the headaches.
Probably most CSV's...
March 25, 2016 at 3:16 pm
Alan.B (3/25/2016)
Are you really on SQL Server 2008? If you were using SQL 2012 this article would get you 90% there:http://www.sqlservercentral.com/articles/SQL+Server+2012/106903/[/url]
Thanks for the link. I have to process this,...
March 25, 2016 at 3:09 pm
mehta.saurabhj (3/2/2013)
select * from emp where (rowid,1) in (select rowid, mod(rownum,2) from emp);
But if I do the foll code for odd...
March 25, 2016 at 2:41 am
According to Knuth's definition, a B-tree of order m is a tree which satisfies the following properties:
1. Every node has at most m children.
2. Every non-leaf node (except root) has...
February 29, 2016 at 10:05 am
Hugo Kornelis (2/28/2016)
February 29, 2016 at 9:32 am
Found a solution with an indexed view.
Both selections on a recent period and on a period in the past perform fast.
The indexed view:
CREATE VIEW dbo.Vtesttable_recent
WITH SCHEMABINDING AS
SELECT
...
February 26, 2016 at 8:22 am
ChrisM@Work (2/23/2016)
Just to clarify, Ben - it's this system you are attempting to tune:
No, not limited to this system. More to get some good grip range queries. (With variations.)
February 23, 2016 at 9:28 am
ChrisM@home (2/22/2016)
Hi BenThe model system you have posted - does this model a production system or a system in development?
Assuming it's in development:
The model (from another thread) is to learn...
February 23, 2016 at 8:25 am
We have a number of 'models':
Legacy: Build in house the operating system and the DBMS, running since 1973.
SQL-server 1: In house designed/build database. (From the second part of the 90ties)
SQL-server...
February 23, 2016 at 7:24 am
Viewing 15 posts - 256 through 270 (of 562 total)