Viewing 15 posts - 1 through 15 (of 79 total)
ok i will check that thanks for reply
December 3, 2009 at 1:00 am
no i havent such error in log.
can you please explain what does it states?
December 3, 2009 at 12:33 am
give rights read and write to the share folder in the domain for the login id of the server and then try. you also consult your sysadmin for this
December 2, 2009 at 4:39 am
try to open share folder from the server where SQL Server is installed with login id which used to start the services of SQL Server hope this might help you.
December 2, 2009 at 3:53 am
thanks it worked.
November 25, 2009 at 9:34 am
try manually giving full access to the folder where sql file are there to id which the sql services are using to start. hope this may help.
i faced same issue...
November 24, 2009 at 11:24 pm
oops my bad...
url itself the details i was saying about.. sorry..
November 23, 2009 at 11:48 pm
hello,
url was very useful.Thanks.
one more i know is that suppose a new hard or cd drive in place in the system and your database drive letter changes then in sql...
November 23, 2009 at 11:44 pm
i guess you are new to dba world... i gues you want to restore the backuped database on new server.
restore database databasename from disk ='filepath'
syntax might be different check Books...
November 23, 2009 at 10:45 pm
Hello,
i found this in BOL
REPLACE performs comparisons based on the collation of the input. To perform a comparison in a specified collation, you can use COLLATE to apply an explicit...
November 23, 2009 at 5:39 am
thanks.. i will monitor the logs.
November 23, 2009 at 3:46 am
error says that you do have access on the c drive..
open cmd
type sqlcmd -S"servername" -U"username" -P"password"
after successful login you see
>1
1 use master
2 backup database dbname to disk=N'c:\foldername\db.bak'
3 go
the db backed...
November 21, 2009 at 10:10 am
http://msdn.microsoft.com/en-us/library/ms165702(SQL.90).aspx
use this link .
it shows to login and then once you login you write normal backup command
backup database dbname to disk='c:\db.bak'
November 21, 2009 at 6:04 am
Is your SQL Server is a Express edition
November 21, 2009 at 6:01 am
when you are inserting values in identity column
use
SET IDENTITY_INSERT schema_name.table ON
insert into schema_name.table(col1,col2.....)
select a,b,c... from table
SET IDENTITY_INSERT schema_name.table off
you have to explictly provide list of all columns n the...
November 20, 2009 at 6:15 am
Viewing 15 posts - 1 through 15 (of 79 total)