Viewing 15 posts - 8,386 through 8,400 (of 13,882 total)
If you're looking only for those rows where the 'latest' status is 'bad', something like this should work:
if object_id('tempdb..#GoodBad', 'U') is not null
drop table #GoodBad;
create table #GoodBad
...
June 1, 2015 at 11:34 am
Maybe there's a better way, but this seems to work.
declare @StartTime nvarchar(10) = '12:10';
declare @EndTime nvarchar(10) = '12:30';
declare @Diff time(1) = cast(@EndTime as datetime) - cast(@StartTime as datetime);
select StartTime...
May 31, 2015 at 8:54 am
As far as I know, you cannot use Python in a Script Component, so I think you are limited by that.
May 30, 2015 at 3:47 am
nshockley (5/29/2015)
These packages have been upgraded on our...
May 30, 2015 at 3:46 am
You could do the whole thing (parsing, splitting, outputting one row with multiple columns per @ group) using an asynchronous Script Component, but it would take a fair chunk of...
May 29, 2015 at 6:55 am
Resender (5/29/2015)
I set it to don't savesensitive still seeing the message popup,job itself is not failing
Just to confirm. You changed the package and the project, setting Don't Save Sensitive for...
May 29, 2015 at 6:36 am
rajeshjaiswalraj (5/28/2015)
What is the difference between DMV, DBCC and DMF
My broad answer to your equally broad question is that these are initialisms for different sets of functionality.
Perhaps you would take...
May 29, 2015 at 12:01 am
Change your package and project to "Don't Save Sensitive" and redeploy. After adding suitable configuration info to supply passwords etc at run time, the error should go away.
May 27, 2015 at 5:00 am
Are there any other error messages appearing before or after this one?
May 27, 2015 at 1:46 am
Yes it can.
Create table [schema].[name] (Id int identity(1,1) primary key clustered)
May 23, 2015 at 10:05 am
Even tried a reboot
Never mind 'even', that one of the first things I try! Then a repair install.
Never had that problem. Good luck fixing it.
May 22, 2015 at 8:28 am
Minnu (5/22/2015)
using below code to replace the city names, how to avoid hard coding of city names in below query and get from a table.
select id, city,
LTRIM(RTRIM(REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(city,
'JRK_Ikosium', 'Icosium'),...
May 22, 2015 at 3:32 am
alexmpd (5/20/2015)
I imported database to SSDTand excleded several objects
How to know what objects have been excluded?
Do a schema compare between your project and your database.
May 20, 2015 at 7:59 am
vipin_jha123 (5/20/2015)
In my SSIS Project I am having many lookup.
for example flow is like below
having 1 OLEDB Source with 4 lookup task
then task task is conditional split is...
May 20, 2015 at 4:10 am
Viewing 15 posts - 8,386 through 8,400 (of 13,882 total)