Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
aravindt77
Posting Yak Master
120 Posts |
Posted - 2007-06-05 : 07:18:39
|
| Hi,Warm Wishes to u all !!!I want to take backup of database thru T-SQL stmt.My Code isBACKUP DATABASE 'D_OpticalPortals', TO DISK = 'C:\Test.dat'Not WorkingPlz do the needfulRegards & Thanks to AllAravind |
|
|
harsh_athalye
Master Smack Fu Yak Hacker
5581 Posts |
Posted - 2007-06-05 : 07:21:19
|
Remove extra comma after database name.BACKUP DATABASE D_OpticalPortals -- , Remove this commaTO DISK = 'C:\Test.dat' Also, db name need not be enclosed within quotes.Harsh AthalyeIndia."The IMPOSSIBLE is often UNTRIED" |
 |
|
|
aravindt77
Posting Yak Master
120 Posts |
Posted - 2007-06-05 : 07:39:49
|
Thanks a lot HarshI was too busy that I coulnt go longer with Books Online..Thanks once againAravind |
 |
|
|
aravindt77
Posting Yak Master
120 Posts |
Posted - 2007-06-05 : 08:39:17
|
| Quick backgroundDynamicRegistration component saves User Responses only if user selects it -otherwise there is no row created in a database. So for this reason we needto create user's response for "not selected" options. TheJobson.OpticalConnector.WebServiceProvider's Business Layer is responsiblefor compiling a full list of "Subscription lists" and User's "response" astrue/false if there is match. |
 |
|
|
|
|
|