Viewing 15 posts - 1,216 through 1,230 (of 2,387 total)
No one asks the version of your SQL Server, can you tell that?
September 5, 2003 at 8:42 am
Have you tried to drop the user login and re-grant him to access server B.
September 5, 2003 at 7:53 am
Use sp_helpuser to see whether the user is in the database and sp_revokedbaccess 'theusernamehere' to remove it.
September 4, 2003 at 8:34 am
Which SQL Server version and service pack do you run?
September 3, 2003 at 1:49 pm
Backup and restore, detach and attach. Be aware of the limitation of database size is 2GB in MSDE.
September 3, 2003 at 12:51 pm
If you are running non-Enterprise edition, see http://support.microsoft.com/default.aspx?scid=kb;en-us;281574
If you have to upgrade Virtual Servers from SQL Server 2000 Enterprise Evaluation Edition to SQL Server 2000 Enterprise Edition, follow http://support.microsoft.com/default.aspx?scid=kb;en-us;314947
September 3, 2003 at 12:48 pm
Multiple files can be used to increase performance. If there is a single database file, SQL Server would only use one thread to perform a read of database. But if...
August 29, 2003 at 11:57 am
quote:
Hardware upgrade may be an option. Any suggestions on hardware to handle the situation that has been described?
August 29, 2003 at 10:36 am
Try this example. Assuming you have branch number as input.
create table Test (branch int, invoice int)
declare @br int
select @br = 1
insert into Test
select @br,
case count(invoice)
...
August 29, 2003 at 10:05 am
Your query does join a table from linked server "BRSPPWS1". Please check the linked server setup (Security and Server Option) and ensure the user who you used has been mapped...
August 29, 2003 at 9:45 am
quote:
Managment has asked the question about failover clustering and load balancing. Can either do anything for performance regarding optmization?
August 29, 2003 at 9:32 am
select * from db1.dbo.GL_TRANSACTIONS
where JOURNAL_NO IN (select JOURNAL_NO from archivedb.dbo.GL_POSINGS)
August 29, 2003 at 7:35 am
Viewing 15 posts - 1,216 through 1,230 (of 2,387 total)