Viewing 15 posts - 46 through 60 (of 137 total)
In the connections manager for flat file source, I have a column AcqDate which I have declared as a Date. When I run the package, the package fails after processing...
July 22, 2013 at 11:28 am
Tara-1044200 (7/12/2013)
just so you know my loop iterates almote 50k times, do...
July 12, 2013 at 7:57 am
Tara-1044200 (7/11/2013)
Failed to acquire connection "server.DB". Connection...
July 11, 2013 at 3:23 pm
From the reading I've done, there are a number of different scenarios that can lead to this message. I've found the following article to be helpful: MSDN Social:...
July 8, 2013 at 8:43 am
gsmith 7350 (6/6/2013)
MANY THANKS!That's just what I needed. Works perfectly now. 😀
Glad you got it working. 🙂
June 6, 2013 at 8:26 am
gsmith 7350 (6/5/2013)
....
Error: 2013-06-05 12:20:44.44 Code: 0xC0209303 ...
June 5, 2013 at 3:26 pm
Thanks Sean. You're right. I never use the designer. Only type. It sounded like a snippet--didn't realize the designer did something like that. 🙂
May 30, 2013 at 2:19 pm
RedBirdOBX (5/30/2013)
http://blog.sqlauthority.com/2012/09/18/sql-server-ssms-automatically-generates-top-100-percent-in-query-designer/[/url]...at least I'm not nuts....
Curious. SSMS doesn't generate that snippet for me (2008 R2). Thanks for the reference. Are you using 2012?
May 30, 2013 at 2:11 pm
RedBirdOBX (5/30/2013)
May 30, 2013 at 1:53 pm
sqlbi.vvamsi (5/22/2013)
REPLACE(LTRIM(REPLACE(field,"0"," "))," ","0") is the expression, this won't work if field value has space characters
Nice! Thanks for posting. Was just starting to tackle a situation with lead...
May 23, 2013 at 9:17 am
Here's one approach that might work.
With cte_agenttime
As
(
Select
Name0,
Agenttime
From
v_AgentDiscoveries AGD
Inner join dbo.v_GS_COMPUTER_SYSTEM CS
On CS.ResourceID = AGD.ResourceID
Where
AGD.AgentName = 'Heartbeat Discovery'
),
cte_boottime
As
(
Select distinct
sys.Name0,
os.LastBootUpTime0
From
v_R_System sys
Inner join v_GS_OPERATING_SYSTEM os
On sys.ResourceID=...
April 10, 2013 at 12:07 pm
rs80 (4/3/2013)
April 3, 2013 at 10:05 am
rs80 (4/3/2013)
April 3, 2013 at 9:10 am
rs80 (4/2/2013)
Thanks kl25 and Phil for the help. I was able to implement the package using Phil's approach.
Glad to hear that you got it working! 🙂
April 2, 2013 at 12:59 pm
rs80 (4/1/2013)
April 1, 2013 at 9:25 am
Viewing 15 posts - 46 through 60 (of 137 total)