Viewing 15 posts - 196 through 210 (of 395 total)
You can do a different approach to this
Pass the minutes in a parameter. with the use of DateADD function u can insert the nesseray time into the table
February 20, 2005 at 11:54 am
Apply foreign key constraint
February 20, 2005 at 12:13 am
Gmail is mail facilty supplied by google. you can have a box of 1 GB. it is very simpel and fast with compares to other mails. unlike other mail you...
February 19, 2005 at 10:54 pm
declare @var nvarchar(150)
set @var = ''
select @var = @var + value + "," from table where id = 1
print @var
February 18, 2005 at 12:33 am
As far as I know this available only from the MSDN subscription.
February 17, 2005 at 11:28 pm
You just install the SQL Server again.
It will ask for a new instance name
for eg: Dinesh\QA
QA will be the instance. u can access the server Dinesh\QA
February 17, 2005 at 10:54 pm
February 17, 2005 at 5:42 am
select id,amount, (select amount + sum(amount)
from ac_audit as b
where b.id<a.id)
from ac_audit as a order by id
February 17, 2005 at 2:57 am
select id,amount, amount +(select sum(amount)
from ac_audit as b
where b.id<a.id)
from ac_audit as a order by id
match your fields name to this
February 17, 2005 at 2:55 am
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=144&messageid=160892
Check this you may find solution to your problem
what do you mean by active table???
February 17, 2005 at 1:26 am
Object identifier (OID) is a unique set of numbers that allows Objectivity/DB to locate and manage persistent objects. An OID is 64 bits in length and it is composed of...
February 16, 2005 at 9:57 pm
Viewing 15 posts - 196 through 210 (of 395 total)