log

Technical Article

RE: Performance Tips Part 1

  • Reply

You can rename indexes and other objects:use pubsif object_ID('test_rename_HIS') is not null drop table test_rename_HIS if object_ID('test_rename_ARC') is not null drop table test_rename_ARCcreate table test_rename_HIS   (ID int Not Null constraint PK_HIS Primary Key,    Name varchar(255))go create index I_HIS on test_rename_HIS (Name)go exec sp_rename  @objname =  'test_rename_HIS' ,     @newname =  'test_rename_ARC'  ,     @objtype […]

You rated this post out of 5. Change rating

2005-03-08

Technical Article

RE: Cant drop user - Help!!

  • Reply

It is because this user does not exist in this server. First of all the user must have a login that exists. You can create one if you are a sysadmin. Then you have to associate the login with the database user, because at this point it is an orphan and SQL Server does not […]

You rated this post out of 5. Change rating

2004-06-22

Technical Article

RE: The process could not enumerate changes at the Publisher

  • Reply

Hi Chrisitian, as I know in 99% the 'General network error' is really a network error. So I guess you have to check your underlying network configuration. However I noticed that if the server is under heavy load (too many replications at once, or bad configured indexes causing table scans) this error also occurs. Try […]

You rated this post out of 5. Change rating

2004-01-09

3 reads

Blogs

Real-World SQL Mastery: Your Hands-On, Mess-Free Sandbox

By

Are you ready to take your SQL skills from theoretical to tactical? If you've...

Set a Runtime Variable in an Azure DevOps Pipeline

By

Note: I DO NOT recommend this. Any changes to a pipeline should be in...

A New Word: Symptomania

By

symptomania – n. the fantasy that there’s some elaborate diagnosis out there that neatly...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers