Viewing 15 posts - 12,421 through 12,435 (of 26,486 total)
Eugene Elutin (4/26/2012)
April 26, 2012 at 10:54 am
If you are grtting this error:
The error I get is actually -
Invalid length parameter passed to the substring function.
It means some of your data does not contain the value...
April 26, 2012 at 9:57 am
If you reread Gus's post he broke out the Addr, CHARINDEX, and LEFT processes as a demonstration of each of the pieces.
April 26, 2012 at 9:53 am
Gus's code didn't work for me in SQL Server 2005, this is what I ended up running:
SELECT Addr,
CHARINDEX(CHAR(10), Addr, 1),
...
April 26, 2012 at 9:49 am
QUESTION: why SCOPE_IDENTITY() was used? Is it because:
1. both tables have a same column name named person_id alone (I mean ONLY just the name matters)?
2. person_id column in PERSON table...
April 26, 2012 at 9:42 am
Not from what you have posted. Not really sure what you are asking or trying to accomplish.
You may benefit from reading the first article I reference below in my...
April 26, 2012 at 9:34 am
Seems like a lot of work to setup OA Automation when SQL Server and Service Broker already have a lot of the plumbing already in place. I guess it...
April 26, 2012 at 9:32 am
Steve Jones - SSC Editor (4/26/2012)
Anyone want to tackle a semi-complex reporting / accounting issue?http://www.sqlservercentral.com/Forums/Topic1290025-1291-1.aspx#bm1290373
Steve, How far out do you have QotD planned? I have been trying to get...
April 26, 2012 at 8:59 am
SQLKnowItAll (4/26/2012)
FunkyDexter (4/26/2012)
The first column of your table is an integer field defined with the Identity property. You have...
April 26, 2012 at 8:51 am
cs2data (4/26/2012)
Elliott and Lynn,Thanks, I will look into that. Are there any concerns about reliability with Service Broker?
I haven't used it in an application, but I have used it...
April 26, 2012 at 8:36 am
Nope. Proc1 will wait until procB returns to proc1. The calls are syncronous.
If you are looking at implementing asyncronous processing you should look into using Service Broker.
April 26, 2012 at 8:28 am
poornipmca (4/26/2012)
how to use a single user defined functions in multiple databases
The bottom line is this, you can't use dynamic sql in a function. Your choices are to have...
April 26, 2012 at 8:25 am
I will give you some ideas:
Be sure you understand indexes and the differences between them (specifically clustered and nonclustered, but not limited to just these).
Understand normalization and denormalization, the why's...
April 26, 2012 at 8:08 am
dwain.c (4/26/2012)
April 26, 2012 at 6:52 am
Well, good luck. I'd push to store the data as nvarchar instead of trying convert the data back and forth between unicode and extended ascii character codes.
April 25, 2012 at 11:18 pm
Viewing 15 posts - 12,421 through 12,435 (of 26,486 total)