Viewing 15 posts - 16 through 30 (of 457 total)
Doh, my bad... misread your comment. To unzip you're going to use:
gzip -d c:\mydir\*
I'm sure there are probably easier ways to do it, but I've used gzip for so...
October 11, 2007 at 3:57 pm
If you're concerned about this, you might also consider only defragmenting/rebuilding the indexes which need it. Indexes which are very small in size or have little to no fragmentation...
October 11, 2007 at 3:24 pm
You should just be able to use a command like this:
gzip C:\mydir\*
Should zip everything up.
October 11, 2007 at 3:16 pm
I used to do something like this using gzip (http://www.gzip.org/). Free, easy to use, good compression and in my experience pretty fast.
October 11, 2007 at 1:40 pm
My understanding is that schemabinding simply causes any attempts to alter or drop the tables to fail. So I suppose if you were doing an update to the software...
October 5, 2007 at 10:13 am
Ninja adds a good point there. Think about the order of both inserts and scans. We had a table which was used for auditing actions from another table....
October 3, 2007 at 5:03 pm
Boy, that's a question that could start forum wars... 😉
First thing you have to understand is the difference between a clustered and nonclustered index. Clustered indexes define the...
October 3, 2007 at 4:22 pm
Without blowing too much smoke, you'd be a good addition. Your advice in the forums is pretty much spot-on and I've learned a few things.
Let's see, I have the...
October 2, 2007 at 5:21 pm
Eh, I'm an author... not eligible. But my friends and I send e-mails to each other in code all the time anyway, so I'm used to this. 😛
And...
October 2, 2007 at 5:10 pm
To me it looks like you're missing your owner/schema in your update statement... That's the first thing that looks to be missing. Unless your owner is Test1DB, however...
October 2, 2007 at 4:50 pm
Dang, you guys are all way more clever than I am. Nice work.
Here we go, SQL Server 2005-style:
SELECT content FROM SSC.com
INTERSECT
SELECT content FROM UsefulInfo
(68731155373876 row(s) affected)
😀
October 2, 2007 at 4:45 pm
I know that as an author I'm technically ineligible but I figured I'd share what I've gotten out of this site.
I'm largely self-taught. I found SSC early in my...
October 2, 2007 at 11:30 am
Honestly your best bet really is to have 255 parameters. :blink: You could pass in a single parameter as either a long string or as XML and parse...
October 1, 2007 at 12:07 pm
I also liked the old format of the 5 newest topics, not necessarily the most recent posts. I was quickly able to see what I was interested in and...
September 26, 2007 at 5:32 pm
If you can back up the log, you should be able to apply the last full backup and then successive log backups up to the point in time right before...
September 26, 2007 at 10:53 am
Viewing 15 posts - 16 through 30 (of 457 total)