Viewing 15 posts - 13,531 through 13,545 (of 13,838 total)
I think I understand what you are getting at, but some sample data highlighting what you are currently getting and what you want to get would help significantly. To...
January 17, 2005 at 5:21 am
It's pretty complex, but your problem might be in the WHERE clause, specifically the
WHERE (((t2.Subrouteeffdate)=(SELECT ...)))
bit. If you have a record in t1 with no matching record in...
January 17, 2005 at 12:58 am
Maybe! Please provide more detail about what you are trying to achieve, as it isn't clear from your post.
January 17, 2005 at 12:45 am
Thanks Jeff - do you have any examples of this?
Phil
January 16, 2005 at 5:25 pm
As far as I know, there is no native support in SQL Server for rolling back specific transactions, though I believe there are third-party tools that can do this.
But a...
January 16, 2005 at 6:44 am
It looks like you want to round down in all cases - this code should do the trick:
declare @a varchar(100), @b-2 varchar(100)
set @a = '0.4567777777778999999999345677777777777777777'
set @b-2 = '10.3456789002322222222222545465565767888888888888888'
select cast(left(@a, charindex('.',...
January 16, 2005 at 6:36 am
First point is that the result of your example equates to 1%, not 5%
Secondly, there is no explicit 'percentage' datatype. Not that...
January 14, 2005 at 6:38 pm
OK - may not be a great design, but it's very a common way of doing header/detail relationships.
So you now have several accounts which have got 19 header records but...
January 13, 2005 at 5:42 pm
How is the DocID field (the primary key?) in ac_docdetail generated? Is it an IDENTITY field?
Regards
Phil
January 11, 2005 at 5:20 pm
You can do this in SQL -
insert into tblImage(acid, image)
select xxxx, t1.image
from tblImage t1
where t1.acid = yyyy
xxxx is literal text and should be replaced with the new account number...
January 8, 2005 at 4:21 am
So even though the item field may not exist at all in table1, you still want a row to appear in your resultset?
Does item 100 appear in some other table?...
January 8, 2005 at 3:59 am
Why not just create a check constraint on the primary key (eg ID = 1). PK is NOT an identity field, so repeated insert/delete should be no problem.
January 6, 2005 at 2:03 pm
@tmpUserAccounts is being declared as a local variable, with a datatype of table. So it is different from a temporary table. It should therefore be possible to SET...
January 5, 2005 at 11:35 pm
One idea that is a little simpler is for each user to have a count of "open" posts. If the count is 1 or greater, display a message every...
January 5, 2005 at 8:45 pm
The timestamp datatype is provided by SQL Server as a simple way of versioning records in a table - among other things, it enables you to track which rows have...
January 5, 2005 at 8:15 pm
Viewing 15 posts - 13,531 through 13,545 (of 13,838 total)