Viewing 15 posts - 11,236 through 11,250 (of 13,469 total)
most connectivity issues I've run into has more to do with server name resolution or DNS than anything else;
for the connection string, are they using the machine name, an IP...
April 14, 2009 at 9:34 pm
pshvets (4/14/2009)
Hmmm...Does it mean that recursion cannot be used in this example? Or it should be implemented differently?
Thanks,
Pit
recursion has it's place, of course, but it does not serve string manipulation...
April 14, 2009 at 7:45 pm
yeah, i think you'll need to use a loop from 1 to datalength(@inputstring), and appending the char in reverse order.
recursively calling a string that fiddles with one or two...
April 14, 2009 at 6:45 pm
a unique index is just that: a constraint and index that prevents duplicate values.
unique means you can't have 2 nulls in the table., one NULL max.
it is up to you...
April 14, 2009 at 10:37 am
Grant's advice is important: bad statistics = bad execution plan.
update your statistics on your SQL2005, and see if your old query performs better.
if your UDF is doing the same code...
April 14, 2009 at 8:40 am
valuable info Grant; i did not know that about linked servers vs openquery... Thanks
April 14, 2009 at 7:40 am
i'd need the real data to test, anything I say from here out is speculation.
ok we know the server is trying to compare BIBAC to ACCOUNTNUM;
we know that the server...
April 14, 2009 at 7:36 am
Rowan try this method instead; I know a left join is my preference, but I think tat because you are doing 4 operations on the column BIBNAC, and 4 operations...
April 14, 2009 at 5:19 am
is the query using a linked server in SSMS to go to a MySQL Database used by PHP database?
Is PHP Connecting to a SQL2005 database? I know PHP with MySQL...
April 14, 2009 at 5:07 am
sounds like nested case statements might be what you need, but it's help enourmously if we had some sample data and expected results;
are you trying to identify where there are...
April 13, 2009 at 7:47 pm
the trick here is to join a table against a copy of itself...to do that, you need to alias one or both tables;
something like this is pretty close, use this...
April 13, 2009 at 7:28 pm
I'm making some minor assumptions, and changed your query accordingly;
if there is an employee id in SGA_Labor, we KNOW he has a name, right? so we can assume that the...
April 13, 2009 at 6:29 pm
if you were to post CREATE TABLE... information, as well as the INSERT INTO...scripts, we could help you much better; even with your followup answer, it is still not clear...
April 13, 2009 at 2:57 pm
I'm not sure oif the requirement.
Do you want to be able to see all the statuses in Database7, if one gets added in Database5 for example, or do you want...
April 13, 2009 at 11:57 am
can't you just do the following:
build a new table on your secondary file group with the same structure,
insert into it,
rename the old
rename the new?
isn't that effectively what...
April 13, 2009 at 6:39 am
Viewing 15 posts - 11,236 through 11,250 (of 13,469 total)