Viewing 15 posts - 38,716 through 38,730 (of 39,456 total)
Good luck. I'd be interested in hearing how this turns out and what the reactions are.
Steve Jones
December 7, 2001 at 10:57 am
You can designate any stored procedure to run at server startup. In sql 2000, you set the server to run these with:
sp_configure 'scan for startup procs', 1
Set the procedures with
sp_procoption
Sets...
December 7, 2001 at 10:56 am
Good idea. Also, if you can give the names of the columns and table that are not working, we will try to test it.
Steve Jones
December 7, 2001 at 10:53 am
December 6, 2001 at 8:19 pm
December 6, 2001 at 8:16 pm
December 6, 2001 at 8:14 pm
I wasn't aware they could be hidden? The default instance will respond on port 1433. Named instances use other ports, but I can't remember off the top of my head...
December 6, 2001 at 10:38 am
Not sur why that wouldn't work. Smalldatetime is just a little smaller (in size) than datetime.
Glad its mostly working.
Steve Jones
December 6, 2001 at 10:36 am
December 6, 2001 at 10:34 am
transactional isn't that much overhead, especially if you move teh distribvutor to another server. What's a lot of transactions? I've had this work in a few solutions as the overhead...
December 6, 2001 at 10:33 am
December 6, 2001 at 10:32 am
Actually Andy, I found the skeleton for such a project on msdn. When i get back to work, I'll post the link.
btw, how do you get to presecute the offenders?...
December 6, 2001 at 10:30 am
no second case needed.
declare @cmd varchar( 100), @x int
select @x = 1
select @cmd = 'this' +
case when @x = 1
then ' or...
December 5, 2001 at 2:41 pm
Its
select @cmd = 'update ' + @targettable + ' set ' + @variable + ' = ' +
case when @datatype = 'int'
...
December 5, 2001 at 2:10 pm
December 5, 2001 at 1:28 pm
Viewing 15 posts - 38,716 through 38,730 (of 39,456 total)