Viewing 15 posts - 1 through 15 (of 16 total)
Paul,
Below is the table definition:
CREATE TABLE [dbo].tableName(
column1 [int] NOT NULL DEFAULT (0),
column2 [varchar](8) NOT NULL,
column3 [numeric](10, 2) NOT NULL DEFAULT (0),
column4 [bit] NOT NULL DEFAULT (0),
column5 [numeric](8, 0) NOT NULL...
August 31, 2009 at 9:33 am
CEWII,
Exactly!!... I was expecting to see 3 or more different options from the forum and would pick the best 3 for test.
Ignas
August 29, 2009 at 12:40 pm
CEWII,
I will try this approach and let you know the feedback..
Thanks,
Ignas
August 29, 2009 at 9:19 am
I will be grateful for the copy : ichilewa@gmail.com
Thank You
April 7, 2008 at 10:16 am
Thank you Roger your detailed response.
It is true that I wanted to see how people automate their unit testing strategies.
I've been testing my changes be in a stored procedure, trigger,...
August 28, 2007 at 10:10 am
Does it mean that people don't do unit testing or rather they decide to keep quite as they are not comfortable with this topic..
Someone come please, give me your experience...
August 27, 2007 at 1:34 pm
Notification Services will be affected on both sql2k and sql2k5..
Please refer to the details and fix at http://support.microsoft.com/kb/931815/en-us
Ignas Chilewa
Dublin, Ohio
February 21, 2007 at 12:53 pm
You can also think of using query to retrieve all records of interest .. see sample below
select t1.a, t1.b, t2.c
from table1 t1 <left> join table2 t2 on
t1.a =...
December 1, 2006 at 11:31 am
Robert,
Thank you for your great idea, I like the idea of using checksum.
How expensive it is in terms of performance?
Ignas
November 21, 2006 at 2:08 pm
Thanks Ninja for the great inputs.
I will sit down with my team members to try to digest these two possibilities, trigger and using a local copy.
Again thank you.
Ignas Chilewa
Dublin, OH
November 20, 2006 at 8:56 am
Yes Ninja,
Track changes of the data and not data types or otherwise..
Yes, I do have read access to this table and we would like to minimize duplication as much as...
November 20, 2006 at 8:46 am
Ninja,
I want to keep track of changes on one of n columns in this external table which has more than n number of columns.
Trigger has been ruled out as this...
November 20, 2006 at 8:31 am
You can also think of creating trace, filtering to an object you want to monitor changes, capturing t-sql and stored proc to the statement level.
Save the output to a...
October 17, 2006 at 8:08 am
You can also use the following script to accomplish the same request.
INSERT INTO tblBackupCourses
SELECT tblCourses.*
FROM tblCourses, tblGrades
WHERE couCourseID = graCourseID AND graStudentID = 'ID1'
AND not...
September 28, 2006 at 8:21 am
You can try this one :
-- start here
declare @output_param <data type>
exec BuildBookTitleFromTempTable @output_param output -- I'm assumming that you will modify ur sproc to include output param
update pubs
set booktitle =...
September 1, 2006 at 4:37 pm
Viewing 15 posts - 1 through 15 (of 16 total)