Viewing 15 posts - 1 through 15 (of 662 total)
I agree with mkeast. Stick to yyyy first specially when your start to hit client non english but server english, etc.
March 13, 2007 at 1:44 am
A few echos may get in the way of "From an employer's perspective, if they want to attract and retain more females in IT, they should make the work environment more...
February 14, 2007 at 3:08 am
Think Robert Davis second one is better.
Stay away from OR's if possible.
November 22, 2006 at 7:26 pm
Select ColLIst FROM dbo.TableName
Where
(Case When @Par1 Is Null then 1 When @Par1=SomeCol1 then 1 Else 0 End)=1
And
(Case When @Par2 Is Null then 1 When @Par2=SomeCol2 then 1...
November 21, 2006 at 3:06 am
Have a look at http://www.windowsitpro.com/sqlserver/forums/messageview.cfm?catid=1666&threadid=131185
April 18, 2005 at 2:17 pm
I'll go for a function which returns a table and pass in which product(s) your are interested in.
February 28, 2005 at 2:23 pm
Nice example, I have been indoctrinated not to use GOTO's at all but rules a made to be broken.
February 15, 2005 at 11:56 am
Create Procedure TestB (@Parameter1 Varchar(10),@Parameter2 Varchar(10) Output) as
Select 'Inside TestB @Parameter1 : ',@Parameter1,'@Parameter2 : ',@Parameter2
Select @Parameter2='1'
Return
go
Create Procedure TestA (@Parameter1 Varchar(10)) as
Declare @Parameter2 Varchar(10)
Select @Parameter2='1',@Parameter1='0'
Select 'TestA Before @Parameter2 :...
February 3, 2005 at 11:56 am
Can you try alzdba example.
Add "if (Select count(*) from inserted)>0" as Alan Palmer suggested.
Please...
January 18, 2005 at 12:38 pm
Sorry should have typed :
Personally I not do like the "IN" clause will try and remove that aswell.
January 17, 2005 at 5:45 pm
Will have a go at it tonight but for starters I'll limit the "group by" statement to the inserted table data only.
Other words "group by" only on the data you need,...
January 17, 2005 at 5:44 pm
How many records in tblPremPolicyPremium?
Which version of SQL?
Do you have recursive triggers switched on?
January 17, 2005 at 1:05 pm
Do you run Active Directory in your environment or can try logon scripting or manually visit each workstation or email each user a .reg file to double click.
November 29, 2004 at 4:35 pm
Can you supply a bit more detail?
November 22, 2004 at 7:21 pm
Not much help but read through article at http://support.microsoft.com/default.aspx?scid=kb;en-us;q306518
Try an connect from web server with a tools which give more information on the...
October 4, 2004 at 2:32 pm
Viewing 15 posts - 1 through 15 (of 662 total)