Viewing 7 posts - 1 through 7 (of 7 total)
This works should show you how to do it
Bryan
declare @Tablename varchar(400)
declare @x varchar(200)
declare curtable cursor
for
select name
from sysobjects
where type='U'
order by name
open curtable
fetch next
from curtable
into @x
set @x='select count(*) from '+@Tablename
print @x
exec...
March 16, 2010 at 4:07 pm
SQL 2005 should work fine but I have not had a chance to try it.
December 7, 2005 at 4:17 pm
you will not be able to do this SQL Server does not support calling C# managed dll's u will need to rewrite in C++ or Delphi or something similar
November 22, 2005 at 5:43 pm
You could schedule a windows schedule job to run net stop service been the sql service and than start it would not run it from a SQL Job.
November 22, 2005 at 5:34 pm
Set the sql servers as an active/active cluster and u can put different databases on each cluster but still have failover protecion for each node of the cluster.
November 22, 2005 at 5:32 pm
As long as you only use SQL 2000 functionality on the SQL 2005 server it will work for all your customers you can set the compatability level to SQL 2000...
November 22, 2005 at 9:29 am
Why not script all the stored procs change them from create to alter insert the line you need in the text file and rerun the script so it alters all...
November 22, 2005 at 9:25 am
Viewing 7 posts - 1 through 7 (of 7 total)