Forum Replies Created

Viewing 15 posts - 22,066 through 22,080 (of 22,105 total)

  • RE: Generating XML file

    By the way, I realized that it looks like I'm recommending sp_OA procs. I'm not. They're slow and memory pigs, but an option. Just wanted to clarify that.

  • RE: Tools to monitor connections over time

    Lumigent Entegra.

    It's related to Log Explorer, using some of the same technology. It also tracks object changes in the system so you can see if unknown users are changing tables...

  • RE: New transaction cannot enlist in the specified transaction coordinator

    I seriously doubt this is your problem, but we ran into the same error message due to two problems on our system, so these might help you. First was the...

  • RE: Automatically killing long running queries?

    I'm not sure how to help you on the automatic kill of any long running procs (never forget that, depending on what a procedure is doing, it can take as...

  • RE: Rebuild indexes for all tables in all user dbs

    I believe I got this script somewhere on this site, but it cycles through the indexes and checks fragmentation. Depending on the fragmentation it does nothing, runs a rebuild or...

  • RE: Generating XML file

    TSQL all by itself can't write out to a file. From TSQL, to get to a file you'd need to call sp_OA procedures. Otherwise, I'd look at DTS as a...

  • RE: Copying Databases

    It is fast. It's not necessarily safe though. Once you've detached the files, in theory, just about anything could happen to them. What's wrong with backup & restore. I've never...

  • RE: View to Table - Synchronization

    I've never actually found a situation that both required an indexed view yet was simple enough in it's design to be able to implement one, so I understand what you're...

  • RE: View to Table - Synchronization

    Honestly sounds like you might benefit from an indexed view. Did you look into that instead of loading a table? Ony reason I ask is because the indexed view is...

  • RE: Strategy for testing SQL applications

    Swing over to SourceForge.net and search for SqlUnit. It uses the nUnit test driven development approach for TSQL. It would allow for a set up step, an execution step, verification...

  • RE: Creating user defined filegroups for .ndf files

    Sure. It's not hard. You create the database without the NDF files or the file group, just the basic MDF & LDF file. Then you add the filegroup and files...

  • RE: Temp tables versus virtual tables

    All true.

    However, the problems we ran into weren't related to I/O or memory, but rather when using the table variables (@ tables) in joins with each other and regular tables,...

  • RE: finding out WHY the app won''''t connect

    Ah, well, you've just gone past my knowledge of the topic.

    Good luck.

  • RE: Restore from network backups?

    Sounds like a permissions issue. Backups don't run under your security context, but under that of SQL Server. Make sure that SQL Server is running as a network login instead...

  • RE: Restore from network backups?

    We restore across the network all the time.

    RESTORE DATABASE x

    FROM DISK = '\\server\sharename'

    WITH REPLACE

    Works great. Well, assuming the network is working correctly, hops across domains cause it to run very...

Viewing 15 posts - 22,066 through 22,080 (of 22,105 total)