Viewing 15 posts - 1,891 through 1,905 (of 2,387 total)
For example;
declare @cmd varchar(255)
declare @server varchar(20)
set @server = 'PROFILES'
set @cmd = 'select * from ' + @server + '...RAM'
exec (@cmd)
May 1, 2003 at 6:42 pm
Install SQL Server 7.0 as default instance and 2000 as named instance so you can have both environment to develp sctipts for different needs.
May 1, 2003 at 6:27 pm
Try example.
select *
from northwind.dbo.orders np
inner join pubs.dbo.orders pp
on np.orderid = pp.orderid
May 1, 2003 at 1:24 pm
800 MB database is pretty small in SQL Server and it shouldn't impact the performance unless database, queries and tables indexes were not properly designed.
Try to run dbcc dbreindex your...
May 1, 2003 at 12:42 pm
Create a view on the table to exclude the date column and let everyone accesses the view.
You could add additional BINARY_CHECKSUM column that returns the checksum value computed over a...
May 1, 2003 at 12:11 pm
What do you mean Model database is not activated? Is it detached too? Satrt SQL Server with -T3608 and try to attach Model database back first, remove -T3608 and stop...
May 1, 2003 at 11:53 am
Try Multi Server Administration from SQL Server Agent.
May 1, 2003 at 10:21 am
Run performance monitor to see which processes are consuming the CPUs. Are any other applications except SQL Server running in same box?
If you comfirm the high CPU usage is caused...
May 1, 2003 at 10:16 am
You are right and it just checks to see that the backup set is complete and that all volumes are readable.
May 1, 2003 at 10:08 am
You are tring to access SQL Server with 'trust connection' from IIS server.
Option1 : create SQL Server login with proper permissions to your database and modify your ASP connection...
April 30, 2003 at 1:28 pm
Agreeed with Michelle. Also want to add therer something you should do after migration, for example, move the queries into SQL Server as stored procedures, optimize queries and indexes tuning,...
April 30, 2003 at 11:56 am
It should work as long as the stored procedure returns row set that have same columns defined as your temp table.
April 30, 2003 at 11:41 am
Make sure all of columns have been assigned values when insert/update a row.
April 30, 2003 at 7:34 am
Has clustered key defined on some columns in your destination table?
April 29, 2003 at 6:41 pm
Viewing 15 posts - 1,891 through 1,905 (of 2,387 total)