Viewing 15 posts - 3,706 through 3,720 (of 13,469 total)
maybe this?
SQL server tools / client components , integration services and browser are MACHINE aware - ie) 1 per machine.
SQL database engine , analysis services and reporting services are instance...
April 9, 2013 at 12:17 pm
more details are needed to really help, i guess;
maybe there's a custom entry in the hosts file:
from a commandline, notepad.exe %SystemRoot%\system32\drivers\etc\hosts
in that extension-less hosts file, maybe someone has put the...
April 9, 2013 at 11:00 am
sudhirnune (4/9/2013)
But my problem is that I may not be able to use the Global Temp table.
Can we Have the local temp / Genral table...
April 9, 2013 at 9:29 am
i edited the post, so re-copy it and try again.
the line for the global temp table should have been here:
set @query = 'SELECT name, ' + @cols2 + ' ...
April 9, 2013 at 8:46 am
i guess something like this, where you insert into ##GlobalTable would give you the results as a table so you can update from it later.
DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX),
@cols2...
April 9, 2013 at 8:30 am
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
Viewing 15 posts - 3,706 through 3,720 (of 13,469 total)