Viewing 15 posts - 796 through 810 (of 1,109 total)
JanM (10/10/2007)
Hi, is it possible to upgrade/convert a trial version (SQL Server 2005 Standard) into the full version without uninstalling the trial? If yes how?Thanks
Jan
Hi Jan,
it is possible, you will...
October 10, 2007 at 11:13 am
Sorry, I misunderstood you. You could either give them CONTROL, or use the grant EXECUTE statement with "WITH GRANT OPTION".
Andras
October 10, 2007 at 9:08 am
GRANT EXECUTE ON SCHEMA::dbo TO someuser
use SCHEMA to disambiguate
Andras
October 10, 2007 at 8:58 am
You can create dynamic SQL that is over 8000 characters on 2005. Example:
DECLARE @query AS nvarchar(MAX), @i AS int
SELECT @query = N'', @i = 0
WHILE @i < 500
BEGIN
SELECT...
October 10, 2007 at 8:01 am
Hi Doug,
While it may not solve your problem, as you say you have tried ExecuteXmlReader, one thing that is worth noting is that SqlDataReader generally chops up large XML...
October 10, 2007 at 7:43 am
Sandy (10/10/2007)
Still I have the doubt on this,
My question was:
Can I Add a Column in a specific position of a Table By
using SQL Script, Is it possible...
October 10, 2007 at 3:22 am
@ECHO OFF
NET STOP SQLSERVERAGENT
NET STOP MSSQLSERVER
NET START MSSQLSERVER
NET START SQLSERVERAGENT
Regards,
Andras
October 10, 2007 at 1:52 am
Hi Sandy,
you need to rebuild the table, i.e. create a temporary table with the right column order, copy the date, delete to old table, rename the temporary table.
What you can...
October 10, 2007 at 1:49 am
It may actually be a problem with SQL Server. Have a look at http://support.microsoft.com/kb/930284
Regards,
Andras
October 9, 2007 at 8:56 am
g.sarvesh (10/8/2007)
i have a stored procedure and many parameters. i want to use "exec sp_name" and give some parameters of them then how can i give values for specific...
October 9, 2007 at 2:03 am
Steve Jones - Editor (10/8/2007)
October 8, 2007 at 9:39 am
Steve, you have started now a very very long thread 🙂
So to add to your style improvement (which is nicely indented), here is somehting that has qualified object names, and...
October 8, 2007 at 9:11 am
It looks fine 🙂 (well, of course when it comes to looks, it is interesting to see mixed casing, END and end :P)
It will be called once assuming that you...
October 8, 2007 at 7:46 am
There are many reasons for the tlog to grow, during maintenance one frequent reason is dbreindex. Switching to bulk recovery mode before the reindex and then switching back reduces the...
October 8, 2007 at 7:42 am
Viewing 15 posts - 796 through 810 (of 1,109 total)