Viewing 15 posts - 7,021 through 7,035 (of 7,466 total)
alter database myowndb set offline with ROLLBACK IMMEDIATE will do the job
April 27, 2004 at 1:54 pm
- your execution plan will clarify this
- as always " it depends "
* wich type of join are you using (inner /left-right...
April 27, 2004 at 4:20 am
rule n° 1 on every rdbms : tell your engine what you know
April 26, 2004 at 12:22 am
my 2ct
I suppose you've already checked :
- http://www.sqlservercentral.com/columnists/jsack/aweadventures.asp
- http://www.sql-server-performance.com/awe_memory.asp
- http://www.devarticles.com/c/a/SQL-Server/How-to-Perform-a-SQL-Server-Performance-Audit/4/
- use perfmon to check on your I/O activity
April 23, 2004 at 1:10 am
- SQL92-standard adaption.
- access-engine is not sqlserver-engine
- maybe it's on the wishlist for sql2k5
April 23, 2004 at 12:45 am
select col1 + col1 as expr1, (col1 + col1 )* 2 as twice_expr1
from a_table
April 21, 2004 at 11:58 pm
imo a modulus is jus a math-exercise, so leading zeroes do not matter, but for correctness allways have them leading your string and handle the CD in your input-presentation layer...
April 21, 2004 at 1:42 pm
maybe this is a start ...
select t1.date1, identifier1, data1
from table1 t1
where t1.date1 between (select min(date2)
from table2 t2min
where t2min.identifier2 = t1.identifier1
and t2min.date2 > t1.date1)
and (select...
April 21, 2004 at 1:23 pm
- A rebuildindex will lock the object involved, so might interfere with your apps
- indexdefrag will not optimize as good as rebuildindex
April 21, 2004 at 12:54 pm
afaik (my guideline)
if the keyvalue(-combination) of your clustered ix is unique, it is designed to be the same.
if not, sqlserver will add a uniquifier to the clustering-index-key(s).
But in this case,...
April 21, 2004 at 12:45 pm
- you might use constraints to limit the numbers so only positive values are allowed.
- you could use a trigger so negative values are converted to positive values.
- but why...
April 21, 2004 at 1:04 am
don't know if it helps...
strConn = strConn & " INTEGRATED SECURITY='sspi';"
quotes added
April 21, 2004 at 12:06 am
- use decimal[(p[, s])] check BOL in stead of float.
- check constaints can help to delimit values :
from BOL :
ALTER TABLE doc_exd
ADD CONSTRAINT exd_check CHECK (column_a between...
April 20, 2004 at 4:01 am
no.
are the nt-users domain-users ? logged on to the right domain ? member of the correct nt-group ? within the correct dns ?
check...
April 20, 2004 at 3:52 am
Viewing 15 posts - 7,021 through 7,035 (of 7,466 total)