When you query a view (a child view) inside another view (a parent view), always remember to recreate the latter one when you change a datatype of a column in the former one.
An example:
-- a child view
CREATE VIEW dbo.FOO
AS
SELECT 'a' AS A
GO
-- a parent view
CREATE VIEW dbo.BAR
AS
SELECT *
FROM dbo.FOO
GO
sp_help BAR
-- column A has a datatype of varchar(1)
-- Column_name Type Computed Length
-- ------------ ---------- ---------- ------- [...]
-- A varchar no 1
DROP VIEW dbo.FOO
GO
CREATE VIEW dbo.FOO
AS
SELECT 'aa' AS A
GO
sp_help BAR
-- sp_help still shows that column A has a datatype
-- of varchar(1), although it is now varchar(2) - see
-- the SELECT statement below
-- Column_name Type Computed Length
-- ------------ ---------- ---------- ------- [...]
-- A varchar no 1
SELECT *
FROM dbo.BAR
-- A
-- ----
-- aa
If you now try to run the following query:
SELECT *
INTO dbo.NEW_TABLE
FROM dbo.FOO
it will fail with an String or binary data would be truncated error.
2006/07/22
2006/07/19
Visual Studio 2003 sets a breakpoint in another file
There is a bug in Visual Studio 2003 that sometimes makes setting a breakpoint in certain files impossible. When you try to set it, the breakpoint is set, but not in the file that you opened - the moment you hit F9, VS jumps to another file and sets the breakpoint there.
I struggled with this problem for quite a long time. I tried using the mouse instead hitting F9, setting the breakpoint on different lines, reopening the file, reloading the project, restarting VS, using another machine. Nothing helped.
Finally, I discovered that I could open a Breakpoints window (Crtl+Alt+B), press New button and create a new Function Breakpoint - a breakpoint of this type was created successfully.
Note that you can copy the full name of a function from the Class View window.
I struggled with this problem for quite a long time. I tried using the mouse instead hitting F9, setting the breakpoint on different lines, reopening the file, reloading the project, restarting VS, using another machine. Nothing helped.
Finally, I discovered that I could open a Breakpoints window (Crtl+Alt+B), press New button and create a new Function Breakpoint - a breakpoint of this type was created successfully.
Note that you can copy the full name of a function from the Class View window.
Subscribe to:
Posts (Atom)