Viewing 15 posts - 1 through 15 (of 5,503 total)
Did you try use OPENQUERY to force the ORDER BY being performed at the MySQL side before transferring the data?
What happens if you run that query directly at the MySQL...
January 28, 2015 at 3:56 pm
Something like this?
SELECT
MAX(CASE WHEN name ='Name' THEN data ELSE NULL END) AS Name,
MAX(CASE WHEN name ='Email' THEN data ELSE NULL END) AS Email,
MAX(CASE WHEN ...
January 28, 2015 at 3:02 pm
The description in the original link is somewhat misleading:
the part related to "create function..." and the following part "While EXISTS..." are both part of the same function.
The function should look...
January 19, 2015 at 2:49 pm
@lowell: I tend to disagree that design you posted will actually work as expected (beyond the typo FETCH NEXT FROM MynewCursor without moving INTO @item, @oper_num to the...
January 19, 2015 at 2:11 pm
lokesh.shukla-634965 (1/3/2015)
But, my 2nd question is still not better understood (How clustered index and non-clustered index are related?).
Can you elaborate it...
January 3, 2015 at 2:58 am
Steve Jones - SSC Editor (1/2/2015)
January 2, 2015 at 11:15 am
A slight correction regarding the clustered index:
The sort oder is not physical (in terms of sequential location on a spindle), but logical.
January 2, 2015 at 9:28 am
Step 1: create a calendar table that also include a column to flag a business day (e.g. tinyint with constraint 0,1). There are numerous blogs on how to build a...
December 31, 2014 at 8:01 am
Here are a few links that might help you to get started with understanding the different data types:
and
December 29, 2014 at 3:37 pm
I've done more than one project where an app originally started with ACCESS only being converted to SQL Server back end and ACCESS as a frontend.
It's doable but there are...
December 24, 2014 at 11:12 am
I'd vote against a denormalized table. Stick with your current design at the table level.
If needed for an application layer you could use a pivoted view to display it in...
December 24, 2014 at 9:54 am
Yeha!!! It's spam time again! :angry: :crying:
December 24, 2014 at 9:49 am
The major question is: How important is this database for your company?
Will it change anything if, after a year or so, the system crashes and becomes unavailable and/or if all...
December 24, 2014 at 9:27 am
For the part of your question:
To send 3GB across a network and process it a the client side takes a while.
I can't think of any scenario why the display of...
December 24, 2014 at 8:37 am
Stupid error.... :crazy:
Replace
DATEADD(yy,x.N,DATEADD(dd,Number,@FY+'0401')) as FDay,
with
DATEADD(dd,Number,DATEADD(yy,x.N,@FY+'0401')) as FDay,
The first line add the year after the number of days are added. This leads to ignoring leap years if the start year...
December 24, 2014 at 3:17 am
Viewing 15 posts - 1 through 15 (of 5,503 total)