Viewing 15 posts - 91 through 105 (of 120 total)
You are the man, thank you very much! I'll try this in the morning and let you know.
Thanks,
Jordon
August 26, 2009 at 1:36 pm
awesome, I will try that! So, would I put that in a ssis package and schedule it, or is there a way that I can put it in sql...
August 26, 2009 at 1:03 pm
Can't really do a restore, the tables are completely different. Whenever a employe is created in the HR system, there are many things like employID, name, address, spouce, sex,...
August 26, 2009 at 12:50 pm
The issue is, both of these products are canned applications and I can't change what's being posted to the database, just trying to expand their flexability in the backend.
August 26, 2009 at 12:29 pm
Just looking at this, I can create a SSIS package the pulls from the one table and then post to the other table, but how do I create it where...
August 26, 2009 at 12:04 pm
It could happen every 24 hours for all that matters. I'll look into the SSIS package. I've used one of those before to import data and I'm sure...
August 26, 2009 at 12:02 pm
All I'm doing is when a new employee is created in our HR system, I want that new employee to go to another system, without having to do a manual...
August 26, 2009 at 11:37 am
mtassin (8/7/2009)
CREATE TABLE [dbo].[UPR00900](
Hmmm with names like those... let me guess.. Great Plains?
I find it sad that Microsoft makes very poor design mistakes like this stuff.. I'm getting used to...
August 7, 2009 at 2:34 pm
Actually, the primary key is the EMPLOYID, but its not unique. I know, I was like "What????" Anyway, what you did worked perfectly!!!
Thanks,
Jordon
August 7, 2009 at 8:03 am
Ok, so I think this project is getting harder than it needs to be; however, I had another hick-up in the plan. I had this working perfectly, using this...
August 7, 2009 at 7:23 am
Thank y'all very much for your help! I do believe that I've got it figured out! Y'all are awesome!!!
August 6, 2009 at 3:17 pm
I'm really new at T-SQL. I do have a background in PHP, so I know programming and I know SQL, just T-SQL is new for me, so I'm not...
August 6, 2009 at 2:44 pm
USE [db_table]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING OFF
GO
CREATE TABLE [dbo].[UPR00900](
[EMPLOYID] [char](15) NOT NULL,
[GROSWAGS_1] [numeric](19, 5) NOT NULL,
[GROSWAGS_2] [numeric](19, 5) NOT NULL,
[GROSWAGS_3] [numeric](19, 5) NOT NULL,
[GROSWAGS_4] [numeric](19, 5) NOT NULL,
[GROSWAGS_5] [numeric](19,...
August 6, 2009 at 2:14 pm
I appreciate the suggestions, just not possible. This is a Microsoft product that we can't edit how the tables are setup, because of how the program was writen. ...
August 6, 2009 at 1:48 pm
Also, I'm not limiting my records, so if I run the loop, I want it to return for all records in the table. Meaning, if I run the report...
August 6, 2009 at 1:40 pm
Viewing 15 posts - 91 through 105 (of 120 total)