Viewing 15 posts - 27,736 through 27,750 (of 39,769 total)
You can create global temp tables (##name) as well, but be careful as these are visible to all connections and you could end up with naming conflicts.
Perhaps you could explain...
July 23, 2008 at 1:28 pm
If it's not installed, remove the folders in the file system and the registry key under HKLM/Software/Microsoft
July 23, 2008 at 1:23 pm
You are asking a very general question. How does it help? It reduces round trips, but that may or may not be what makes the most sense.
You can learn a...
July 23, 2008 at 12:35 pm
If you need to do something like migrate, hire a consultant. You're asking for trouble on your own.
If you want to know how it's configured, that's not an easy thing...
July 23, 2008 at 12:35 pm
I assume you have other columns, correct?
You can do
create table mytable
( myid int default 0
, mychar varchar(20)
)
go
insert mytable select 1, 'A'
go
select * from mytable
go
insert mytable (mychar) values (...
July 23, 2008 at 12:32 pm
I'm not sure you can control which objects go where in tempdb. I've not heard that splitting it helps. If you can get multiple drives under it, you can improve...
July 23, 2008 at 12:28 pm
I thought this wasn't supported, or at least not installing SS2K later. Did you install both as SS2K and then upgrade?
Perhaps the SQL Browser is broken because its' 2000 and...
July 23, 2008 at 12:27 pm
I've used Profiler. You could even capture separate traces for different users and then replay them from different PCs to simulate loads from different sources.
July 23, 2008 at 12:26 pm
If you have serious auditing requirements, deleted records aren't allowed. You "mark" them as logically deleted (some flag), but you keep them around.
Worse case, you set up a table to...
July 23, 2008 at 12:24 pm
The licensing, from what I've understood in the past, is that you license all CPU sockets that are occupied on your system, regardless of affinity. I tried to license a...
July 23, 2008 at 12:17 pm
My experience with replication and DTS (not so much SSIS) is that they work great until they don't. Then it's a pain.
If you are worried about support calls, I'd think...
July 23, 2008 at 12:08 pm
I've told someone in every interview in the last 9 or so years that I won't be micro-managed and I don't track time. If you need that, hire someone else.
If...
July 23, 2008 at 11:48 am
Very good comments and a few smiles appearing over here from the jokes.
Not that I think all british humor is bad, but I don't like the UK version of the...
July 23, 2008 at 11:36 am
I might also run a trace for that user and see if anything is happening.
Can you stop the job?
July 23, 2008 at 8:17 am
Strange.
If you need to save databases, I'd copy those, then delete the mssql folder structure off the disk. Also in HKLM/Software, delete the Microsoft SQL Server keys. That should let...
July 23, 2008 at 8:16 am
Viewing 15 posts - 27,736 through 27,750 (of 39,769 total)