Viewing 15 posts - 46 through 60 (of 66 total)
I have to say you are very ambitious to use XRef to have cross-reference. It seems to me what you are trying is:
Select * from (Select detail.ID, detail.DX, detail.Mcode ,...
February 22, 2007 at 3:36 pm
What I showed you was to prove the data model was working for you. Specially the ConditionLine table is the key in my model. I put this table because the...
February 22, 2007 at 3:14 pm
No, you do not replace the string but global variable will be replaced automatically. Follow the instruction below but I added this already in the previous mail.
Now you need...
February 22, 2007 at 1:45 pm
Is this something you wanted? Then you need an identity.
SET NOCOUNT ON
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[TestID]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[TestID]
Create Table TestID...
February 21, 2007 at 6:29 pm
Try this:
-- Create tables ModelOffice, Condition, ConditionLine. ConditionLine table contains the office and Condition information.
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ModelOffice]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table...
February 21, 2007 at 5:35 pm
For Global Variable: http://msdn2.microsoft.com/en-us/library/aa933470(SQL.80).aspx
For ActiveX Script: http://msdn2.microsoft.com/en-us/library/aa933459(SQL.80).aspx
For Connection: http://msdn2.microsoft.com/en-us/library/aa176223(SQL.80).aspx
For Execute SQL Task: http://msdn2.microsoft.com/en-us/library/aa933511(SQL.80).aspx
February 21, 2007 at 3:16 pm
I am sorry that I could not understand clearly your situation. What is dies table? In your original inquiry it said:
I am building a DB to handle production...
February 21, 2007 at 2:41 pm
I am attaching one of my sample ActiveX Scripts. Basically it loop through a folder to find files using the Function ShouldILoop. if a file found the function returns TRUE...
February 20, 2007 at 10:20 pm
Use GlobalVariable. This is how you can do it.
Inside the Dynamic...
February 20, 2007 at 9:51 pm
Yes, you can send an email using GlobalVariable.
February 20, 2007 at 9:22 pm
This is because when you run the DTS...
February 20, 2007 at 8:29 pm
Suggestions:
February 18, 2007 at 6:11 pm
I am not too certain why you are complicating youself by using self join table. Do you have to build using only one table that hold the series of dies?...
February 18, 2007 at 5:59 pm
"I did not change anything" is something always being heard from develpers. There must be something has been changed whatever that is.
I suggest to trace through SQL Profiler. You will...
February 15, 2007 at 7:54 pm
It seems like you have two issues here.
1. Microsoft VBScript runtime error '800a01a8'
Object required: ''
/iPortforms/Stock/StockStatSegments/A1.asp, line
I am not too certain whether you figured out this issue??? I...
February 15, 2007 at 7:04 pm
Viewing 15 posts - 46 through 60 (of 66 total)