Viewing 15 posts - 6,316 through 6,330 (of 7,501 total)
If I'm correct this issue has been mentiond at SSC-forum last week or the week before.
IF I find the thread, I'll add it
updated :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=265470#bm266005
March 21, 2006 at 1:46 am
first of all :
- ... FROM dbo.eventlog
WHERE (RIGHT(attributes, 4) LIKE '%55}')
will cause a table-scan ! because with the function no index...
March 21, 2006 at 1:34 am
FYI
check out http://www.microsoft.com/sql/downloads/trial-software.mspx
for an 180-days trial version.
March 21, 2006 at 1:25 am
With SQL7 you will have to use a #tempTB in stead of a declare @tb table !
It does not know tablevariables !
If you are only interested in the last...
March 20, 2006 at 1:41 am
So your TableA is dynamic ? ![]()
![]()
if not, write a query to perform your select, determine a maximum...
March 20, 2006 at 12:41 am
March 17, 2006 at 5:54 am
so this is a hiarchy. ![]()
With SQL2005 you can use a CTE with a recursive part ![]()
With SQL2000...
March 17, 2006 at 3:36 am
- avoid non-clustering-indexes at load time (consider drop before / re-create after load)
- sort you data according to the clustering index of your objects before loading.
- use bulk-insert whenever possible
I...
March 17, 2006 at 3:24 am
thanks for the feedback.
These kind the tiny brainteasers being solved make our day ![]()
March 15, 2006 at 11:02 am
I didn't encounter this problem, but I'm using SQL2005EE and I'm installing the client-software at the C-drive ! (default).
I've set up an Active/Active cluster with 3 instances hosted on 2...
March 13, 2006 at 3:18 am
there is offcourse http://msdn2.microsoft.com/en-us/library/ms143799.aspx.
But it does not include any reference to the created local users or groups.
Suppose I create a ghost-image after install, apply the ghost to a new...
March 10, 2006 at 12:23 am
IMO the JOIN-syntax using the on clause differantiates better wat's a join-predicate (on-clause) and what's a filter-predicate (where clause).
This makes is more ease for another person to understand your queries.
Check this...
March 1, 2006 at 8:18 am
check books online
DBCC CHECKIDENT ('table_name', NORESEED) just for reporting
or
DBCC CHECKIDENT ('table_name', RESEED) reporting and correction !
What error is checkident giving ?
March 1, 2006 at 8:06 am
do you have scheduled jobs for DBCC DBReindex ?
or indexdefrag ?
If not, reorganize the data and test again.
Maybe it's time to do this on a scheduled/planned basis.
March 1, 2006 at 8:03 am
Viewing 15 posts - 6,316 through 6,330 (of 7,501 total)