Viewing 15 posts - 8,146 through 8,160 (of 13,876 total)
TomThomson (8/31/2015)
GilaMonster (8/31/2015)
What the total size of the Windows and 2 Program Files directories?
I'm...
September 1, 2015 at 2:28 am
Sounds like you need to open up those dataflows and make sure that everything is looking correct. Specifically, I would check the following:
1) Connections: source and destination both reachable.
2) Columns:...
August 31, 2015 at 3:39 am
Eirikur Eiriksson (8/30/2015)
balasach82 (8/30/2015)
August 30, 2015 at 5:09 am
Answered here.
August 27, 2015 at 11:41 pm
Nilssond (8/21/2015)
INSERT INTO dbo.SCHEDULES(SCHEDULEID, EFFECTIVE_DATE, AMOUNT) VALUES('CMS_MI_8202', '2015/01/01', 6.200)
INSERT INTO dbo.SCHEDULES(SCHEDULEID, EFFECTIVE_DATE, AMOUNT) VALUES('CMS_MI_8202', '2015/02/01', 6.225)
INSERT INTO dbo.SCHEDULES(SCHEDULEID, EFFECTIVE_DATE, AMOUNT) VALUES('CMS_MI_8205', '2015/01/01', 90.025)
INSERT...
August 22, 2015 at 2:39 am
Luis Cazares (8/21/2015)
Ed Wagner (8/21/2015)
Brandie Tarvin (8/21/2015)
Phil Parkin (8/21/2015)
and sjh.run_date >= (year(getdate() - 1) * 10000 + month(getdate() -...
August 21, 2015 at 7:23 am
I don't have an answer for you, but I do have a question.
Did you consider doing this in a dataflow?
Dataflow source = (your query)
Dateflow target = suitably configured OLEDB command.
It...
August 21, 2015 at 6:17 am
Ah yes, tried to take a sneaky shortcut. Needs to be fixed:
and sjh.run_date >= (year(getdate() - 1) * 10000 + month(getdate() - 1) * 100 + day(getdate() - 1));
August 21, 2015 at 5:45 am
Haven't been following that thread, but I do have some suggestions for your query. Here's mine, derived from yours.
select ServerName = @@SERVERNAME
,JobName...
August 21, 2015 at 5:29 am
OK, and please get rid of cur2:
insert Monitor.dbo.Procedurecode
(DB
,ROUTINE_NAME
...
August 21, 2015 at 2:30 am
ratloser99 36160 (8/21/2015)
I like to backup the stored procedures' code used in my databases. So I created this Script:
/*
IF OBJECT_ID('[Monitor].[dbo].[Procedurecode]') IS NOT NULL DROP TABLE [Monitor].[dbo].[Procedurecode];
*/
DECLARE
@db nvarchar(50),
@strSQL nvarchar...
August 21, 2015 at 1:24 am
Try doing a Google search for SSIS IMEX=1.
It should fix your problem if you add IMEX=1 to your Excel connection extended properties.
August 19, 2015 at 2:55 pm
Easiest solution: import from CSV instead.
August 19, 2015 at 1:03 pm
Viewing 15 posts - 8,146 through 8,160 (of 13,876 total)