Viewing 15 posts - 46 through 60 (of 64 total)
Sorry I pasted the same row and didn't change the data.
create table #a( a nvarchar(1000))
Insert Into #a
select '.A.A 02.A 02D.A 251487.Jeff Moden 1.'
Union all
select '.A.A 02.A 02D.A 251488.Jeff...
May 9, 2010 at 7:17 pm
these EntityIDs have different Types with them, say Jeff Mordan is Moderator of this site but at the same time he's an author as well.
Did you have a look...
May 9, 2010 at 7:02 pm
Jeff, Can you please fix this one? I have a feeling if we fix this one we'll be through at least as a step 1.
if OBJECT_ID(N'tempdb..#a', N'U') is not null...
May 9, 2010 at 6:53 pm
OrgEntityID has to be unique by all means, can you please tell me the ID that's occurring more than once?
Thanks,
Kazim Raza
May 9, 2010 at 6:43 pm
Um.. I am trying to get those but my staging server is offline right now; I'll make an attempt again. B/w you want those 161 K rows with proper data?...
May 9, 2010 at 6:00 pm
🙂
Here's the schema of the target table
Key Bigint
EntityID Bigint
Level1 nvarchar(500)
Level2 nvarchar(500)
Level3 nvarchar(500)
Level4 nvarchar(500)
Level5 nvarchar(500)
this table is then used by SSAS cube to perform different aggregations etc. but thats beyond...
May 9, 2010 at 5:18 pm
This query is part of an ETL process where I am extracting the data out of the transactional database and inserting them into the data mart where our architect has...
May 9, 2010 at 2:10 pm
Jeff, assume those numbers are name; you may replace them with some alphabets. I have used the numbers instead of the original data to avoid propriety issues; and probably your...
May 9, 2010 at 12:41 pm
Nope it is not for MLM. It is a part of a system that will allow organizations to manage different hierarchal structures within their organizations. Any suggestions how to break...
May 9, 2010 at 3:48 am
This is why I am concerned about the last select, consider this
CTE gives me the data in this form
ID Name Level ...
May 8, 2010 at 6:15 pm
Thank you for your reply. The CTE itself gets executed within a minute, actually within 40 seconds; its the last select on #Hie that takes time actually a lot of...
May 8, 2010 at 2:04 pm
Select * From #Hie
this select is the one that has problems. exact count of records after inserting in #Hie is 161343. My data export to Excel failed after exporting 65000...
May 8, 2010 at 1:34 pm
Yes Paul, I know its not simple and that's the reason I have turned up here to get expert opinion to get the basic groundwork correct. As I mentioned in...
March 18, 2010 at 5:36 am
Thank you all.
I have to focus on another task as a result of shuffling priorities but I will certainly get back to it in a few days, with the...
February 26, 2010 at 8:13 am
Can you suggest some other resource? I have tried to look up on Google but haven't come across anything concrete.
February 25, 2010 at 4:47 am
Viewing 15 posts - 46 through 60 (of 64 total)