Viewing 15 posts - 46 through 60 (of 72 total)
you can set the pswd for the backup and the pswd needs to be provided while restoring the db...
-Krishnan
February 17, 2006 at 9:28 am
eg:
select a.* from authors a inner join (select * from titleauthor) as b
on a.au_id=b.au_id
where ..................
-Krishnan
February 17, 2006 at 9:24 am
transform the data from the query to a file and then use that file as an attachment to send the mail...
-Krishnan
February 16, 2006 at 2:39 pm
whatz the error message you are getting?
-Krishnan
February 16, 2006 at 2:31 pm
SELECT distinct u2.EMPLOYID, u1.TRXBEGDT, u1.TRXENDDT FROM .....................................
Ideally the columns TRXBEGDT, TRXENDDT needed to be in UPR30100...normalization
-Krishnan
February 16, 2006 at 2:14 pm
Sure you can..
If you dont want the user of appropriate fixed server and database roles to perform the operation the operation then you can set the pswd for the backup...
-Krishnan
February 16, 2006 at 1:58 pm
I haven't seen data being lost due to maintenance jobs..I would be interested to know if it has..
If the table wasn't dropped and recreated then the third party tool should...
-Krishnan
February 15, 2006 at 6:13 pm
Refer to BOl for sp_attach_db syntax..
http://msdn2.microsoft.com/en-us/library/ms179877.aspx
-Krishnan
February 15, 2006 at 5:20 pm
did the row count was zero or there was no data in the table when u queried it?...
-Krishnan
February 15, 2006 at 4:28 pm
Here is the query using the Function from Kevin...
select mycol from
(
SELECT top 1 mycol,MIN(dbo.fn_StripChars(MyCol)) minvalue
FROM @MyTable
group by mycol
order by minvalue
) as a
-Krishnan
February 15, 2006 at 4:22 pm
Check the permissions on the shared folder for the account on which sql server is running..
When xp_cmdshell is invoked by a user who is a member of the sysadmin fixed...
-Krishnan
February 15, 2006 at 4:01 pm
When u attach the db with no log file, the device activation error occurs and sql server creates a new log file..
After executing the attach statement, exec sp_helpdb 'dbname' should...
-Krishnan
February 15, 2006 at 11:16 am
EXEC sp_changeobjectowner 'table', 'dbo'
-Krishnan
February 15, 2006 at 10:47 am
identifiers that fail to comply with these rules must be delimited by double quotation marks or brackets..
If you get the object doesn't exist error for the table used in the...
-Krishnan
February 15, 2006 at 10:45 am
From BOL...
The transaction log is a serial record of all the transactions that have been performed against the database since the transaction log was last backed up.
When restoring a transaction...
-Krishnan
February 15, 2006 at 10:32 am
Viewing 15 posts - 46 through 60 (of 72 total)