Viewing 15 posts - 3,706 through 3,720 (of 13,462 total)
you didn't provide any real details or example code;
without seeing the query featuring PIVOT, all i can offer is to use the SELECT...INTO TABLENAME FROM MyTable format.
April 9, 2013 at 8:04 am
and another way, via a scalar function:
/*--Results
cellindex containerid containerlength istwincarry ...
April 9, 2013 at 6:52 am
for me, it depends on the size of the table;
for huge tables, it takes a lot less than 20% of the rows to make the statistics stale enough that they...
April 8, 2013 at 2:22 pm
doug.davidson (4/8/2013)
I will use the sub select as the new work around until I finish my learning...
April 8, 2013 at 1:51 pm
without re-writing the scalar function to be an inline table valued function, i though getting intermediate results for the scalar function in a CTE or sub select would be easier:
i'm...
April 8, 2013 at 1:37 pm
172.17.15.100 looks like a public IP address, and not something on a private LAN;
typically, external servers are locked down to ignore everything except port 80(http).
if these servers are not on...
April 8, 2013 at 12:30 pm
fantastic job providing the DDL and sample data!
I think in this case, you need to match partial strings, right?
you will want to join the tables together, but use a LIKE...
April 8, 2013 at 12:24 pm
mister.magoo (4/8/2013)
Lowell (4/8/2013)
I've done this a few times;here's a link to a slightly modified version of Microsofts Microsoft.ApplicationBlocks.Data SQLHelper.cs class, which i ran thru a converter, and then enhanced.
Lowell, that...
April 8, 2013 at 11:36 am
I've done this a few times;
here's a link to a slightly modified version of Microsofts Microsoft.ApplicationBlocks.Data SQLHelper.cs class, which i ran thru a converter, and then enhanced.
the usage is something...
April 8, 2013 at 10:25 am
adonetok (4/8/2013)
I created a linked server and use it to select data from one server to another.Is there another way except for linked server which will do the same job?
OPENROWSET...
April 8, 2013 at 9:21 am
per Brians request, here's a parameterized stored proc using the logic i posted above;
there's some cleanup that should be introduced where im arbitrarily doing a REPLACE of vbLf with...
April 8, 2013 at 8:55 am
i would call SSMS a developer tool, and don't think it's really a tool for end users to be working with; it doesn't have any place like Access does to...
April 8, 2013 at 8:32 am
brian wow it's been a while since i saw this thread.
Today, I actually do the same with regular expressions and a CLR; if that's an option, let me know and...
April 8, 2013 at 8:08 am
Krishna1 (4/8/2013)
in the select query i want all the developners to access it in the query as
select customercode, customername
from mycstomer
instead of
select col1,...
April 8, 2013 at 7:48 am
Viewing 15 posts - 3,706 through 3,720 (of 13,462 total)