Viewing 15 posts - 361 through 375 (of 429 total)
well, it is a pretty complicated join.
you might be able to improve perf by using a few temp tables instead, to decrease the number of joins.
January 23, 2007 at 1:19 pm
You have many scans on the "par" table, in different spots in the plan.
is that a large table?
January 22, 2007 at 5:54 pm
???
select cast(deptno as varchar) + ',' + ename
January 22, 2007 at 5:46 pm
insert into MyDestination (MyCol)
select MyCol from MySource
January 22, 2007 at 5:37 pm
The title of this thread completely confused me at first. Probably you shouldn't call temp tables "hash tables" in the future, lest you confuse others.
January 21, 2007 at 10:42 pm
if you are using the text datatype, there is no practical limit to how big a string will fit in it. same with ntext.
the ones that are limited are...
January 19, 2007 at 5:26 pm
any assembly implementing a CLR sproc that reads from the file system must be created with the EXTERNAL_ACCESS keyword. and as the error msg says, you can only create...
January 19, 2007 at 10:38 am
also sqlspec does more than just SQL Server.
Oracle, MySQL, Access, Analysis Services are supported.
DB2, Sybase, PostgreSQL coming soon...
January 18, 2007 at 1:19 pm
select * from INFORMATION_SCHEMA.PARAMETERS
January 11, 2007 at 12:05 am
doesn't this give you a hint?
Error 2(The system cannot find the file specified.) occurred while opening file 'C:\Program' to obtain configuration information at startup. An invalid startup option might have...
January 9, 2007 at 12:00 pm
they are the cmd line args you pass to sqlservr.exe. they would be defined in the properties page for the sql service in Service Control Manager.
see:
January 9, 2007 at 10:46 am
why don't you do what I suggested then. did you even read my post?
January 9, 2007 at 10:05 am
if you are using bcp and can't create a sproc, you can put the whole thing in a .bat file and build up your query in an environment variable, so...
January 8, 2007 at 6:00 pm
I think it's because you have a function call in the where clause.
what does the plan look like if you take the function call out, that is:
UPDATE EmpApp
SET...
January 8, 2007 at 5:46 pm
Viewing 15 posts - 361 through 375 (of 429 total)