Viewing 15 posts - 1 through 15 (of 37 total)
restore master db with different name masterfromold .. run sp_hexalogin scripts ..it will generate all login script and then just execute that script on new server.
July 27, 2011 at 11:43 am
i know these option. I want default setting like this so every time when create a new job .. those settings are there.
July 26, 2011 at 1:29 pm
the application working for 1-2 years and now they don't want to change sp or tested code.
sometimes users directly inserts records in the table. check constraints not an option as...
March 11, 2011 at 11:52 am
goto drives properties and make it share and grant full access to all users. then check...
February 10, 2011 at 11:00 am
you can go with sql clustering + san clustering..
February 10, 2011 at 10:57 am
I would suggest check Disk IO ,Identify long running sp or queries and create indexes\stats for it, also make max dop equal to number of cpu core.
October 28, 2010 at 12:40 pm
I would suggest peer to peer replication.
September 28, 2010 at 2:52 pm
change in the string - additional comma after last number.
I need last value from string.
Declare @sss varchar(100)
Set @sss ='12,11,23,34,567,690,4,1,'
or
--- Set @sss ='45,56,89,212,121,33,14,7,101,4,22,'
or
--- Set @sss ='334,234,217,1,4,333,'
September 3, 2010 at 12:49 pm
I want if last run of job failed then that date and time and same job when previously failed.
May 17, 2010 at 1:56 pm
Queries
Update
SET firstname = 'XYZ' ,
lastname = 'ABC' ,
finishdate = GETDATE() ,
location = 10 ,
dept = ' PRODUCTION',
active =1
WHERE machine = 'ABCSSSS'
AND startdate < GETDATE()
April 9, 2010 at 7:43 am
Thanks for your reply
However for test i have given ID in serial number
Let us say I have data like this then wht will the query?
ID Machine ...
March 10, 2010 at 11:19 am
If it sql 2005 then you can try to use table partition.
By ur approach , I think create index on individual tables and then create view
In view use Union ALL
SELECT...
March 4, 2010 at 11:36 am
I ran usage query and found that IX1 total uses is 26
while others are used for 1200+
However since tuning wizard recommanded to create
IX5 - on col1,col2,col6
and we have IX1 -...
October 27, 2009 at 9:14 am
Viewing 15 posts - 1 through 15 (of 37 total)