Viewing 15 posts - 8,416 through 8,430 (of 13,882 total)
VRT (5/13/2015)
--
I don't see SQL Server Agent also, may be I don't have permissions to schedule.
This sounds very likely.
May 13, 2015 at 8:01 am
vipin_jha123 (5/13/2015)
so u can seee that when your package failed one files are...
May 13, 2015 at 3:30 am
reddychaitanyakrishna (5/13/2015)
I have a DFT in a package which loads around 2lakhs records in to destination but, it fails loading after 1 lakh records, my package was checkpoint enabled. I...
May 13, 2015 at 12:47 am
This is not a version issue. This relates to the fact that you saved the package with encrypt sensitive with user key turned on. if you save the package as...
May 12, 2015 at 11:15 am
sreenubabu.s (5/12/2015)
May 12, 2015 at 9:32 am
Something like this?
if object_id('tempdb..#date', 'U') is not null
drop table #date;
create table #date (a int, b int, dte date);
insert #date
(a
...
May 12, 2015 at 8:27 am
Then your top 1 query has a flaw too, it has no where clause.
No ORDER BY clause, I think you may have meant.
May 12, 2015 at 8:02 am
RTaylor2208 (5/12/2015)
The only exception is that when launching the application providing its on a windows machine you use the method of right clicking on the application and selecting "Run As"...
May 12, 2015 at 5:27 am
vipin_jha123 (5/12/2015)
Hi ,It was a problem with the length of column.
i increased the length of column and now running fine.
regards,
Vipin jha
I'm amazed you worked that out, based on the error...
May 12, 2015 at 2:58 am
Can you confirm that you have resultset set to none and include a screen shot of your parameter mapping screen?
May 12, 2015 at 1:30 am
Are you using the Copy Database wizard?
Why not use backup/restore instead?
Try looking for that text in all objects in the database using SQL Search[/url]
May 11, 2015 at 5:10 am
Is there anything special about
dbo.MostOrderedGenerics
?
May 11, 2015 at 2:20 am
Eric M Russell (5/8/2015)
Bradley Deem (5/7/2015)
Phil Parkin (5/7/2015)
'Flashback'. What is that?
Sorry, Oracle terminology. In SQL Server this would be Snapshot. Regardless, use technology to allow you to rollback to the...
May 8, 2015 at 7:25 am
am_mal80 (5/8/2015)
I need your help how to solve the below error.
Warning: 0x802092A8 at Data Flow Task, OLE DB Source [1]: Truncation may occur due to retrieving data from database...
May 8, 2015 at 6:46 am
Viewing 15 posts - 8,416 through 8,430 (of 13,882 total)