Viewing 15 posts - 6,841 through 6,855 (of 7,466 total)
mu 2ct
maybe edit the jobs and set 'target' to the local (test) server.
Then delete the jobs.
November 12, 2004 at 1:31 pm
sometimes even a DBA has to proove (s)he's only human
November 10, 2004 at 8:10 am
The nice thing about "dynamic" is that it has issues
Because "exec (@sql)" lives its own life,...
November 10, 2004 at 12:07 am
you might want to perform a left join or a not exists.
insert into tableB
select A.* (I hate * but in this case maybe ...)
from tableA A
left join TableB...
November 9, 2004 at 12:50 pm
Same player shoots again ...
Test this :
'T_ParentMC' =...
November 9, 2004 at 7:41 am
That's correct ! Sorry for that
I didn't notice because I didn't document that in the script at the time I developed it.
November 9, 2004 at 3:21 am
Hi Noelson,
This is part of a script I used to convert some pk-indexes (clusterd/nonclusterd).
Test it for usability for your purpose.
Declare @TbNaam varchar(128)
set @TbNaam = 'T_Tabel'
create table ##Tmp_TbRefsW1 (
cType...
November 9, 2004 at 2:31 am
no can do.
Structured Query Language (SQL) uses a comma as a separator and not as a decimal sign.
You can avoid this problem by...
November 8, 2004 at 3:39 am
just to be complete :
where indid=0 gives only heaps !
where indid in (0 , 1) gives heaps and clustered...
November 5, 2004 at 2:31 am
In addidition to the other replies :
-If you are going to choose the "delete "-path, go for small transactions.
Declare @Counter int
Set @Counter = 1
Declare @TotCounter int
Set @TotCounter...
November 3, 2004 at 12:09 am
dynamic ? Think #/## temptb or @ tablevar.
Populate your temp-object with search- and replacementvalues and join it so you get the correct results.
Maybe this gets you on track:
http://www.sqlservercentral.com/scripts/contributions/100.asp
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=32921&SearchTerms=CSV
October 29, 2004 at 8:22 am
1) tell the other dba(s) you're going to redo the restore
so (s)he doesn't redo the reboot
2) redo the (full/pit) restore !...
October 29, 2004 at 8:02 am
just some readingstuff.
http://www.sqlservercentral.com/columnists/awarren/shouldyoubuyasan.asp
http://www.sqlservercentral.com/columnists/bknight/clustering_a_sql_server_machine_.asp
http://www.sqlservercentral.com/columnists/kpart/scalingout.asp
http://www.sql-server-performance.com/ew_san.asp
and
forum http://www.sqlservercentral.com/forums/messages.aspx?forumid=54
it works fine overhere
October 22, 2004 at 5:00 am
what's your sqlserver version an sp /hotfisex ?
October 22, 2004 at 12:29 am
Viewing 15 posts - 6,841 through 6,855 (of 7,466 total)