Viewing 15 posts - 961 through 975 (of 1,069 total)
Can be done using SELECT INTO
Example:
use pubs
go
select * into dbo.Trial from master.dbo.Trial
July 9, 2008 at 6:37 am
Copy the .LDF file also.
.MDF file is data file. LDF file is Log file.
July 9, 2008 at 5:16 am
Mani Singh (7/8/2008)
(0) deadlocks.. yes it is always possible
... is very well maintained:::: i.e. Database is normalized...
GilaMonster (7/8/2008)
It is not normal to have 10 deadlocks a day...
July 8, 2008 at 10:48 pm
Run DBCC UPDATEUSAGE.
BOL has following remarks:
In earlier versions of SQL Server, the values for the per-table and per-index row count and page counts can become incorrect. Under certain circumstances,...
July 2, 2008 at 7:47 am
How about
1. Using third party backup tool which creates compressed backup file.
2. Writing a stored procedure to take backup which will retry if the backup fails.
July 2, 2008 at 4:50 am
Example:
create procedure spEmployeeUpdate
(
@EmpId integer,
@Name char(75),
@Salary decimal(8, 2)
)
as
update employee set [name] = @Name, Salary = @Salary where empid = @EmpId
July 2, 2008 at 4:12 am
life is miserable for production support...as one needs to work in odd hours too !!
Do you go to different clients site to fix when they have issues?
Or do you...
July 2, 2008 at 4:03 am
Thanks Terry for the link.
Thanks Mani Singh.
I restarted the SQL Server service. But it didn't get restarted. Status was "Stopping".
Non-administrator users were not able to login.
So, I rebooted the server.
Suresh
July 1, 2008 at 4:47 am
1. A simple example for BACKUP LOG command:
BACKUP LOG DatabaseName
TO DISK = 'BackupFileName.TRN'
2. Use Maintenance Plan schedule the job.
3. Third party tools are available which create compressed backup file.
4. Crosscheck...
June 26, 2008 at 8:37 am
Thanks to all those who replied.
Thanks to Mani Singh for the link.
Suresh
June 25, 2008 at 10:25 pm
>>I get this exact message whether or not the job succeeds or fails.
I think, you have selected "When the job COMPLETES".
Change it to "When the job FAILS"
June 23, 2008 at 8:17 am
It is integer operations issue. Write as follows
(MostLikelyCost / 100.0) * MinimumPercentage
June 23, 2008 at 7:22 am
>> i am accessing through my .NET Application, that time its giving error like that, but if i am Executing any query from my Managememnt Studio then its working...
June 23, 2008 at 7:15 am
Viewing 15 posts - 961 through 975 (of 1,069 total)