Viewing 15 posts - 4,201 through 4,215 (of 8,731 total)
sgmunson (7/27/2015)
aaidanmary (7/27/2015)
yes really I accept this point.Export money datatype is reduce in my loading time.I analysed.I hope this information. (EDIT: removed URL)
I see no relevance to the problem associated...
September 16, 2015 at 6:30 am
That's probably because the optimizer thinks that the key lookup is more efficient than the index.
You can force the use of the index and compare performance.
September 15, 2015 at 12:09 pm
Do you have any other process running constantly that might be dropping the linked server?
September 15, 2015 at 10:05 am
Or something like this?
CREATE TABLE SampleData(
filename char(3),
col1 char(1),
col2 char(1),
...
September 15, 2015 at 6:41 am
Have you tried something like this?
Update TABLE
set LEAD_NOTES__C = CAST( LEAD_NOTES__C AS varchar( 8000)) --Or whatever length you need.
This will remove unicode characters and replace them with a question mark...
September 14, 2015 at 8:51 am
whereisSQL? (9/14/2015)
anthony.green (9/14/2015)
Ed Wagner (9/14/2015)
Stuart Davies (9/14/2015)
Ed Wagner (9/14/2015)
anthony.green (9/14/2015)
snickersCandy
Girl
Boy
George
Jungle
Book
September 14, 2015 at 8:04 am
Check this for help: http://www.sqlservercentral.com/articles/comma+separated+list/71700/
September 14, 2015 at 7:30 am
I'm sorry, I can't help with that because it goes against my beliefs. You shouldn't be storing concatenated values like that. You can generate the string when querying the table,...
September 14, 2015 at 6:46 am
I saw a truck for this place[/url] this morning on my way to work. I wonder if they serve pork chops as a secret menu item. 😀
September 11, 2015 at 12:34 pm
We would need some DDL and sample data to try to understand what's going on in here and give proper advice.
This is what I got from your query, but...
September 11, 2015 at 12:24 pm
You're right. The forum options are limited and the software can be better. I've understood that this happens because this isn't a priority for Redgate and just try to keep...
September 11, 2015 at 11:59 am
You could use something like this:
WITH Addresses AS(
SELECT *,
DENSE_RANK() OVER (PARTITION BY BLOCK, STREET, CITY ORDER BY...
September 11, 2015 at 11:49 am
You can try this option: http://www.sqlservercentral.com/articles/CROSS+APPLY+VALUES+UNPIVOT/91234/
September 11, 2015 at 11:18 am
Does the server have access to the path specified?
You might want to check this thread as well: http://www.sqlservercentral.com/Forums/Topic1300136-392-1.aspx
September 11, 2015 at 11:11 am
Viewing 15 posts - 4,201 through 4,215 (of 8,731 total)