Viewing 15 posts - 466 through 480 (of 2,387 total)
How much memory the server has? Do any other applications run in same server? How is memory be configuered in SQL Server? It looks like you have some memory shortage issue....
February 19, 2004 at 1:52 pm
Import wizard will only transfer data from Access to SQL Server. You have to rebuild the keys and indexes manually.
You can use Access Upsize wizard to migrate the Access database to...
February 19, 2004 at 1:43 pm
What did you try to do when you received this error? What is your locks Option setting? You can get it from sp_configure.
February 19, 2004 at 1:24 pm
No idea why you got index id -1 here. What you can do is to rebuild the indexes and dbcc checktable back to see same error still occurs. If it...
February 19, 2004 at 12:19 pm
How much memory are being used by SQL Server instances? Can you post the result of "select * from sysprocesses where waittime > 0 order by waittime desc"? If there...
February 19, 2004 at 12:11 pm
No.
Alter table modifies a table definition by altering, adding, or dropping columns and constraints, or by disabling or enabling constraints and triggers. See BOL for complete syntax.
February 19, 2004 at 12:03 pm
What indexes does the table have? Run dbcc checkdb to see whether you have any errors.
February 19, 2004 at 12:01 pm
CREATE [ UNIQUE ] [ CLUSTERED | NONCLUSTERED ] INDEX index_name
ON { table | view } ( column [ ASC | DESC ] [ ,...n ] )
[ WITH...
February 19, 2004 at 10:14 am
What type of jobs are they? Any error messages regarding to the timeout - blocked, Lock_timeout, Server unavailavle etc? You have to try to find out why they are timeout.
February 19, 2004 at 9:19 am
Save the trace file into a table and let your manager to query the information from there.
February 19, 2004 at 9:13 am
What is your checkpoint value? Any example?
Check function DATEDIFF in BOL.
February 19, 2004 at 9:04 am
In addition to memory configuration, you should monitor your application performance in SQL Server since adding more CPUs could change the query execution plan, for example, query is going to...
February 19, 2004 at 8:54 am
You can't administer SQL server 6.5 with 2000 EM.
February 19, 2004 at 8:50 am
It is a constraint. Check primary key ... in option tab.
February 13, 2004 at 9:11 am
Viewing 15 posts - 466 through 480 (of 2,387 total)