Viewing 15 posts - 31 through 45 (of 117 total)
eschrepel,
I tried all the steps one by one and it still doesn't work. I even re-booted the system.
August 17, 2011 at 8:27 am
Not yet. This is on a dev box running Win server 2003. Let me know if you get any clues or answers.
Thanks,
John
June 24, 2011 at 2:58 pm
it still won't work.
I enabled named pipes thru sql server ent. mgr. I re-booted. I tried using all three possible accts from the drop down menu: Local system;...
June 9, 2011 at 12:59 pm
I see. cool!! It pointed to the single quotes around the '@'. In t-sql, we use single ' ticks, but I guess in ssis we gotta use double "...
May 13, 2011 at 12:10 pm
I thought of it already, but I do not own that network share; it's owned by the Exchange server admin b/c these are logs generated by email blasts.
April 11, 2011 at 1:05 pm
I created the For Each Loop w/Enumerator, but in order for it to look in the directory and grab every CSV file and dump it into a SQL table, I...
April 11, 2011 at 8:07 am
Figured it out.
I have to set my field as decimal, then I have to cast the value/field I'm multiplying to float, then multiply by the decimal value and that does...
December 7, 2010 at 2:25 pm
See the code below:
Selectb.FullName,
a.LANLogin,
b.HireDate,
[Status]= b.Active,
b.Supervisor,
[Month]= a.RecMonth,
Period= a.RecPeriod,
b.[Site],
b.Department,
QA_CE= Isnull(c.QA_CE,0),
PTS_QA_CE= Null,
NoOfScans= Isnull(c.NoOfScans,0),
Consistency= Isnull(c.Consistency,0),
PTS_Consistency = Null,
JobKnowledge = Isnull(d.Grade,0),
PTS_JobKnwldg = Null,
Total= Null
Into#AllTables
From#Period a
InnerJoin
#Employees b
Ona.LANLogin = b.LANLogin
LeftJoin
#CactiData c
Ona.LANLogin = c.CactiAgentId
Anda.RecPeriod = c.RecPeriod
LeftJoin
#Moodle1 d
Ona.LANLogin = d.UserId
Anda.RecPeriod...
December 7, 2010 at 2:05 pm
I thought the case explanation and attachement were enough to explain, but in any way, it turns out the solution stake owner actually wants to see only the latest two...
July 23, 2010 at 7:28 am
I've added an Excel worksheet w/ one record as a sample. It has 2 revision versions. Notice that a single product may have many RM's. They may change, they may...
July 20, 2010 at 9:50 am
I've got another challenge, but the opposite way now:
I've gotta import some old outsourced data into our own housed tables, but the values for timestart and timeend are as ...
May 19, 2010 at 8:15 am
You're right, the EndDate value was a typo...my bad. I'm implementing your second suggestion b/c it may carry to the next day, however, if the diff is 24 hours...
April 23, 2010 at 12:18 pm
Viewing 15 posts - 31 through 45 (of 117 total)