Viewing 15 posts - 91 through 105 (of 327 total)
From Google:
50 First Dates - Cast, Crew, Reviews, Plot Summary, Comments, Discussion, Taglines, Trailers, Posters, Photos,... |
June 8, 2005 at 5:53 pm
FWIW, the code ran just fine for me against one of my development databases.
June 8, 2005 at 5:39 pm
Remi,
This zip code format is referred to as zip plus 4. All us addresses have a zip + 4 code but it is only commonly used in commercial applications. Its purpose...
June 8, 2005 at 8:39 am
Well...just a little...but that's ok.
I'd just looked at my triggers and at least I didn't make that mistake there!
June 7, 2005 at 3:19 pm
Was there something wrong with my post??
I'm always open to suggestions for improvement.
June 7, 2005 at 2:58 pm
Your trigger updates all rows becuase your update statement has NO where clause. The Select is just hanging out there attached to nothing. You might be looking for something like this.
June 7, 2005 at 2:26 pm
I get '1/1/1900' for null dates using that suggestion. I think this does the trick.
declare @testdate datetime
set @testdate = getdate()
Select Isnull(CONVERT(varchar(12), @TestDate,101),'') as MyDate
set @testdate = null
June 7, 2005 at 8:52 am
It can be handy with cast/convert when you are not sure of the length of the result.
select convert(varchar, getdate(),110)
------------------------------
06-06-2005
(interesting anniversary)
June 6, 2005 at 9:02 am
There's always an exception
char and varchar
Fixed-length (char) or variable-length (varchar) character data types.
char[(n)]
Fixed-length non-Unicode character data with length of n bytes. n...
June 6, 2005 at 8:47 am
After --> TRUNCATE TABLE esi_auto_label there are no rows in the table to update.
UPDATE esi_auto_label ...
June 6, 2005 at 8:33 am
Alex I think you are looking for something like this:
Select a.value, b.value, c.value
From events e
Join Cust a
On a.custId = e.custId
And CustomFormFieldDefinitions.fieldid = 2540
Join Cust b
On b.custId = e.custId
And...
June 5, 2005 at 5:22 pm
"...In fact the only thing I am doing is sub-queries within the main query
i.e. select x, (select y from table2) from table1..."
I'm thinking that a Select from more than one...
June 4, 2005 at 9:30 pm
Viewing 15 posts - 91 through 105 (of 327 total)