Viewing 15 posts - 1 through 15 (of 33 total)
is there any way to create temp table and then see?
January 5, 2009 at 1:51 pm
here are script for table & now let me know?
CREATE TABLE [dbo].[Store](
[Id] [uniqueidentifier] NOT NULL ,
[IncomingType] [varchar](20) NOT NULL,
[ConfirmationId] [varchar](20) NOT NULL,
[CreationDate] [datetime] NOT NULL ,
[StoreId] [int] NOT NULL,
[CustomerNumber] [varchar](20)...
December 30, 2008 at 12:29 pm
It is in store table & both tables having clustered index.
December 30, 2008 at 9:43 am
I want to do further processing on this table that is too by another cursor.
November 20, 2008 at 8:55 pm
this query is useful.
please send alert t-sql too?
November 17, 2008 at 8:16 pm
give read-only access to msdb of sql 2000 and then tell user to connect using ssms 2005
November 17, 2008 at 9:44 am
use the below script
_________________________________________________
Dim fso,fol,fx
set fso = CreateObject("Scripting.FileSystemObject")
Set fol = fso.GetFolder("F:\BACKUPS\")
For each fx in fol.Files
if datediff("d",fx.DateLastModified,now()) > 7 and right (fx.path,4) =".bak" then
fso.DeleteFile fx.Path
End if
next
set fso=nothing
____________________________________________________
goto- job - newstep --...
November 17, 2008 at 8:24 am
dude ,
re-configure replication pointing to new distribution db server
November 7, 2008 at 7:51 pm
instead of that drop and re-create indexes. schedule this as sql agent jobs
November 6, 2008 at 1:53 pm
refer this
http://www.scriptsahead.com/sql-server/t-sql/t-sql-script-to-divide-one-column-data-into-two-columns
November 5, 2008 at 10:16 am
I never attempted such case but I feel you have to reconfigure log shipping.
I will suggest do a small test on sample db and then see.
Post your results.
u can contact...
November 3, 2008 at 4:20 pm
job will run as it is.
post your performance improvement results
November 3, 2008 at 11:57 am
Viewing 15 posts - 1 through 15 (of 33 total)