Viewing 15 posts - 13,081 through 13,095 (of 13,457 total)
i read the question differently: can you execute sp_whatever, that exists on server1, on server 2.
my answer is that you must copy the proc to the other server. I think...
April 25, 2006 at 6:58 am
i THINK this sql will list all tables defined row size: the LENGTH column in syscolumns has the #of bytes used for the column definition; a varchar(30) has 30, nvarchar(30)...
April 25, 2006 at 6:46 am
if you try to install the enterprise or standard versions of SQL server on your machine, it will automatically "dummy itself down" to the desktop version / MSDE.
the full verison,...
April 25, 2006 at 6:30 am
what happens when you need to tie all those tables together for a quarterly , semi-annual or yearly report?
you'll spend a ton of time writing reports or views which work...
April 24, 2006 at 5:48 am
neat; i found out that this is an extended stored procedure when i tried to sp_helptext sp_refreshview.
April 24, 2006 at 5:44 am
users become orphanded based on the SID tied to their login.
so if you create a user 'Bob' one one server, a unique ID (SID) is assigned to that login; if...
April 22, 2006 at 6:22 am
there is really nothing to it; you download the service pack , open it and it is a couple of NEXT>> buttons;
it will stop the server automatically,(so don't do it...
April 21, 2006 at 2:32 pm
the issue is proably your CleanInput() recordset; if it is returning an empty string instead of NULL or ZERO for things that expect an integer value(like ATTEMPTS) then you'll get...
April 21, 2006 at 2:03 pm
Query analyzer does not have the ability to prompt; you end up having to populate variables before you run the script like
declare @var varchar(50
set @var='somevalue'
select form sometable where val=@val
you...
April 21, 2006 at 1:53 pm
another alternative is to DTS the tables in foreign key/dependancy order.
put the results of exec sp_MSdependencies in a table, and import the tables/views/procs in that order.
April 20, 2006 at 8:44 pm
all of the log trolling software that is advertised here have the ability to identify and report against DDL changes as well.
April 20, 2006 at 11:46 am
there's a couple of knowledge base article that might help: one has to do with raising the # of locks, and the other is due to a denial of service...
April 19, 2006 at 9:23 am
It might be that they are connecting via enterprise manager with their Windows credentials, but connecting via Query Analyzer with a SQL login;
in that situation the SQL login might have...
April 19, 2006 at 6:01 am
assuming you know the tablename and the PK value you wanted to test for (assuming a single column for the PK)
This also assumes that Foreign keys are created, and not...
April 18, 2006 at 10:45 am
not enough information, i think Ashok;
do all the transaction tables have Foreign key references to the master table? Are you talking about the CASCADE option on foreign keys for update or...
April 17, 2006 at 8:56 am
Viewing 15 posts - 13,081 through 13,095 (of 13,457 total)