Viewing 15 posts - 46,381 through 46,395 (of 59,095 total)
The server you are working on, whether local or remote, must be logged in as a user that can "see" the spreadsheet using a UNC instead of a mapped drive.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 1:42 pm
Steve Jones - Editor (12/26/2008)
Congrats!Hey, pick up running as a new vice, that's what I did 🙂
Just bought a nice new Calypso Cruiser (bicycle)... 7 speeds... nice super heavy duty...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 1:34 pm
ps (12/26/2008)
Jeff, I must say the way you play around with T-SQL is really amazing. Atleast I couldnt think of using PARSENAME in this example:w00t:
:blush: That's awfully nice...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 12:58 pm
Heh... you beat me to it, Barry. Despite some awesome technology in some classrooms and the awesome learned abilities by the students in those classrooms, most still can't count...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 12:36 pm
rajib (12/26/2008)
How about we assume that I'm looking for everything (3 things mentioned above as well as other items not listed there)? I am interested...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 11:39 am
Heh... Actually, I haven't had a cigarette in over a week. Still want one real bad, but trying not to give in. Also trying not to bury folks...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 11:34 am
Using the test data nicely provided by Pradeep, with an added row...
create table #patname
(
FullName varchar(100),
FirstName varchar(100),
MiddleName varchar(100),
LastName varchar(100)
)
insert into #patname(FullName)
select 'John,David Robert'
UNION ALL
select 'sustaita,corie m'
UNION ALL
select 'pena,geneva jesus'
UNION ALL
SELECT...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 11:29 am
I have two resolutions....
1. Stop swearing so much at people who want to do stupid things to databases because... most of them are managers that have some say so...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:49 am
rajib (12/23/2008)
Here are a list of questions from me:
- Do you check schema only to...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:38 am
Dugi (12/26/2008)
Dugi (12/26/2008)
but can you explain to me this t.n*14 where did you find it ???
SELECT DATEADD(dd,t.n*14,'20090102')...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:33 am
doss.tychicus (12/26/2008)
Thanks Jeff . that's really cool
You bet, Doss... thanks for the feedback.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:31 am
Praveen,
If you want to learn how to make cross tabs, then what Madhivanan suggested is a good idea. Also, I wrote a kind-of tutorial on how to make a...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:29 am
vaibhav.a (12/26/2008)
Thank You...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:25 am
samsql (12/25/2008)
Update temp1 Set Date =...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:22 am
doss.tychicus (12/26/2008)
is there any way i can calculate bi weekly in sqlfrom ex:
from 1/1/2009 to 12/31/2009
I need to know all the fridays biweekly
ex 1/2/2009, 1/16/2009,1/30/2009
Thanks
It's...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 26, 2008 at 10:01 am
Viewing 15 posts - 46,381 through 46,395 (of 59,095 total)