Viewing 15 posts - 46 through 60 (of 90 total)
Sho' 'nuf! You can play around with this...
CREATE
FUNCTION dbo.udf_stripString
(
@prmString VARCHAR(512) = NULL,
@charList VARCHAR(256) =...
June 23, 2006 at 3:03 pm
Thanks but the semantics/syntax are more of the issue. I am almost certain there is a way to do this without an iterative procedural solution (i.e. pure set-based SQL nirvana)... ...
June 23, 2006 at 2:43 pm
If the files are on different filegroups, only objects specifically created on the new filegroup will reside there.
If the files are on the same filegroup, only new objects will be...
June 23, 2006 at 1:52 pm
A clustered index is part of the physical table. It must remove the index rows from the table to 'return' it to a heap (table w/o clustered index).
See books online for a...
June 23, 2006 at 12:29 pm
Hi Susan,
Look for the OPTION clause in the SELECT statement in Books Online. You can specify the MAXDOP in the query instead of server-wide.
HTH,
Art
June 23, 2006 at 12:08 pm
Definitely change the query as described by PW - I would go one step further and specify the fully qualified table name in the UPDATE clause - but that's...
June 6, 2006 at 11:51 am
Another 'clarification' may help too...
WHERE status = 'New' AND (email = 'xxx' OR creator = 'yyy')
...of course there are indices on the parent, parentcategory, child, childcat... columns, aren't there?
a composite...
May 25, 2006 at 9:48 am
dbArtisan
SQLCompare
SQLDataCompare
SEM
SQL Profiler
PerfMon
ER/Studio
May 25, 2006 at 9:13 am
Another possible method to shorten the transaction is to:
INSERT INTO TableB SELECT..FROM TableA
DELETE FROM TableA INNER JOIN TableB ON...
Assuming that indices are available for the SELECT and DELETE..JOIN
May 25, 2006 at 9:06 am
Yes indeed! Thank you for pointing out another BUG in my db tool...
They have some splainin' to do!
Thanx!!
May 22, 2006 at 8:19 am
Take a look at the OPTION clause for SELECT in BOL. If you have a multiprocessor system you can 'suggest' MAXDOP.
If the issue is getting something into the resultset, even...
May 19, 2006 at 1:04 pm
Maintaining open transaction WAS normal. It is not the preferred mechanism these days. Unfortunately, older apps may have no other means to prevent changes to data or detect those changes...
May 19, 2006 at 12:55 pm
You can Boost SQL Server Priority on Windows on the Processor tab in the Server Properties dialog via SEM. Changing this setting is not usually necessary and will affect other...
May 19, 2006 at 12:44 pm
...from my experience you cannot change anything related to the base tables - not even columns not referenced in the view.
May 19, 2006 at 12:04 pm
I misunderstood... I thought you had successfully restored the system db's and were trying to get the user db's restored.
I noticed that you posted in the http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=24&messageid=202168 thread. That info...
May 18, 2006 at 1:29 pm
Viewing 15 posts - 46 through 60 (of 90 total)