Viewing 15 posts - 1,486 through 1,500 (of 1,538 total)
I need to prepare a Backup strategy for our application to work with in an hour, If in case client system goes dead
Well thats a question that you need...
December 16, 2008 at 12:05 am
Only the people of the TI support department can use the "sa" account of the
sql server.
You should create individual Logins for each member of this department and add...
December 15, 2008 at 11:50 pm
If you mean to take backup of all databases, you can user enterprise manager and create a maintanence plan that automates the backup process using scheduler.
if you wish to do...
December 15, 2008 at 11:15 pm
there is no reference to identity_insert being set on.
also apply the patch suggested by microsoft.
December 15, 2008 at 11:26 am
can u paste the table structure, the exact trigger, the insert statement...
December 15, 2008 at 11:19 am
sry missed the condition...
where id in(select id from inserted)
AND deleteflag='Y'
December 15, 2008 at 10:39 am
I'm assuming a column is present in the table that uniquely identifies that row. eg ID
CREATE TRIGGER trg_test on test after UPDATE
AS
UPDATE test set deletedate=GETDATE() where id in (SELECT...
December 15, 2008 at 10:35 am
can u paste the portion of the code trying to paste the data... including the part of the code that is setting identity_insert to ON.
Also microsoft reports this as a...
December 15, 2008 at 10:20 am
Thanks Gail for your valuable comments 🙂
I think i understand the backup fundamentals much better.
December 15, 2008 at 4:45 am
Its 2000 and the database is online.
Was browsing through sql server 2000 KB, and I think i got the answer....
http://support.microsoft.com/kb/281122
pasting an excerpt from the link..
you have a database...
December 15, 2008 at 1:23 am
Need some clarification on this...
-------------
Assuming I've 3 filegroups, primary1, secondary1 and secondary2
I take filegroup backups with log backups.
If i need to restore all files from secondary1 filegroup(assuming this filegroup resided...
December 15, 2008 at 12:54 am
had never used with File= clause....
Thanks it helped 🙂
December 15, 2008 at 12:36 am
You can move those four tables in a different database file. take file/filegroup backup. You'll be able to restore them.
http://msdn.microsoft.com/en-us/library/ms189906.aspx
http://msdn.microsoft.com/en-us/library/ms179401.aspx
.
December 14, 2008 at 11:42 pm
1) We are initiate a new project and want to keep every configurable records changes we have done
2) we have a few group of poeple updating the Pri DB, we...
December 14, 2008 at 6:50 pm
SELECT LastName, FirstName FROM Northwind.dbo.Employees
where lastname = @lastname
is fine... you can use that...
You can, but that's an exceedingly slow way of doing things. Cursors do not perform well.
I'd also...
December 14, 2008 at 6:38 pm
Viewing 15 posts - 1,486 through 1,500 (of 1,538 total)