Viewing 15 posts - 1,621 through 1,635 (of 2,894 total)
I asked one candidate "what do you think are the 5 most important things to remember when working with SQL server?"
Sorry, I hate such questions. They are generic and very...
May 8, 2012 at 9:42 am
michael vessey (5/8/2012)
mldardy (5/8/2012)
SELECT...
May 8, 2012 at 9:32 am
ggjjbb1983 (5/8/2012)
Thanks.Can you tell me how Full Text Indexes are stored please? I know how clustered indexes are stored. How are Full Text Indexes stored in comparison?
Thanks
That will let...
May 8, 2012 at 9:27 am
Jeff Moden (5/8/2012)
michael vessey (5/8/2012)
i see my humour is lost on you jeff
Nah... I had a smiley face there. 🙂 I just didn't want a newbie reading that to...
May 8, 2012 at 9:13 am
lanky_doodle (5/8/2012)
Any thoughts guys?
http://www.sqlservercentral.com/articles/Best+Practices/61537/
Not everyone here have a desire to setup everything from scratch. If you could follow tips from the above link, you will get more relevant help in...
May 8, 2012 at 9:06 am
mldardy (5/8/2012)
May 8, 2012 at 8:59 am
It's possible with use of dynamic SQL
BUT! It's a crazy desire!
p.s. you can draw using T-SQL too...
May 8, 2012 at 8:05 am
The best what you can do is:
;with r1 as (select ROW_NUMBER() over (order by field2) rn, field2
...
May 8, 2012 at 7:53 am
michaelyarbrough1975 (5/8/2012)
column type1 has the following...
May 8, 2012 at 7:37 am
imex (5/4/2012)
Try:
select
s.FLAG1 as INBOUND,
s.AMOUNT as BASE_AMOUNT,
Coalesce( (select i.AMOUNT from @Sample as i
...
May 4, 2012 at 6:20 am
yingchai (5/4/2012)
There is really no rule to make 'aaa' to be only "inbound" but 'bbb' and 'ccc' only "outbound.
If there is an amount for 'aaa' to 'bbb' (FLAG1 to...
May 4, 2012 at 5:52 am
BCP: still needs tursted connection, we have many 100s of customer with different authendication, the solution has to work in all situations.
And, you will want that file be created on...
May 4, 2012 at 3:49 am
What makes 'aaa' to be only "inbound" but 'bbb' and 'ccc' only "outbound"?
You should have some kind of flag/rule.
May 4, 2012 at 3:32 am
Jeff Moden (5/3/2012)
michael vessey (5/2/2012)
does the following count as a loop?INSERT INTO dbo.yourTable default values
go 100
??:-P??
BWAAAA-HAAAA!!!!! Ask that question on the receiving end of an interview and see what...
May 4, 2012 at 3:27 am
Viewing 15 posts - 1,621 through 1,635 (of 2,894 total)