Viewing 15 posts - 1 through 15 (of 18 total)
Sean Lange (3/27/2014)
I changed the name Case to MyCase because I hate working with reserved words and typing brackets around table...
March 28, 2014 at 1:26 am
Here the scripts:
Create table tmp.[Case]
(
CaseID varchar (50),
Resolution varchar(50),
);
INSERT INTO tmp.[Case] (CaseID, Resolution)
VALUES ('4647018364','Void')--no subcase available
,('4647018265','Parts')--no subcase available
...
March 27, 2014 at 10:47 am
Sean Lange (3/27/2014)
Golden_eye (3/27/2014)
Correct, I want to create rows in the SubCase table when a Case has no SubCase. This is permanent, not during a query.
Then you will need to...
March 27, 2014 at 9:37 am
Correct, I want to create rows in the SubCase table when a Case has no SubCase. This is permanent, not during a query.
March 27, 2014 at 9:29 am
Jeff Moden (2/2/2014)
February 3, 2014 at 7:18 am
Hello,
Yes, it doesn't make sence for this fiedl to be char(7), but that is so in the source system. I guess I can contact the admin, but just in case...
February 3, 2014 at 1:56 am
Sean Lange (11/14/2013)
Golden_eye (11/14/2013)
Hello,Any suggestions how I can prevent the NULL values in a column when the datatype is float?
Thanks
P.S. ISNULL(mycolumn,'0') is not working
Pretty sparse on details here. Not sure...
November 15, 2013 at 12:44 am
Hello Veteran,
Thank you for the reply.
First it is a space issue and also design issue.
However what I need is to keep only the data from the last ~90 days.
September 18, 2013 at 2:29 am
Yes, the last one works within my whole script.
Thanks a lot!
September 17, 2013 at 10:41 am
Hello and thanks for the replies!
My problem is that I need to use this transformation in SSIS.
Basically Table 1 is my source and table 2 is my destination.
If I use...
September 11, 2013 at 9:08 am
For example if I have this table:
Column 1Column 2Column 3Column 4Column 5
A 22 ...
September 11, 2013 at 6:42 am
Just a small hint - check if the columns in your destination table allows NULLs and change that.
September 7, 2013 at 2:36 am
Thank you! 🙂
March 5, 2013 at 9:00 am
ok, lets say that the script look like this:
USE master
GO
--Create the main Persons table
CREATE TABLE Persons
(
FirstName varchar(20)
,LastName varchar (20)
,Title varchar(10)
,Email varchar (20)
,IsRowCurrent tinyint
,LastUpdated DATETIME
,ValidFrom DATETIME
,ValidTo DATETIME
)
--Populate...
March 5, 2013 at 5:57 am
Viewing 15 posts - 1 through 15 (of 18 total)