Viewing 15 posts - 22,066 through 22,080 (of 22,105 total)
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.
June 23, 2005 at 9:27 am
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...
June 23, 2005 at 9:24 am
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...
June 23, 2005 at 9:21 am
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...
June 23, 2005 at 9:16 am
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...
June 23, 2005 at 7:27 am
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...
June 23, 2005 at 7:10 am
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...
June 23, 2005 at 6:23 am
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...
June 22, 2005 at 8:59 am
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...
June 22, 2005 at 7:58 am
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...
June 22, 2005 at 7:47 am
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...
June 22, 2005 at 7:28 am
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,...
June 21, 2005 at 8:15 am
Ah, well, you've just gone past my knowledge of the topic.
Good luck.
June 20, 2005 at 9:35 am
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...
June 20, 2005 at 9:33 am
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...
June 20, 2005 at 8:15 am
Viewing 15 posts - 22,066 through 22,080 (of 22,105 total)