Viewing 15 posts - 271 through 285 (of 411 total)
Yep. Right click the database in SSMS (either 2008 or 2005 SSMS), and select Tasks->Generate Scripts.
Then follow the wizard to select the stored procs and all of the options.
Jim
April 13, 2011 at 5:29 pm
K. Brian Kelley (4/12/2011)
In the BBS days...
I remember those days! I ran a very small BBB back in the 80's. Those were the days.
Anyway, what you describe is...
April 13, 2011 at 9:30 am
Try sqlcmd.exe which is documented here: http://msdn.microsoft.com/en-us/library/ms170207.aspx. Then you can use the same SQL commands that you learned earlier this evening when you posted here: http://www.sqlservercentral.com/Forums/Topic1051241-392-1.aspx.
Also, the log files...
April 11, 2011 at 11:02 pm
HA! That graphic is priceless.
It is all too easy to begin the development process by configuring the application to use "sa" (or another sysadmin account), and even demo using...
April 11, 2011 at 10:50 pm
Grant,
Nice description; down to earth and understandable.
I would guess (perhaps wrongly) that almost all people in the room have probably backed up a database. A full backup at least....
April 11, 2011 at 7:39 pm
Studying is for mere mortals. This is how we learn stuff that we didn't already know. Probably sounds strange to you, I know. Consider this post 'study', so now you...
April 6, 2011 at 9:33 am
You studied straight from the BOL as your primary textbook?! Ha! That's a reference, not an instruction guide.
For the rest of us non-savants, the books do well....
April 6, 2011 at 9:18 am
parthi-1705 (4/5/2011)
a.)Change Trackingb.)Change Data Capture
These features are included in SQL 2008...
Yes, this I'd another way. CDC is Enterprise only if I remember correctly. Also, the tables can get...
April 5, 2011 at 2:00 pm
Yep. Piece of cake to do this. UMG has some good caution about the licensing differences and to be careful not to violate the agreement for using the Developer edition.
But...
April 5, 2011 at 2:29 am
Looks to me like you want to allow the user to read and write all data, but not change the structure of the database. Grant the database role of db_datareader...
April 5, 2011 at 2:04 am
That's great. Thanks for the slides. We just finished sqlsaturday #63 in Dallas today. Nice turnout.
Jim
April 2, 2011 at 10:58 pm
You can ensure the checkbox to add the step details to the job history is checked. I also found it helpful to go to the step details and specify...
April 2, 2011 at 12:32 am
Select out of the system tables which hold the proper data. For example, sysobjects (where type = 'U'), sysindexes, syscomments, etc.
Sql2005 and greater use slightly different table names (sys.indexes...
April 2, 2011 at 12:27 am
There are a variety of methods to do this. You can add update code to your front end app, to a stored procedure, a trigger, etc.
Likely, a trigger will work...
April 2, 2011 at 12:17 am
Viewing 15 posts - 271 through 285 (of 411 total)