Viewing 15 posts - 46 through 60 (of 63 total)
We have scripts which create all the other objects. The only piece we don't have is users and permissions.
June 17, 2002 at 5:54 am
But a shared lock like that should go away on it's own, right? As long as nothing else is locking the table)
-K
June 14, 2002 at 12:13 pm
If I create the clustered index first will that help speed up creating the other indexes?
-Kevin
June 13, 2002 at 2:27 pm
OK, I figured that one out:
select c.name "Column Name",
o.name "Table Name"
--i.name "Index Name sometimes"
from sysindexes i,syscolumns c,sysobjects o
where c.id=i.id
and i.id=o.id
and o.xtype<>'S'
BUT HOW ABOUT GETTING THE SIZE OF...
June 12, 2002 at 1:08 pm
I transfer 40 million row talbes (fat tables)
quite often. You mean each one of those rows is passing thru my pc in between the 2 servers???
(not that you didn't say...
June 7, 2002 at 4:59 am
Andy,
I am not sure what you meant by:
"High cpu is often (but not always) a symptom of memory shortages driving disk activity. "
Also, each server has 8GB of RAM but...
June 3, 2002 at 6:15 am
ME again.
I am running SQL Profiler for 3 days straight.
Would much resources would that use up?
Could that be hosing my CPU? Is the profiler only a resource hit when...
June 2, 2002 at 12:05 am
We have vb apps. which run 65 sql strings consecutively all using the same table in a join.
I was wondering if sql server was holding it in memory on it's...
May 31, 2002 at 10:52 am
I figured it out:
Why can't I backup/restore my SQL Server database to the network?
The reason is that the MSSQLSERVER service is running under a separate set of NT credentials....
May 28, 2002 at 7:18 am
No, they said they were not happy with the SQL Navigator product for SQL Server.
I guess it was designed for Oracle and did not port well.
-K
May 7, 2002 at 12:17 pm
SQL Navigator tech. support told me they are no longer building it for SQL Navigator and they are stopping support of it.
Here is what my research found:
AdeptSQL Workshop ...
May 7, 2002 at 9:19 am
Viewing 15 posts - 46 through 60 (of 63 total)