Viewing 15 posts - 1 through 15 (of 47 total)
the join hint, I do know exactly the situation, since table1 is a small size, and view is a really big size, I tried in real-time query and had this...
May 11, 2012 at 10:28 pm
Great thanks everyone!!!
I know it's hard to determine the actual problem without actual definition, even I have them on my hand but still can't tell why.
Yes, I just pasted the...
May 11, 2012 at 10:27 pm
Definition of view1:
"SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[view1]
AS
Select *
From table1 t1
Left hash Join view v on t1.id = v.id"
Definition of "view":
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create VIEW dbo.view2
AS
SELECT t2.id,...
May 11, 2012 at 2:31 pm
HowardW (5/8/2012)
May 8, 2012 at 8:44 am
Good question, it's actually the same scenario I am facing right now!!!
But I still have some questions:
#1 - I am using a partitioned view to union two tables, one is...
May 7, 2012 at 12:49 pm
I have the same problem.
While I am not updating a single row but instead I need to truncate the whole table and re-insert from a view, so in this case,...
May 7, 2012 at 12:04 pm
princa (6/16/2011)
Lowell (6/16/2011)
June 16, 2011 at 8:20 am
Lowell (6/16/2011)
June 16, 2011 at 8:04 am
Lowell (6/16/2011)
June 16, 2011 at 7:35 am
Brandie Tarvin (6/16/2011)
princa (6/16/2011)
Lowell (6/16/2011)
i learned something here, since i was used to think that GO + BEGIN TRANS were not compatible, and...
June 16, 2011 at 7:20 am
Lowell (6/16/2011)
i learned something here, since i was used to think that GO + BEGIN TRANS were not compatible, and now i know...
June 16, 2011 at 7:13 am
I tried everything I could to make sure the permission issue, still got the error message that I couldn't load the package!
Then I tried to use comdexe to execute the...
November 15, 2010 at 11:49 am
WillyWonka (12/21/2007)
November 15, 2010 at 9:21 am
I searched a lot online, and followed the procedures...even though I still get this when I try to schedule a job in agent job:
===================================
The package failed to load due to...
November 15, 2010 at 9:06 am
I checked the SQL Agent Server account, it uses local system as log on account. So need to modify local system's permission on directory and SQL Server?
Thanks
November 12, 2010 at 3:01 pm
Viewing 15 posts - 1 through 15 (of 47 total)