Forum Replies Created

Viewing 15 posts - 27,736 through 27,750 (of 39,769 total)

  • RE: can a temperory table be passed to stored procedure

    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...

  • RE: HI I am alsofacing same problem as first one

    If it's not installed, remove the folders in the file system and the registry key under HKLM/Software/Microsoft

  • RE: Is XML Useful for Array Data?

    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...

  • RE: Clustering

    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...

  • RE: Insert into Statement problem??

    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 (...

  • RE: TEMPDB files

    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...

  • RE: SQL 200k Named Instance Issue

    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...

  • RE: database testing tools

    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.

  • RE: Dumb Question

    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...

  • RE: Affinity masking and licensing

    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...

  • RE: Low Latency Reporting Database Options?

    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...

  • RE: The IT Employee Benchmark

    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...

  • RE: Knock, Knock…Who's There?

    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...

  • RE: Database Stuck Recovering

    I might also run a trace for that user and see if anything is happening.

    Can you stop the job?

  • RE: Add/Remove Programs - SQL Server 2005 option disappeared

    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...

Viewing 15 posts - 27,736 through 27,750 (of 39,769 total)