Viewing 15 posts - 946 through 960 (of 1,033 total)
jim.powers (7/8/2008)
To understand this, you need to understand the order in which the statement is processed. The FROM clause is processed first. SQL Server (or any RDBMS for that matter)...
July 8, 2008 at 8:08 am
orrego.cesar (7/8/2008)
July 8, 2008 at 7:45 am
I don't have that kind of luck...
Is there a method I can use to have a query recompute the estimated query plan when I'm querying it?
The reason I ask...
July 3, 2008 at 2:35 pm
My path to DBA hood is convoluted.
I started out providing Net admin/support for a .com in the 90's and continued on that path for a couple years. During that...
June 25, 2008 at 8:35 am
nadiyal (6/25/2008)
being a DBA, a data analyst, a sharepoint developer, VB develop and what ever we are trying to do right now, I have got a question for you:
how to...
June 25, 2008 at 8:12 am
Tom Garth (6/25/2008)
Steven Cameron (6/25/2008)
June 25, 2008 at 8:04 am
Are you using stored procedures?
Try something like this if you are
create procedure showdate
@inputdate datetime = '01/01/9999'
as
if @inputdate = '01/01/9999' set @inputdate = getdate()
select @inputdate
June 25, 2008 at 7:50 am
steveb (6/24/2008)
but you are selecting a lot of other fields
What Steve has said there is the sum of it... DISTINCT operates on all of the fields you list, not just...
June 24, 2008 at 11:02 am
Jason Selburg (6/19/2008)
June 24, 2008 at 9:59 am
Also check that the service that is trying to send the file has access to both the folder and file.
June 24, 2008 at 9:32 am
Also... remember that the path and file name have to exist on the SQL server... so if you're creating them on your local machine they aren't on the SQL server's...
June 24, 2008 at 9:01 am
kiran (6/23/2008)
customer(pk_Customerid,name,address,fk_phonetypeid)customerphone(pk_customerphoneid,fk_customerid,fk_phoneid)
phone(pk_phoneid,fk_phonetypeid,phone)
phonetype(pk_phonetypeid)
The structure of these tables isn't exactly the best... either fk_phonetypeid should be in customerphone, or there should be a master customer table. Otherwise you have to operate...
June 24, 2008 at 8:58 am
Iggy (6/22/2008)
antony (6/22/2008)
I also picked option 2, only to be told I was wrong, and should have picked option 2!:crying:
I think you misread the answer. The answer according to the...
June 23, 2008 at 8:19 am
Jeff Moden (6/13/2008)
June 13, 2008 at 12:16 pm
Viewing 15 posts - 946 through 960 (of 1,033 total)