Viewing 15 posts - 6,151 through 6,165 (of 7,501 total)
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
actualy you can name your backup files whatever you want.
And in fact, you can also name your sqlserver db-files whatever you want.
If you stick with the guidelines of using the...
July 24, 2006 at 12:09 am
Thumbs up for Collin !
In theory it should be done using Cluster Administrator.
"How to change the network IP addresses of SQL Server virtual servers" :
http://support.microsoft.com/kb/244980/
http://support.microsoft.com/kb/230356
SQLServer itself does...
July 19, 2006 at 5:04 am
indeed sp_updatestats and dbcc updateusage should be part of your maintenance job ! ![]()
and like you experianced, should also be the first step when...
July 18, 2006 at 11:53 pm
Keep in mind dbcc dbreindex will keep a lock on your table, so others may not be able to use it during the reindex !
If you have updates/deletes on your...
July 18, 2006 at 5:09 am
Viewing 15 posts - 6,151 through 6,165 (of 7,501 total)