Viewing 15 posts - 17,236 through 17,250 (of 18,923 total)
I' surprised nobody saw that mistake :
Replace (html, '<', ' ', '> ')
June 8, 2005 at 7:17 am
Maybe if you can answer this :
how do you invalidate 1 - 5 , 2 - 3 from
1 - 3 , 2 - 5, 1 - 5 ,...
June 8, 2005 at 7:07 am
Try updating less rows at the time. It'll take much less ressource to do this task.
if object_id('Test') > 0
DROP TABLE Test
GO
CREATE TABLE [Test] (
[id] [int] NOT NULL ,
[Name] [sysname]...
June 8, 2005 at 6:53 am
I think that this task would be much easier to handle at the client side. You could use group by on the report to remove some of the doubles,...
June 8, 2005 at 6:38 am
This is not the case for me. I didn't have #temp table or table variables in my trace.
June 8, 2005 at 6:35 am
God I hope he's done by that time (unless it's a 24H shop???).
June 8, 2005 at 6:34 am
Yup, looks like you're stuck with the cast anyways :
Declare @X as datetime
set @X = GetDate()
Select case when @X is null then 'some text' else @X end
--2005-06-08 08:11:26.967
set @X...
June 8, 2005 at 6:26 am
How long does it take to just run the select without transfering to access?
June 8, 2005 at 6:21 am
There's no easy way around this, basically what sql server is telling you is that the insert was rolled back because the primary is already in the table (the PK...
June 8, 2005 at 6:17 am
It would look something like this :
Delete from Table100 where exists (Select * from Table20 B where Table100.title = B.title and Table100.forename = B.forename And Table100.surname = B.surname and Table100.address1...
June 8, 2005 at 6:15 am
There's a little catch with the isnull function. It returns the same datatype and same lenght as the input value. This also means that each paramater must be...
June 7, 2005 at 8:37 pm
Do you remember which proc failed??
This could be a very simple fix but I just didn't think about it :
try adding another return somewhere in the proc.
(Long story short,...
June 7, 2005 at 6:18 pm
I don't think they would compile if the table name is correct. But I can't test from here, maybe tomorrow.
June 7, 2005 at 5:04 pm
I'm still a first year programmer... I'm just real good in tsql, I'm not a god. yet
.
June 7, 2005 at 5:02 pm
Viewing 15 posts - 17,236 through 17,250 (of 18,923 total)