Viewing 15 posts - 8,401 through 8,415 (of 13,876 total)
Or continue to be boring.
Calling someone boring just because they can't script is a bit harsh!
May 18, 2015 at 4:45 am
And the answer to (A) is that there will be no issues installing it on the same server.
Though if it's a production SQL server, you would normally not install...
May 17, 2015 at 3:12 am
Grant Fritchey (5/15/2015)
Vyper426 (5/14/2015)
May 15, 2015 at 4:29 am
Jason A. Long (5/14/2015)
That test was done using SQL Server 2014 Dev Edition. (Local instantaneous running on a laptop)
Local instantaneous? That's fast!
May 14, 2015 at 9:20 am
metroman17 (5/14/2015)
Sql:select @@servername as ServerName as SQL command.
The above sql is part of OLE DB Source
The OLE DB Destination has...
May 14, 2015 at 3:14 am
An interesting read, thank you very much. Hope you don't mind me mentioning a few minor typos:
'FacTransaction_ColumnStore' – needs an extra 't'
'Compression ration' – ratio
'foorprint' – footprint
'datawarhouse' – missing 'e'
'which...
May 14, 2015 at 2:24 am
tom.w.brannon (5/13/2015)
May 13, 2015 at 2:59 pm
The proposed data structure is not pleasant, from a relational standpoint. You should never have repeated occurrences of people's names, for example. And rows 3 and 4 of your desired...
May 13, 2015 at 10:46 am
RantaSanta (5/13/2015)
May 13, 2015 at 10:19 am
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
Viewing 15 posts - 8,401 through 8,415 (of 13,876 total)