Viewing 15 posts - 6,631 through 6,645 (of 7,466 total)
Never mind !
I found out that I had to merge the cells over the needed span.
April 1, 2005 at 4:14 am
just my 2ct
we always have a clustered index (even if on a identity or current-datetime column if no other suggested by the development team...
March 30, 2005 at 12:19 am
If I'm correct ...
if you want to be sure it is being run wit isolation level x, you can set the isolation level (at the beginning) in your sp...
March 25, 2005 at 12:37 am
U2U will provide you a good basic knowlage.
One first has to lean to crawl, walk and then start running.
Flexcom-azlan (azlan.be) also does a good job.
Compare prices and jump onto promotions....
March 25, 2005 at 12:16 am
also in that case you can use profiler to generate the script so you can capture all sql to a file.
Start profiler, create a trace and then save it as...
March 24, 2005 at 6:26 am
Can you do a repro ?
if yes, use Query Analyser to debug the proc and set brakepoints to these positions so you can check the content of all varriables and...
March 22, 2005 at 1:45 am
just my 2ct :
- having NULLs for replacement - values ?
- or using case-expressions without an ELSE pitfall ?
March 22, 2005 at 12:11 am
like andrewkane17 specified, shrinkfile or shrinkdatabase will solve your problem.
You can also perform an alter database set AUTO_SHRINK on, but that is not...
March 22, 2005 at 12:08 am
did you also perform sp_updatestats, dbcc updateusage and dbcc freeproccache (so newly generate plans come in).
Maybe it's time to use profiler to capture load and analyze it to check if...
March 22, 2005 at 12:05 am
imo the only difference for the "dbo-login" is that (s)he does not have to qualify schema DBO when creating objects. Members of the db-owner db-group always have to specify the...
March 22, 2005 at 12:00 am
This is how I'd solve it : (be aware of collation conflicts !)
print 'Fillocations of DB'
print '------------------'
declare @SelStmt as varchar(7000)
declare @DbNaam as varchar(125)
declare...
March 21, 2005 at 12:08 am
yep, basic rule No 1 for programming is still : "learn copy/paste"
March 16, 2005 at 12:12 am
That should be no problem because the new domain will use the old sid from the users sid-history.
The only "issue" you'll have is...
March 16, 2005 at 12:02 am
... parameter-table and proc set to manage sequences ...
This way you could emulate identity
This is just a simple representation :
create table t_mySequenceParameters (
TableName...
March 15, 2005 at 7:04 am
Viewing 15 posts - 6,631 through 6,645 (of 7,466 total)