Viewing 15 posts - 8,941 through 8,955 (of 13,882 total)
karthik M (11/13/2014)
Does Triangular Join use O(N2/2) ?
Are you writing a thesis, or is there some practical reason for your questions?
November 13, 2014 at 4:32 am
Phil Parkin (11/13/2014)
karthik82.vk (11/13/2014)
Hi,The values comes from the database, so i will not be able to hardcore them.
Is there any way to get the desired output?
Of course. Just remove the...
November 13, 2014 at 2:15 am
karthik82.vk (11/13/2014)
Hi,The values comes from the database, so i will not be able to hardcore them.
Is there any way to get the desired output?
Of course. Just remove the CTE and...
November 13, 2014 at 2:13 am
Another slightly simpler version (thanks pietlinden for the data subquery):
with data
as (select 'P1' as Product_Name
...
November 13, 2014 at 12:30 am
Koen Verbeeck (11/12/2014)
arunnrj87 (11/12/2014)
Hi Phil ,Please reply
Please be aware that this is a forum of volunteers, where most of them have day time jobs as well.
Yep, this includes me. I...
November 12, 2014 at 6:34 am
OK, so is this solved now?
If not, please provide three or four sample file names, so that we can help with the Derived Column expression.
November 12, 2014 at 5:53 am
When you are retrieving the file name in the Foreach loop, consider selecting the 'Name only' option to avoid having to dissect the entire path string with your derived column...
November 12, 2014 at 4:17 am
Just a quick check. Can you confirm the data type (in SQL Server) of the new date column please?
November 12, 2014 at 4:12 am
Koen Verbeeck (11/12/2014)
Phil Parkin (11/12/2014)
arunnrj87 (11/12/2014)
Component Properties -- > Under Custom Properties-->In FileNameColumnName--> i have...
November 12, 2014 at 3:16 am
arunnrj87 (11/12/2014)
Component Properties -- > Under Custom Properties-->In FileNameColumnName--> i have five the Column Name...
November 12, 2014 at 3:10 am
Koen Verbeeck (11/12/2014)
November 12, 2014 at 2:05 am
arunnrj87 (11/12/2014)
Actually i have Flatfile as a TXT files .In that i have 100 Columns and i need to import those datas in to SQL Server 2012 by using...
November 12, 2014 at 12:36 am
Try removing the group by completely:
select count(distinct msdb.dbo.backupset.database_name)
from msdb.dbo.backupset
where datediff(day, backup_finish_date, getdate()) > 1 -- or is null
...
November 12, 2014 at 12:30 am
klineandking (11/10/2014)
CREATE TABLE tableValues(
[LASTENCRYPTIONDT] [datetime] NULL,
[ENCRYPTIONID] [int] NULL,
[NAME] [varchar](50) NULL
)
CREATE TABLE TableToupdate(
[LASTENCRYPTIONDT] [datetime] NULL,
[ENCRYPTIONID] [int] NULL,
[NAME] [varchar](50) NULL
)
tablevalues has...
November 11, 2014 at 12:10 am
Does table A have an IDENTITY(1,1) as a PK, by any chance?
If yes, you might be able to do something like this:
1) Set SSIS variable to SELECT Max(ID) from tableB.
2)...
November 10, 2014 at 12:50 pm
Viewing 15 posts - 8,941 through 8,955 (of 13,882 total)