Forum Replies Created

Viewing 15 posts - 22,156 through 22,170 (of 22,194 total)

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

  • RE: Clustering and Alerts

    After wrestling with all the work-arounds (and losing) we finally settled on forwarding all events from our clustered servers to a non-clustered server where we have mail nicely, safely, reliably...

  • RE: Temp tables versus virtual tables

    Everything the last post said and...

    Statistics aren't generated for table variables so their use in queries can, depending on their size, cause performance problems.

Viewing 15 posts - 22,156 through 22,170 (of 22,194 total)