Forum Replies Created

Viewing 15 posts - 21,946 through 21,960 (of 21,980 total)

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

  • RE: Multiple SPs

    I had to all but reformat my drive in order to get the June CTP installed. You will need to, at the least, uninstall the April CTP first.

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

    Do you get an error, or just a blank screen? I ask because I've been getting network packet size errors when trying to connect and found that there's apparently an...

  • RE: C# SQL Server Project in VS 2005

    I don't think it installs a full version of VS. I got VS as a seperate install and did that on top of the SQL Server install and then had...

Viewing 15 posts - 21,946 through 21,960 (of 21,980 total)