Viewing 15 posts - 1,156 through 1,170 (of 2,612 total)
No. Also, it is not a need - it is a recommendation.
RAID 10 striping will be pretty fast, but with a single array, you only have a single set...
June 25, 2008 at 11:50 am
A T-SQL script runs at the server. It cannot interact with your client tools on your workstation.
You want some kind of client-side macro ability in Management Studio. There...
June 25, 2008 at 11:36 am
As far as the second server as a standby - yes, you can mirror, log ship, and replicate between 64bit and 32bit servers in most cases.
As far as the log...
June 25, 2008 at 11:08 am
In simple recovery mode, the log files get just as much write activity as in full recovery mode. The log files are simply truncated automatically at each checkpoint.
So, it...
June 25, 2008 at 9:00 am
You could go either way. Normalizing your database is good, but can cost a lot of complexity. Balance the two.
That being said, comments are something that could be...
June 25, 2008 at 8:56 am
I think you are looking for:
[font="Courier New"]SELECT FormCode, [State], Max([Time])-Min([Time]) AS TotalTime
FROM MyData
GROUP BY FormCode, [State][/font]
June 25, 2008 at 8:10 am
The clustered index is the actual table data. So, by specifying a file group for the clustered index, you have changed your partitoning scheme to put everything on the...
June 25, 2008 at 8:06 am
I guess I prefer to lay out data flows in a top-down tree format and you prefer this sort of everything-goes-everywhere havoc approach...
The data flow looks pretty good to me....
June 25, 2008 at 8:00 am
In your scenario, the package will run on your local PC.
You have a couple of options. RCmd or another utility will execute a command on a remote machine. ...
June 25, 2008 at 7:46 am
SSIS is not designed for and should not be used for processes that have to stop mid-stream and wait for user input.
Modify your package to use a package variable and...
June 25, 2008 at 7:38 am
These are page latches and are supposed to be there. SQL 2000 sp4 introduced these being included in the process reporting.
Ignore them.
June 25, 2008 at 7:34 am
It just happens I needed to use a merge join to exclude "Already Processed" records today. I have attached some screen prints of what I built.
It is pre-release so...
June 25, 2008 at 6:57 am
I have had good luck with the TableDifference component also.
I don't know if you have noticed the "case sensitive" option, but it is really nice to be able to turn...
June 25, 2008 at 6:41 am
Viewing 15 posts - 1,156 through 1,170 (of 2,612 total)