Viewing 15 posts - 16 through 30 (of 48 total)
The Visual Studio components that are installed with SQL Server do not require any additional licensing outside of the SQL Server licensing itself.
April 8, 2010 at 2:33 pm
If you are looking for something that is free you can download SQL Server Express Edition.
http://www.microsoft.com/express/Database/
Although if you are really wanting to learn SQL Server I would suggest...
February 2, 2010 at 8:27 pm
Jack beat me to it. 🙂
January 27, 2010 at 1:37 pm
You will want to use the OVER clause and PARTITION BY argument with the ROWNUMBER() function that Jack suggested to achieve your desired outcome. Check out this MSDN link...
January 27, 2010 at 1:37 pm
That is definitely correct, the guest account would have to be granted permissions in the second database for that to work. I suppose you could use a logon trigger...
January 25, 2010 at 2:57 pm
Have you thought about using an application role to facilitate this?
January 25, 2010 at 2:27 pm
Thanks for the details. Greatly appreciated!
July 1, 2009 at 9:36 am
I have implemented something very similar to this however; instead of creating the PackageLogID as a user variable I am just using the system variable "ExecutionInstanceGUID". I am curious...
July 1, 2009 at 8:51 am
In addition to what Greg mentioned above you can also set the column to not allow nulls in the designer. I am not sure it is completely necessary but...
May 5, 2009 at 1:51 pm
GilaMonster (5/5/2009)
Use DBCC SQLPERF(LogSpace) to see what percentage of the log is...
May 5, 2009 at 10:00 am
Thanks Adam, I'm not trying to be pushy I have just had good luck with that procedure. Hope it works! Let me know how it goes.
May 5, 2009 at 9:09 am
Hi Adam,
Have you actually tried this procedure? I have yet to run into a situation where this would not force shrink the log. I have encountered many scenarios...
May 5, 2009 at 8:14 am
Use the following script to create the stored procedure "sp_forcelogtoshrink".
You can speicify the new log size by setting the @NewSize value in the script before createing the procedure
[Code]
SET ANSI_NULLS ON
GO
SET...
May 5, 2009 at 7:49 am
I am currently in the market for something similar and as far as one tool that can do it all I agree that will be hard to find. From the...
November 17, 2006 at 8:43 am
If you want it to be support by Microsoft in a production environment you will need to be using either Windows 2000 Advanced Server or Windows 2003 Enterprise Edition. See...
November 13, 2006 at 9:49 pm
Viewing 15 posts - 16 through 30 (of 48 total)