Viewing 15 posts - 12,511 through 12,525 (of 18,923 total)
IF EXISTS (Select * from dbo.SysObjects where name = 'Numbers' and XType = 'U' and user_name(uid) = 'dbo')
DROP TABLE Numbers
GO
CREATE TABLE dbo.Numbers (PkNumber int identity(1,1) primary key clustered, dude bit...
October 20, 2005 at 8:16 am
Not really an sql server problem but...
SET cmd = new adodb.command
October 20, 2005 at 8:11 am
Why are you using 364 as a constant?? Shouldn't that be DATEADD(D, -1, dateadd(YY, 1, Date))?
October 20, 2005 at 7:54 am
On more thing to consider. Let's say you want to go back to the record's state of 2 years ago. How hard would it be if you only...
October 20, 2005 at 7:41 am
You can also alter the relation and make it ON UPDATE CASCADE which wil propagate the changes to the child table(s).
October 20, 2005 at 7:32 am
SHOW ME the results, there's no logical link I can see with the info you gave me.
October 20, 2005 at 7:27 am
One audit table per table... Easier to keep the structure in sync and the audit script is a breeze to write.
October 20, 2005 at 7:26 am
This ain't ever gonna work... what is the expected output you want from the update?
October 20, 2005 at 7:16 am
That's the only read I had to reread it... QQ was pretty easy to remember
.
October 20, 2005 at 7:14 am
I really don't recommend that method. It will run a scan update for EACH COLUMN instead of once for the table. Try that on 5 M rows and...
October 20, 2005 at 7:03 am
What, they can edit the report but they can't run and alter proc???
October 20, 2005 at 6:59 am
You're the lucky one... I stopped counting after I ran out of hands and feet in my whole office building
.
October 20, 2005 at 6:57 am
Dude run my code, learn something and stop asking for free points.
October 20, 2005 at 6:56 am
Why can't you simply Select the data in the correct order and use the application to generate the ranking (extremely simple while you display the data)??
October 20, 2005 at 6:37 am
Viewing 15 posts - 12,511 through 12,525 (of 18,923 total)