Viewing 15 posts - 1,351 through 1,365 (of 1,417 total)
But maybe it is more easy to use a backup-restore procedure to create and fill a database.
Can you clearify why you want/need to script it?
July 30, 2008 at 1:36 am
For my knowledge there is no complete scripting available for what you want to do.
You can easily generate a script to create your tables and even the database (right click...
July 30, 2008 at 1:34 am
You can also create a backup of the current database and restore this backup on the new server and with the new database name. The advantage is that you can...
July 22, 2008 at 1:48 am
maybe some of these links will provide you enough information to create what you want:
http://www.sqlservercentral.com/articles/Performance+Tuning+and+Scaling/2691/
http://www.sqlservercentral.com/Forums/Topic442795-8-1.aspx
http://www.sqlservercentral.com/Forums/Topic517308-338-1.aspx
July 21, 2008 at 12:32 am
To return the value of a SP use this:
CREATE PROCEDURE dbo.Dummy
@Dummy int
@Output varchar(50) output
AS
...
July 19, 2008 at 12:02 pm
Hemalatha (7/18/2008)
Thanks for the reply, Now I need one more help, I want to pass parameters to the stored procedures, How can I pass.
CREATE PROCEDURE dbo.Dummy
@Dummy as int
AS
SELECT *...
July 18, 2008 at 7:14 am
Jacob Pressures (7/13/2008)
Yet i wonder if somehow they will be able to view the information in the database which is what I DON"T WANT OUTSIDE OF THE APPLICATION.
For my understanding...
July 17, 2008 at 11:34 pm
Jacob Pressures (7/17/2008)
HanShiHere is my connection string in VB6
According to the connection string, the application connect to SQL using integrated security. That means the Windows-logins of the user is forwarded...
July 17, 2008 at 11:18 pm
ezekielen (7/17/2008)
To edit DTS in SQL SERVER 2005 you need a microsoft tool named: SQLServer2005_DTS.msi , is available...
July 17, 2008 at 7:28 am
When your solution works as required, there is no need to change it. If you want to get rid of the scheduled task: in your scenario SSIS has to be...
July 16, 2008 at 7:17 am
I'm sorry, but I don't have the time to provide a answer/sample.
I can give you a hint though: probably you can use the COUNT to see how many scores are...
July 16, 2008 at 7:07 am
Can you tell which of the indexes (which index_id) are missing?
July 16, 2008 at 6:25 am
I am also very curious about how other think about this.
Recently a company asked my advice on this. After consulting some of my collegues, we decided to follow Microsoft's statement...
July 16, 2008 at 5:51 am
Microsoft has a website for troubleshooting Database Mail
http://msdn.microsoft.com/nl-nl/library/ms188663(en-us).aspx
July 15, 2008 at 12:17 pm
No, Database Mail is not available in SQL Server 2005 Express Edition.
July 15, 2008 at 8:13 am
Viewing 15 posts - 1,351 through 1,365 (of 1,417 total)