Viewing 15 posts - 421 through 435 (of 1,413 total)
Application locks are just a simple implementation of semaphores that use SQL Server's built-in support for locks. They are used by an application calling sp_getapplock to aquire some resource. What...
August 10, 2005 at 2:08 am
Ok, so break down the problem then. Create a simple VBScript file on the server running IIS and try to connect to the server. See where that goes.
August 10, 2005 at 1:28 am
Yes, that looks promising. Please post a short review here.
August 10, 2005 at 1:26 am
But somewhere there must be an error message swallowed, most probably in the COM object then. If you looked for that it migt be easier to understand what is failing.
Can...
August 10, 2005 at 1:14 am
Ken Henderson describes it (in short terms) in The Guru's Guide to SQL Server Stored Procedures, XML, and HTML. You can probably find some resources online with Google.
Out of curiosity,...
August 10, 2005 at 1:09 am
This book is a good start by the way: The Guru's Guide to Transact-SQL by Ken Henderson
August 10, 2005 at 1:05 am
I agree with brendthess...you need to post some sample data at the very least...
+1
Here is a good reference: Providing details
August 10, 2005 at 1:01 am
This error message tells you that somewhere in the query you are referring to a column called Date, but more than one of the tables that are used in the...
August 10, 2005 at 12:56 am
Join on xusertype instead and you will get the correct result:
select
distinct so.name as [Table Name],
sc.colid as [ID],
sc.name as [Column Name],
st.name as [Data Type],
sc.length as [Size]
from sysobjects so
inner join syscolumns sc...
August 10, 2005 at 12:45 am
Hehe, thanks.
I'm quite happy that post 1000 included actual code for a specific solution, since it symbolize the kind of posts I...
August 9, 2005 at 7:03 am
No, that is a client configuration. It is not stored in the server you connect to so you can't access it by T-SQL.
August 9, 2005 at 6:38 am
Must be that I am not a native English speaker.
And we're not yet sure I made a correct interpretation anyway.
August 9, 2005 at 6:33 am
Great, and nice of you to reply with the url for the query so others with the same issues are helped.
August 9, 2005 at 5:37 am
Why not simply use the numeric form of weekday, and then use DATENAME when outputting it?
August 9, 2005 at 5:34 am
Do you mean the virtual tables that you can access to get the rows that where modified by the statement that triggered the trigger? If so, then they are called...
August 9, 2005 at 5:32 am
Viewing 15 posts - 421 through 435 (of 1,413 total)