Viewing 15 posts - 61 through 75 (of 177 total)
Yes. Lots.
A script was posted to this forum:
http://www.sqlservercentral.com/scripts/contributions/622.asp
December 28, 2003 at 8:27 pm
This is not perfect code. If you want it to work in all cercumstances, you'd have to take into account the datatype of each column and exclude identity columns....
December 28, 2003 at 4:03 pm
declare @latestID int
select @latestID = IDENT_CURRENT('tbl_users')
December 28, 2003 at 3:31 pm
quote:
When you say you can't telnet, what are you getting?Just a blank screen (nothing seems to come back) or connection refused/could not...
December 28, 2003 at 10:46 am
There's no automatic way. You'll have to build a client that will retrieve the image, change the format and then update the database.
December 26, 2003 at 2:35 pm
quote:
I need the swap the value of the column 3 whith other row how do i do this .
December 26, 2003 at 2:27 pm
quote:
But Telnet is also a terminal program. So using the terminal program telnet to 1433/tcp won't be affected if a network engineer...
December 26, 2003 at 2:08 pm
If you use update locks, you should be OK. You can test this by putting in a very long loop in your SP, so that it takes several seconds...
December 24, 2003 at 12:04 pm
quote:
When storing an image into a BLOB field, also insert its extension into a separate column so that when you reconstruct the...
December 24, 2003 at 11:55 am
Delete MainTable
From MainTable, #TempTable
Where MainTable.Column = #TempTable.Column
December 24, 2003 at 11:48 am
Glad that we cleared that up.
December 24, 2003 at 9:10 am
No. Read committed is just a little more restrictive than read uncommitted. It doesn't allow dirty reads, but it doesn't guarantee repeatable reads either. In other words,...
December 24, 2003 at 9:06 am
You can assign the processadmin role to allow your user to kill a process. If the user is also db_owner or a member of dbcreator, he can put the db...
December 24, 2003 at 9:01 am
quote:
The Second SELECT query IS usually NEEDED in a Master-Detail Front-End Type
A second query may...
December 24, 2003 at 8:55 am
I still have no idea what you said.
December 24, 2003 at 8:43 am
Viewing 15 posts - 61 through 75 (of 177 total)