Viewing 15 posts - 7,756 through 7,770 (of 13,882 total)
antonio_scp125 (1/5/2016)
The beginning of the contract
Please bear in mind that I have no idea about your data. I do not know what your contracts are. I don't know what 'players'...
January 5, 2016 at 11:52 am
This construct
t.ticket_date BETWEEN @SearchFromTicketDate AND @SearchToTicketDate + ' 23:59:59:997')
Should be written like this, to completely avoid any problems with fractions:
t.ticket_date >= @SearchFromTicketDate AND t.ticket_date < (@SearchToTicketDate + 1 day))
January 5, 2016 at 11:24 am
What is your connection string?
January 5, 2016 at 11:19 am
antonio_scp125 (1/5/2016)
•Name (nvarchar(250))
•Dt_Contract (date)
•New_Player (int)
•DT_Execution (datetime)
The New_Player is a...
January 5, 2016 at 10:36 am
bpowers (1/5/2016)
Header 06721
Header 05482
Header 04263
Detail 06721
Detail 05482
Detail 05482
Detail 04263
Etc...
Not sure if...
January 5, 2016 at 10:31 am
vipin_jha123 (1/5/2016)
Please suggest the way by which I can get the solution
You could try using FINDSTRING() instead.
FINDSTRING(@[$Package::StateExcludeNames], [State], 1) == 0
where [State] is the data column and
$Package::StateExcludeNames is a...
January 5, 2016 at 10:29 am
vipin_jha123 (1/5/2016)
I have source flat file , I want to exclude the records containing below state.
I have created one variable which data type is string and value is as...
January 5, 2016 at 8:36 am
hartmann 74688 (1/5/2016)
Personally, I will continue to use datetime unless I need the additional accuracy afforded by datetime2. Why? Because datetime columns perform better and require less disk space than...
January 5, 2016 at 8:19 am
I spotted a few minor typos:
"legacy tables that uses datetime" - use
"some developer simply" - developers
"8 byte of storage" - bytes
"ambigous" - ambiguous
"Let;s " - Let's
January 5, 2016 at 8:18 am
hartmann 74688 (1/5/2016)
pjdijkstra (1/5/2016)
January 5, 2016 at 8:10 am
Have you considered using Change Tracking?
January 5, 2016 at 6:20 am
The columns in a single result set cannot vary between rows.
But maybe you can create a simple result set containing something like (RecId Rownum Data) where the Data column is...
January 4, 2016 at 4:59 pm
RonKyle (1/4/2016)
Are you sure that the connection string you were 'using in the package' was not being overridden by a config item (eg, an Environment Variable)?
Yes, I'm sure. ...
January 4, 2016 at 1:25 pm
RonKyle (1/4/2016)
January 4, 2016 at 1:07 pm
Alan.B (1/4/2016)
--For me, that's been the 0.0001% exception.
Wow. That suggests you have written/tested 10,000 (or more) TVFs :w00t:
January 4, 2016 at 11:21 am
Viewing 15 posts - 7,756 through 7,770 (of 13,882 total)