Viewing 15 posts - 22,171 through 22,185 (of 22,202 total)
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
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...
June 20, 2005 at 7:26 am
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.
June 20, 2005 at 7:05 am
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.
June 20, 2005 at 6:43 am
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...
June 20, 2005 at 6:41 am
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...
June 20, 2005 at 6:39 am
I don't know the answer to this question, but it intrigued me so I did a quick experiment. I ran this query:
select
o.name
June 20, 2005 at 6:30 am
True. And, assuming you're only going to run the scripts and then drop the linked server, it's not that big a deal. However, it is a bad practice from a...
June 17, 2005 at 9:33 am
Permissions on that proc are set to 'public', so it should work. Can you see it in the master database?
This worked fine when I tested it locally:
declare @sql nvarchar(2000)
set @sql...
June 17, 2005 at 9:17 am
I wouldn't add a linked server to production due to the security concerns that could raise.
Otherwise, the cursor option above or maybe an app that uses SQLDMO. DBArtisan will allow...
June 17, 2005 at 9:02 am
Viewing 15 posts - 22,171 through 22,185 (of 22,202 total)