Viewing 15 posts - 631 through 645 (of 2,486 total)
What account are you running the SQL Services under?
October 12, 2005 at 5:06 pm
Right-Click the stored proc and choose "Script To New Window as -> Create". Then you can edit the stored procedure and when you run it (F5), and it's re-created in the database.
Context...
October 12, 2005 at 5:05 pm
Have a look at the Best Practices Analyzer over at Microsoft.
October 12, 2005 at 6:03 am
One of my most used command-line switches is -C. This loads a previously saved configuration file. Comes in very handy when you have a couple of people working on a...
October 12, 2005 at 5:39 am
"Actually, using a @variable does work "
In the context that the poster is trying to use it, no it doesn't.
Using CONTAINS ( because neither FREETEXTTABLE or CONTAINSTABLE support the use...
October 12, 2005 at 4:57 am
Please do not cross-post.
See my response here
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=228157
October 11, 2005 at 9:15 pm
Please do not cross-post.
See my response here
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=228157
October 11, 2005 at 9:15 pm
Take a look at these and choose the method that suits your purpose.
http://support.microsoft.com/default.aspx/kb/186133
http://databasejournal.com/features/mssql/article.php/10894_2244821_1
http://www.sqlteam.com/item.asp?ItemID=1491
October 11, 2005 at 9:14 pm
ALTER PROCEDURE My_First_Transaction @FirstName varchar (10 ) , @LastName varchar (20 ) AS BEGIN TRANSACTION INSERT INTO Employees( FirstName, LastName ) VALUES( @FirstName,@LastName ) IF...
October 11, 2005 at 9:05 pm
Check the syntax in Books Online,
"freetext_string
Is the text to search for in the specified column. Variables cannot be used. "
October 11, 2005 at 8:58 pm
Peter
Can you edit your original post to remove the formatting. Just highlight the line and select "Normal" from the style drop-down.
October 11, 2005 at 8:54 pm
I spend most of my stored procedure development time in Query Analyzer.
Haven't looked at the SQL Server 2005 Management/Development Studio much, but I've got a feeling they'll be a lot...
October 11, 2005 at 5:33 pm
It does seem that the RETURN is not functioning as per Books Online ( wouldn't be the first time )
"Although, oddly, the SELECT statements...
October 11, 2005 at 7:53 am
Server details are,
- Dual 3Ghz, 2GB Ram, basic OS/Logs/Data raid setup.
- Windows 2003 SP1
- 3 x SQL Server 2000 SP4
- Reporting Services SP2
- IIS configurations are all setup as per default...
October 11, 2005 at 6:45 am
Actually, I just took a look at the counts for today and we're up over 1100 reports all rendered and distributed in about 20mins. So I'm pretty happy with the...
October 11, 2005 at 6:13 am
Viewing 15 posts - 631 through 645 (of 2,486 total)