Viewing 15 posts - 1,141 through 1,155 (of 14,953 total)
L' Eomot Inversé (7/27/2012)
GSquared (7/27/2012)
Brandie Tarvin (7/27/2012)
If joining a VARCHAR(8000) to a VARCHAR(MAX) value degrades performance, how does one get around this?
I'm not speaking in the...
July 27, 2012 at 9:02 am
Brandie Tarvin (7/27/2012)
If joining a VARCHAR(8000) to a VARCHAR(MAX) value degrades performance, how does one get around this?
I'm not speaking in the context of the splitter...
July 27, 2012 at 6:58 am
PaulB-TheOneAndOnly (7/27/2012)
GSquared (7/26/2012)
PaulB-TheOneAndOnly (7/26/2012)
Lucky9 (7/26/2012)
Could someone please help me with the steps that needs to be followed
when redesigning...
July 27, 2012 at 6:50 am
The sudden cut-off at 7 characters will be something specific to the use of memory addressing, most likely. Nothing you can do about that in the code.
July 27, 2012 at 6:35 am
CELKO (7/26/2012)
July 27, 2012 at 6:34 am
The usual way I do things like that is grab the queries out of Profiler (or out of a server-side trace, either one), and have devs find those queries in...
July 26, 2012 at 2:16 pm
Unless it's always 4 values (or some other static number), you probably need to use a string-parsing function. There are several out there that you can use. Look...
July 26, 2012 at 2:13 pm
Are any of the queries on it dynamic? Either full-on dynamic SQL, or Linq or anything like that?
July 26, 2012 at 1:40 pm
The trigger is probably failing because of the NULL bit already mentioned, but I want to suggest that you move the code out of a trigger and into a stored...
July 26, 2012 at 1:39 pm
Jayanth_Kurup (7/26/2012)
u cud try a computed column with a function call also.
Computed column won't work for a value that's based on GetDate(). Value of the column would change every...
July 26, 2012 at 1:37 pm
PaulB-TheOneAndOnly (7/26/2012)
Lucky9 (7/26/2012)
I have to redesign the database based on the new business requirementsCould someone please help me with the steps that needs to be followed
when redesigning a database.
Either...
July 26, 2012 at 12:56 pm
If you want to update the first column so that it's the last 3 characters of the second column, it would look like this:
Update dbo.MyTable
set Col1 = right(Col2, 3);
Is that...
July 26, 2012 at 12:50 pm
Is it something where you could use full-text indexing? Like looking in a string made up of separate words, as opposed to a solid string.
FTI will work on, "Today,...
July 26, 2012 at 12:48 pm
It makes sense in the same way a reserve tank made sense on old VWs. Sure, you could consolidate it all into one fuel tank and get the same...
July 26, 2012 at 12:15 pm
Back up the registry and edit away. In a test environment. That's all I can suggest.
I usually just stick with using instance names in the standard format. ...
July 26, 2012 at 12:08 pm
Viewing 15 posts - 1,141 through 1,155 (of 14,953 total)