Viewing 15 posts - 931 through 945 (of 14,953 total)
Miles Neale (8/22/2012)
August 24, 2012 at 8:08 am
Nadrek (8/22/2012)
August 24, 2012 at 8:06 am
Sergiy (8/21/2012)
GilaMonster (8/21/2012)
Order by on an insert does not guarantee the order of the rows in the table
Nothing actually can guarantee the order of the rows in the table. Not...
August 22, 2012 at 7:59 am
You're very welcome. Glad we could help.
August 22, 2012 at 7:28 am
To test maximum depth for HierarchyID, I just ran this test (same table definition as in the article):
SET NOCOUNT ON;
GO
TRUNCATE TABLE dbo.HierarchyTest;
GO
INSERT INTO dbo.HierarchyTest
...
August 21, 2012 at 12:28 pm
HLogic (8/21/2012)
For hierarchies of < 50 levels depth, Nested Intervals (Hazel) may be of interest.
I consider those just a flavor of Nested Sets. It has the one advantage that...
August 21, 2012 at 12:08 pm
venoym (8/21/2012)
GSquared (8/17/2012)
I'm not going to dignify you with further discussion. I asked about the difference between the two, if you actually read what I wrote, and you respond...
August 21, 2012 at 11:34 am
If it's a download task, it will fail if the file it's looking for isn't there. No way to simply re-route the process if the file isn't there, it...
August 21, 2012 at 11:28 am
Add in Union for full concatenation. Intersect doesn't actually add sets together, it finds the data that's common to two sets.
Is this one a homework question? It kind...
August 21, 2012 at 11:25 am
The first part is easy. SSIS can do a For Each loop over the files in a directory, and it's easy to get it to import all of them...
August 21, 2012 at 11:23 am
What you want for that is something like this:
CREATE TABLE #Categories
(Cat_ID INT,
Cat_Name VARCHAR(25));
INSERT INTO #Categories
...
August 21, 2012 at 9:29 am
You're on the right path. Now you just need to put your file system task (and any related tasks) inside the loop, and set the source connection to use...
August 21, 2012 at 9:07 am
Steve Jones - SSC Editor (8/21/2012)
GSquared (8/21/2012)
August 21, 2012 at 9:04 am
Might be copies of Express Edition installed by other applications. Might be from installing .NET Studio (I think it does that, anyway). Definitely not safe to unstall them...
August 21, 2012 at 7:40 am
Viewing 15 posts - 931 through 945 (of 14,953 total)