Viewing 15 posts - 2,611 through 2,625 (of 3,689 total)
I've lost count of the number of times I've sat through a recording of a TV show, adverts and all and then had either one of two thoughts
a) Hang on...
December 21, 2005 at 3:09 pm
Guys, in the UK it has been illegal to tape records (remember those) and CDs for as long as I can remember. It is an entirely toothless law because...
December 21, 2005 at 1:45 am
Off the top of my head (I don't have SQL at home) I'm not sure if TEXT and NTEXT are allowed as output parameters but the general format is
CREATE PROC...
December 20, 2005 at 12:31 pm
Assuming that ISQL on Sybase is the equivalent of OSQL in SQL Server then the easiest way of using a batch file to create tables is to create a text...
December 20, 2005 at 12:19 pm
December 20, 2005 at 4:40 am
I need a lot more information to give anything other than general advice.
Is your data access via stored procedures?
Are there indexes where they should be on the fields?
What is the...
December 19, 2005 at 5:47 am
Does the account used for the MSSQLSERVER service have "Lock Pages In Memory" privileges. Even if the account is an administrator it won't have these by default.
SQL...
December 19, 2005 at 5:14 am
If you are going to do searches within an ASP page then my approach would be to :
December 16, 2005 at 3:11 pm
December 16, 2005 at 12:01 pm
The firewall admins asked me what I would recommend.
December 16, 2005 at 11:58 am
The CEO in my last place was also the owner of the company and he observed that there is a difference in attitude between the US and the UK.
Failure is...
December 16, 2005 at 11:54 am
Can we assume that the web server can use THEFORCE?
Have your tried replacing Data Source=THEFORCE with Server=THEFORCE?
December 16, 2005 at 9:47 am
SELECT * from dbo.tblInventory
WHERE intInvItemTypeID = ISNULL(NULLIF( @strTypeScopeX,0),fk_intInvItemTypeID )
IF @strTypeScopeX is zero the the NULLIF function returns NULL
The ISNULL statement therefore returns the value of fk_intInvItemTypeID
In effect you...
December 16, 2005 at 9:41 am
SELECT @viewname= 'View'+CAST(MAX(dt.value)+1 AS VARCHAR(50))
FROM (
SELECT CAST(SUBSTRING(Name,5,len(Name)) AS Integer) as value
FROM Views
WHERE Name LIKE 'View%'
) as dt
December 16, 2005 at 3:50 am
Viewing 15 posts - 2,611 through 2,625 (of 3,689 total)