Viewing 15 posts - 16 through 30 (of 38 total)
GilaMonster (10/18/2008)
SQL Server Database Administrator
October 18, 2008 at 2:20 pm
I have blogged about this. Please see my post at:
http://dbalink.wordpress.com/2008/06/15/find-user-tables-and-their-columns-info-in-sql-server/
SQL Server Database Administrator
October 13, 2008 at 1:12 pm
please document the issue and solution and post it somewhere...optionally, you can post in my blog: http://dbalink.wordpress.com š
SQL Server Database Administrator
August 12, 2008 at 3:26 pm
Carl Federl (8/9/2008)
Regarding "mycol"What is the datatype ?
What are all the possible values ?
mycol's data type is INT
My Update would look something like this:
UPDATE dbo.mytable
...
SQL Server Database Administrator
August 9, 2008 at 5:06 pm
GSquared (8/4/2008)
SQL Server 2005 Bible by Paul Nielsen is great.
The videos tutorial of Paul Nielsen on TSQL (SQL Server 2005) is great! I believe it is from Total Training. If...
SQL Server Database Administrator
August 9, 2008 at 3:32 pm
Ariadne (8/8/2008)
SQL Server Database Administrator
August 8, 2008 at 7:44 pm
You can download a Red Gate's Trial Software that comes with a Free eBook. The ebook is a good source. Find it here: http://www.devx.com/RedGateVS/Door/37320
You can also check some...
SQL Server Database Administrator
August 8, 2008 at 6:34 pm
It would be great if you also post your specific questions here. š
SQL Server Database Administrator
August 8, 2008 at 6:22 pm
Try to get you cursor value from a table. I think the problem lies in here:
declare get_patient_id CURSOR for
...
SQL Server Database Administrator
August 8, 2008 at 5:56 pm
You can only use the License once. Those are NOT trial versions.
SQL Server Database Administrator
August 8, 2008 at 5:07 pm
It could be that you are dropping the temporary table inside the cursor. try:
Close mycursor
Deallocate mycursor
Drop Table #mytemptable
-Marlon Ribunal
SQL Server Database Administrator
August 8, 2008 at 4:49 pm
Learn how to use the tools (execution plans, optimizer, etc). I don;t think they do much good until you understand the underlying nature of the beast.... And our tracking db...
SQL Server Database Administrator
August 8, 2008 at 3:59 pm
You can also get Visual Studio 2008 Prof Ed, Windows Server 2003, etc if you are eligible...
SQL Server Database Administrator
August 7, 2008 at 4:05 pm
if you are a student or have a student son/daughter, nephew/niece that is on technology field, take a look at this: https://downloads.channel8.msdn.com/Products.aspx
SQL Server Database Administrator
August 6, 2008 at 1:25 pm
I actually used the IP address of the server in my script:
SET @path = Nā\\[MY IP HERE]\Backup\ā + @folderdate + ā\ā
SQL Server Database Administrator
July 31, 2008 at 6:04 pm
Viewing 15 posts - 16 through 30 (of 38 total)