Viewing 15 posts - 6,286 through 6,300 (of 7,467 total)
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
We also have a couple of applications running on citrix for the front-end applications, with sql2000 on an dedicated SQL-cluster-node (running only that instance).
Most of the times when users are...
March 1, 2006 at 2:38 am
Do you know of a simple way of making a screen-shot (winforms) with .Net code, using the framework (not extra referring to the gdi32.dll ) ?
March 1, 2006 at 2:20 am
Check out the upgrade-advisor !
It will check your current db, .. and highlite some issues (if found )
February 28, 2006 at 3:45 am
the BINARY_CHECKSUM and checksum solution is great, but know their downsides (text/image/...)
It's all in Bol
February 24, 2006 at 12:07 am
Viewing 15 posts - 6,286 through 6,300 (of 7,467 total)