Viewing 10 posts - 16 through 25 (of 25 total)
Actually Remi,
There were 70 tables that qualified for the query, and the total bytes was about 7200. None of which helps to explain why The variable is being limited to...
July 14, 2005 at 2:44 pm
From BOL:
[N]'tsql_string'
Is a constant string. tsql_string can be of nvarchar or varchar data type. If the N is included, the string is interpreted as nvarchar data type with a...
July 14, 2005 at 8:12 am
This is for display only in QA and char(10) works just fine.
July 14, 2005 at 8:03 am
Giving the customer what he asked for.
July 14, 2005 at 8:02 am
Should read:
Declare @SQL varchar(8000),
@TableName varchar(128)
select @SQL = ''
-- select len(@SQL)
-- select datalength(@SQL)
select @SQL = @SQL + 'Create View vw_' + name + char(10) +
'AS' + char(10) +
'select *...
July 13, 2005 at 2:35 pm
QA screen output size was set to 8000.
Declare @SQL varchar(8000),
@TableName varchar(128)
select @SQL = ''
-- select len(@SQL)
-- select datalength(@SQL)
select @SQL = @SQL + 'Create View vw_' + @TableName + char(10) +
...
July 13, 2005 at 2:33 pm
Break the SQL statement into two statements with a UNION operator. This should allow for an index seek on ends of the sql statement.
April 29, 2005 at 7:44 am
You are looking for the SP: sp_OACreate. Calling this SP will allow you to create a file handle to a file on the disk, which you can then use to...
March 23, 2005 at 7:32 am
I do not believe that one needs exclusive access to a database as I have shrunk databases on the fly in the past.
I have encountered this problem though whenever a...
February 24, 2005 at 11:19 am
I would try a couple of things. Open the table in EM and move to the 13620 row. It's possible that you have injected one or more non-printing characters in...
February 24, 2005 at 11:13 am
Viewing 10 posts - 16 through 25 (of 25 total)