Viewing 15 posts - 31 through 45 (of 66 total)
move the transaction logs to the new array.
when was last time all indexes were rebuilt? rebuilding indexes might solve all of your problems right there. was is Cache Hit Ratio...
January 21, 2008 at 11:16 am
if u restore, can then execute following script in query window.
change output to text, execute it, then copy paste back in and execute
SELECT 'Exec sp_rename ''' + name + ''',...
January 21, 2008 at 9:09 am
see linked servers in BOL. then use 4 part naming convention
update MyTable
set field1 = b.field1
FROM myTable a
JOIN serverName.databaseName.ownerName.MyTable b
On a.id = b.id
January 20, 2008 at 8:32 pm
your approach is certainly acceptable. i would approach it slightly differntly though.
if u want all phone #s in one table, then i'd do it like this (with the disclaimer that...
January 20, 2008 at 7:27 pm
not sure i completely understand u. here is the basic:
insert tableB (col1, col2, col3, col4, col5)
SELECT col1, col2, col3, col4, col5
FROM tableA
but if u are passing 5 params to...
January 20, 2008 at 3:00 pm
yes you can. when multiple versions participate in replication, the distributor is generally the lowest common denominator -- cant be lower than publisherr.
see this article for complete details
January 20, 2008 at 10:23 am
your SAN (almost certainly) has tools to do this seamlessly
but as Steve says...make sure u have backups -- and make sure u know they are good
January 19, 2008 at 7:30 pm
u will learn a ton. keep msdn links and forums handy.
try to get email addresses of some other experienced dba's u meet on this or other forums.
read everything u can...
January 19, 2008 at 7:27 pm
January 19, 2008 at 10:04 am
GRANT CREATE PROCEDURE TO User1
January 19, 2008 at 10:03 am
what version sql 2000 and SP level? as said, works for me. i tried using sql2k SE SP4
November 13, 2007 at 10:53 am
need to script the logins from a different server u trust to be right. there aren't "default" permissions per se.
by the way, dbo has permission to modify any object in...
November 13, 2007 at 10:49 am
Viewing 15 posts - 31 through 45 (of 66 total)