Viewing 15 posts - 646 through 660 (of 3,061 total)
David Moutray (12/29/2011)Seriously, if I have the opportunity to try it on a new system, I might put it in and forget to tell the developers (aka "the enemy") about...
December 29, 2011 at 11:51 am
pandeesh (12/29/2011)
Any other suggestions welcome...
How about using coalesce?
create table #test(id decimal);
insert into #test values(1);
insert into #test values(2);
insert into #test values(3);
insert into #test values(4);
insert into #test values(5);
insert into #test values(6);
insert into...
December 29, 2011 at 10:42 am
Little Nick (12/29/2011)
But I dont understand how to add a...
December 29, 2011 at 9:26 am
m--S3qU3L (12/28/2011)
In theory, from Project Real...
December 29, 2011 at 9:24 am
Dev (12/29/2011)It looks like ...
...but you don't know, huh? why don't just answer what op asked for instead of going border line off topic for no good...
December 29, 2011 at 7:27 am
Dev (12/29/2011)
Adding another thought. Is there any reason for doing it in database side? It should be done on Front End (application).
Why? What's wrong with backend code...
December 29, 2011 at 7:15 am
Little Nick (12/29/2011)
It's possible to make crtdte as primary key?
You tell me 😀
You know your system then you know what are the chances of getting duplicates depending on how...
December 29, 2011 at 7:12 am
pandeesh (12/29/2011)
The records are as below:
Value
-------
1
2
3
4
5
6
7
i need the output as single records as:
1,2,3,4,5,6,7
The logic is delimiting all the values by comma,
In...
December 29, 2011 at 7:05 am
Two notes:
1- Partitioning Column a.k.a. table PK must have a CHECK constraint describing the low and high end of the partition range stored in such a table - that's how...
December 29, 2011 at 6:57 am
frankcastle509 (12/28/2011)
December 28, 2011 at 9:02 am
Amazing! How this thread that started as a question about the design of a OLTP Travel application derived into a discussion about Data Warehousing is something that puzzles me...
December 28, 2011 at 7:11 am
itsamarnath (12/28/2011)
December 28, 2011 at 6:48 am
Please check http://support.microsoft.com/kb/955725
December 27, 2011 at 2:47 pm
Check the post dated 5/16/2009 12:02;17am on this thread: http://www.sqlservercentral.com/Forums/Topic717382-266-2.aspx
Edit: Sorry - I was reseaching this when you updated the thread with the news that a backup actually exists.
December 27, 2011 at 1:33 pm
angel.fernandezj (12/27/2011)
Script to find server level...
December 27, 2011 at 1:28 pm
Viewing 15 posts - 646 through 660 (of 3,061 total)