Viewing 15 posts - 121 through 135 (of 1,824 total)
The one-to-many is a more normalized view of the data and would be more 'correct'. But , you could argue that the CSV route could be right for your...
January 18, 2012 at 1:22 pm
I may be splitting hairs but , Sqlbits is build as a technical launch event. I cant see similar wording on the dev connections site tho...
January 18, 2012 at 1:19 pm
Investigate using "CROSS APPLY ( SELECT TOP(1)" , sounds like its what you need.
January 18, 2012 at 1:15 pm
January 18, 2012 at 1:11 pm
I still say that using SQL Profiler is a good place to start
It hasnt been said explicity in this thread , so i will π
Never run profiler live. Server...
January 18, 2012 at 12:48 pm
One alternative
Select ProductId , ProductColorId ,ColorImage , ColorName
from tblTableA
Cross apply (Select top(1) ProductColorId , ColorImage , ColorName
...
January 14, 2012 at 2:23 am
Just as an aside , you may prefer to add the code to a constraint.
http://msdn.microsoft.com/en-us/library/ms179491.aspx
That way , if you have multiple ways data ( different procs, an ssis task or...
January 14, 2012 at 2:09 am
How much control do you have in this process ?
Adding columns such as you have described , really does sound like a design flaw to me.
If it were me ,...
January 7, 2012 at 2:29 am
xaeru (1/6/2012)
Dave Ballantyne (1/4/2012)
If you are going for a DBA...
January 6, 2012 at 7:35 am
IMO , this sort of formatting should be dealt with at the client level,
use SSRS, excel or whatever to do this.
January 6, 2012 at 6:09 am
Hi,
there is no inbuilt functionality to do this. You have to setup some form of pro-active monitor.
Dave
January 5, 2012 at 11:56 pm
Gail is one of the best, but what makes you think that her advice would be different from ours ?
Is you interview answer now going to be 'ill ask...
January 5, 2012 at 4:03 am
Then the best answer is :
"I dont know, but i would start to find out how to by........"
I dont know , is valid answer to any question. The 'but'...
January 5, 2012 at 2:23 am
TBH , the problem solving skills that you would have to demonstrate would be an integral part of a DBA role.
If you are going for a DBA role , then...
January 4, 2012 at 11:48 pm
Dev (1/4/2012)
I am expecting few blob columns. Itβs the only thing I can think of at the moment that can justify 10 lacs (1,000,000) records with 1 TB...
January 4, 2012 at 7:16 am
Viewing 15 posts - 121 through 135 (of 1,824 total)