Viewing 15 posts - 6,271 through 6,285 (of 7,501 total)
How about statistics ? Do your have autostats enabled for your crm db ?
Every once in a while (3 or 4 /year) manualy perform dbcc updateusage and sp_updatestats. Depending on...
May 9, 2006 at 1:47 pm
Those traceflags will have SQLserver log deadlockinfo to the SQLServer ErrrorLog-files.
look at yourdrive:\MSSQL\LOG\ERRORLOG
or use EM / Management / Sql server logs
search for Deadlock
May 9, 2006 at 1:28 pm
no.
btw 1) select top 1 * into yournewtable from yourquery
should be
1) select top 1 * into yournewtable from yourquery where 0=1
because you jus want to create the table without any...
May 9, 2006 at 3:24 am
- you could set your new filegroup to be the default filegroup. Remark : all new objects will then reside in that default filegroup, unless you reset it afterward.
- you...
May 8, 2006 at 5:38 am
for this query alone, I would advise only a non-clustering (but covering) index since there is no extra data-access.
In general an " exists (select ... where correlated predicate = xxx)...
May 5, 2006 at 3:05 am
IMO this notation is more comprehensive ...
Select * From Master
INNER JOIN Details D1
ON Master.MasterID = Details.MasterID
and D1.Value = 'Criteria1Value'
INNER JOIN Details D2
ON Master.MasterID = Details.MasterID
and D2.Value = 'Criteria2Value'
provide...
May 4, 2006 at 9:43 am
I use this kind of instruction as a last step of my backup-jobs to copy to safehaven. ![]()
XCOPY C:\MSSQL\BACKUP\*.* \\myUNCservername\myshare\MyDbServerName\Database\ /c /k /h...
May 4, 2006 at 8:14 am
- duplicate spids are caused by parallelism.
- they shouldn't interfere with backup activities
May 4, 2006 at 7:54 am
It works just fine now !!![]()
![]()
Imports
System
Imports
System.Data
Imports
System.Data.SqlClient
May 3, 2006 at 8:08 am
Thank you for your time.
It took me a while, but finaly I got the winform app to work ...
Address = Address.Replace(
" ", "+"
May 3, 2006 at 7:52 am
Here it is ... my vbform :
form fields : streettxt , citytxt, statetxt , datagridview Resultsdgv
form button : CallWebServicebtn
here's the code :
Imports
System
Imports
System.Data
May 3, 2006 at 6:46 am
I like the article and the example.
I've tried to install it on my local sql2005STD instance wich has clr enabled and my testdb is trustworthy.
The vb.net version as well as...
May 3, 2006 at 5:07 am
about the same goes for "Spotlight on SQLServer" from Quest software.
May 3, 2006 at 5:00 am
First of all, you query is to heavy !
You use 3 objects and only join two of them, leaving the 3-th one for crossjoining ???
May 3, 2006 at 12:03 am
Viewing 15 posts - 6,271 through 6,285 (of 7,501 total)