Viewing 15 posts - 5,056 through 5,070 (of 5,685 total)
PFlorenzano-641896 (11/8/2010)
Hello Craig!The OPTION (FORCE ORDER) worked great! Thank you so much! I'm going to run this in a test environment and execute an optimization plan against it.
Pete
Be...
November 8, 2010 at 3:02 pm
Answer: Yes.
Next Question: How?
Next Answer: Please post DDL and sample data. See the first link in my signature for more help if you need it.
November 8, 2010 at 3:01 pm
pop up a SSIS package with a single data flow item, then put in your three OLEDB sources and destinations in the flow.
Define your source and target server in the...
November 8, 2010 at 1:56 pm
BaldingLoopMan (11/8/2010)
----RESULTS:--1,'Value1, Value2'
--2,'Value1, ValueC'
--3,'Value1, Value2,Value5'
--1,'Value2'
Need a results confirmation here, just making sure it's user error not expectation:
ValueC came from where?
There's no space between the second and third value in line...
November 8, 2010 at 1:51 pm
I would usually port the tables over using either SSIS packages, or a one shot data import via the GUI.
Going to need more information about the 'calculation' portion of what...
November 8, 2010 at 1:42 pm
GilaMonster (11/8/2010)
I'm not joking. To cover any one of those topics in moderate detail is a large...
November 8, 2010 at 1:24 pm
goodguy (11/8/2010)
November 8, 2010 at 1:05 pm
Grant Fritchey (11/8/2010)
November 8, 2010 at 12:30 pm
snoop123 (11/8/2010)
maintaining around 99 but...
November 8, 2010 at 11:30 am
GilaMonster (11/8/2010)
Does this count? http://www.sqlservercentral.com/Forums/Topic1017255-1292-1.aspx
Been guilty of that a few times myself. Service Broker was my last occurence of that.
Me: "Alright, I've got endpoints going cross domain, multi-dialog conversations...
November 8, 2010 at 11:21 am
GSquared (11/8/2010)
For example, these days, I'd expect if you know Union, you should also know Intersect and Except.
I guess I need to learn intersects. 😉
And before I'd worry about isolation...
November 8, 2010 at 11:15 am
If I'm understanding the question properly, swap the order of these items:
SET @Quary = 'SELECT '+@stmt + ' from tblfinance'
DECLARE db_cursor CURSOR FOR
SELECT Column_Name from tblColumns order...
November 8, 2010 at 12:22 am
Bunty, you left out too much of the question for us to even point you in the right direction, because if I read this right, you CAN go from B...
November 8, 2010 at 12:19 am
MonsterRocks (11/7/2010)
-- master table
---------------------------
menu id menuname
1 ...
November 7, 2010 at 1:14 pm
This works correctly for me:
declare @miljul varchar(5)
declare @y int
set @y = year('1/1/2008');
declare @yearpart varchar(4);
set @miljul = '312'
set @yearpart = convert(varchar(4), @y)
print @yearpart
set @miljul = RIGHT(@yearpart,2) + @miljul
print @miljul
Does...
November 7, 2010 at 1:11 pm
Viewing 15 posts - 5,056 through 5,070 (of 5,685 total)