Viewing 15 posts - 6,796 through 6,810 (of 7,636 total)
Vladan (5/28/2008)
May 28, 2008 at 6:03 am
good luck! Let us know if you have any more questions.
May 28, 2008 at 5:53 am
AFCC Inc. Com (5/27/2008)
May 27, 2008 at 11:31 pm
You don't need a cursor (not even a hidden one, as in the sp_MSforeachTable proc), this article lists a view that can do this, and includes much more per table...
May 27, 2008 at 11:07 pm
How about:
Select count(*)
From (Select TOP 1 *
From ServerName.DBName.Schema.TableName)
May 27, 2008 at 10:47 pm
Au4848 (5/27/2008)
Is possible to do ntext to binary are or not?
Not directly. I believe that you have to force it through some intermediate data types first, like:
Select @img =...
May 27, 2008 at 8:55 pm
Yes, it would have been nice if SQL Server had dependent objects use dependent Namespaces, but that never happened.
May 27, 2008 at 8:46 pm
The only way that you could get this information would be to parse the View source code yourself. The source code is available (in syscomments and other places).
May 27, 2008 at 8:38 pm
karthikeyan (5/27/2008)
I am unable to understand his slang ( whether it may be slang or technical jargon ).What i am saying is, i can't understand his speech.
Hmm, this makes it...
May 27, 2008 at 8:14 pm
I've been doing it for thirty years, but it still suprises me how hard some folks make it to help them.
May 27, 2008 at 8:07 pm
to get you started:
select * from tablename for xml auto
May 27, 2008 at 4:00 pm
Well, in the first one you passed in a varchar parameter ('123') and in the second one you passed in int (Employee.ID), apparently.
May 27, 2008 at 2:00 pm
try this:
select *
from master.sys.databases D
left Join master.sys.master_files F on F.database_id = D.Database_id
May 27, 2008 at 1:57 pm
Viewing 15 posts - 6,796 through 6,810 (of 7,636 total)