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...
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 ..................
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...
February 16, 2006 at 2:39 pm
SELECT distinct u2.EMPLOYID, u1.TRXBEGDT, u1.TRXENDDT FROM .....................................
Ideally the columns TRXBEGDT, TRXENDDT needed to be in UPR30100...normalization
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...
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...
February 15, 2006 at 6:13 pm
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?...
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
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...
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...
February 15, 2006 at 11:16 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...
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...
February 15, 2006 at 10:32 am
Viewing 15 posts - 46 through 60 (of 72 total)