Viewing 15 posts - 16 through 30 (of 66 total)
you're mis-spelling the title in your query somehow. make sure it is exactly what it is in the database, that there are no hidden characters in the field and, if...
July 8, 2009 at 10:15 am
John Bates (5/27/2008)
May 27, 2008 at 8:11 am
one other approach is to give it a default value, then drop the default constraint.
January 22, 2008 at 10:09 pm
i'll use windows authentication and create AD groups. grant access to groups not individual accounts
January 22, 2008 at 5:23 pm
i'd add index to filename with a generous fillfactor, say 70. and i'd rebuild indexes at least weekly.
did u test performance with index?
January 22, 2008 at 5:21 pm
u already know the advantages. here are the disadvantages:
- u become somewhat disconnected from the day to day goings on
- u may start to be overlooked -- out of sight...
January 22, 2008 at 5:17 pm
create a sql server agent job to execute the dts.
or in EM just right click job and click "schedule" which will create the job for u.
January 22, 2008 at 5:12 pm
what field(s) is ix_tablename on? need to make sure no dupes (including source and existing rows in destination) in that field (or fields) including nulls.
January 22, 2008 at 11:40 am
New - Intermediate level:
SQL Server 2000 Administrators Pocket Handbook from Microsoft
touches on all phases of administration
Intermediate to Advanced
SQL Server 2000 Performance and Tuning handbook by Ken England.
this is an indespensable...
January 22, 2008 at 10:25 am
sometimes it is valid to put custom SPs in master or msdb.
suppose you want an sp to be globally accessible? put it in master, prefix it sp_ all set. yes...
January 22, 2008 at 10:20 am
may be able to help of u post what u have
January 21, 2008 at 2:21 pm
here's an SP. problem making a function is the need for dynamic sql, but maybe this wlll get u going in the right direction
Create Proc usp_objName
@object_id int,
@db_id smallint
AS
Declare...
January 21, 2008 at 11:54 am
Viewing 15 posts - 16 through 30 (of 66 total)