Viewing 15 posts - 6,151 through 6,165 (of 7,505 total)
you may want to refresh statistics before you go on ...
'-- Usage ' + db_name()...
August 24, 2006 at 5:19 am
- it's useless to create the index if there is only one value. The chance of it being used is fairly equal to 0
August 23, 2006 at 11:54 pm
you are always performing a full table scan because you did not provide an index for [ProducerId]
This way (b)locking and waits will occur !!
Jus create an index on...
August 23, 2006 at 6:06 am
- Is this meaning you want your column "workfunction" to be a bitmap ?
check out the implications !!
- http://www.sqlservercentral.com/columnists/dpoole/usingbitstostoredata.asp
- you would need a function with cursor (or temptb)...
August 23, 2006 at 5:24 am
Thats exactly what SQLAgent is doing ! ![]()
Enterprise Manager / Management / SQLAgent / Jobs
Create a new job, add a jobstep containing your SQLscript,...
July 28, 2006 at 5:37 am
Works fine overhere ...
CREATE TABLE [BillPayment] (
[billpaymentId] [int] IDENTITY (1, 1) NOT NULL ,
[billPaymentDate] [datetime] NULL ,
[newBillBalance] [float] NULL ,
[billAmount] [float] NULL ,
CONSTRAINT [PK_BillPayment] PRIMARY KEY CLUSTERED
(
[billpaymentId]
 
July 28, 2006 at 5:26 am
I like the article, but concering the newsequentialid ...
can someone find the flaw in my testquery which proves they'r not sequential ???
Declare
@test-2 table
July 28, 2006 at 12:15 am
...Do note that you CAN include varchar(max) fields in indexes but you cannot create and index on a varchar(max) field itself....
Indeed, including the varchar(max) column, you would aim for an...
July 27, 2006 at 12:39 am
- keep in mind to rebuild all tables / indexes and to run sp_updatestats and DBCC updateusage.
- indeed sp1 takes longer than the actual upgrade
- IMO dts-migration has been enhanced...
July 25, 2006 at 7:44 am
... 5. Concerned about something I read in the Resource Guide. It seemed to indicate that any syntax referencing something like dbname.dbo.tablename would need to be corrected to boname.sys.tablename. Yet,...
July 25, 2006 at 4:55 am
- you can deny the users rights to any object in the database. Check BOL !
DENY
{ ALL [ PRIVILEGES ] | permission [ ,...n ] }
{
[ (...
July 25, 2006 at 12:28 am
Scott Coleman explained it very clearly ![]()
may i add that you cannot index a varchar(max) column...
July 24, 2006 at 1:12 am
- I hope you're performing SQL backups using the T-sql backup statement or a maintenance job from sqlserver
- If a db is "to big" that my have two causes :
...
July 24, 2006 at 1:07 am
Thanks for the feedback.
in this case, you didn't get the answer overhere, but now others will !![]()
July 24, 2006 at 12:34 am
Viewing 15 posts - 6,151 through 6,165 (of 7,505 total)