Viewing 15 posts - 76 through 90 (of 168 total)
I would like to extend what Goce has pointed out as 3 rd point.
First of all Split query in 2 part (Your select part and the From part for which you...
April 10, 2006 at 7:08 am
It should not have any impact on the indexes that are already built. Every index will be built as transaction, to my understanding the last one which is in process...
April 10, 2006 at 6:53 am
John,
Here is what you need to do
enter and run the following Transact-SQL commands:
SET STATISTICS TIME ON
and below that place your...
April 7, 2006 at 10:21 am
In EM go to your Job
Right Click- select-- Properties--Select Schedule and click delete button
on the bottom.
Then whenever next time you want to run manually execute that job.
April 7, 2006 at 10:05 am
Dipen,
After reading your post, what I would like to suggest you is this.
In your case better stay with full recovery model. Reason for that is with every day full backup...
April 7, 2006 at 9:56 am
I think probably you have statistics for same column and wizard makes safer suggestion with interpretation that in absence of stat this index can be useful.
April 6, 2006 at 1:21 pm
Jol,
The logic here is you need to do something for
server to identify row in unique way
try left outer join with combination of 2 col.
In your case Account# looks unique
Something of this...
April 6, 2006 at 1:03 pm
Jol,
Please do not post same question at multiple places.
Your question is answered in administration
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=271655#bm271701
April 6, 2006 at 12:44 pm
The error is in your table a
where you are using usr jo for both row.
This is very bad practise for join.
Join need unique identification of row.
For your expected...
April 6, 2006 at 12:36 pm
Thank you Antares, I agree with what you are suggesting.
But say for example, I would like to add one more situation,
say if application server is recently reboot by developer and...
April 6, 2006 at 9:19 am
April 6, 2006 at 9:06 am
Create a batch file called RestartAgent.BAT with the following commands in it, and save it on the C:\ drive:
@ECHO OFF
NET START SQLSERVERAGENT
While running the above command, make...
April 6, 2006 at 8:45 am
Execute following command in Query Analyzer
SELECT sj.job_id,sj.name,step_id,step_name,
CASE WHEN run_status = 1 THEN 'Success'
ELSE 'Failed'
END AS Status ,
CAST ( LEFT(CAST(run_date AS VARCHAR(8)),4) + '/' + SUBSTRING(CAST(run_date AS VARCHAR(8)),...
April 6, 2006 at 8:26 am
There cannot be simple one command solution for this.
There are few places you should look for at first
1. Check error log to figure out what was going on Db...
April 6, 2006 at 8:09 am
Satyam,
There is no backward compatibility with sql 2005.
You cannot Attach or Restore sql2005 db to sql2000.
The only available option is SSIS to import/export data from
2005 to 2000.
Hope this helps,
March 29, 2006 at 6:27 am
Viewing 15 posts - 76 through 90 (of 168 total)