Viewing 15 posts - 35,611 through 35,625 (of 49,557 total)
DECLARE @Input Varchar(20)
SET @Input = 'Parthi'
SET @Input = @Input + '''s'
Select @Input
Escape a quote by doubling it.
November 30, 2009 at 12:13 am
RGDavis396 (11/29/2009)
What is the best way to index on URLS's and email address?
Same way you'd index anything else. Normal index on the column. Is there some reason you don't...
November 30, 2009 at 12:03 am
parthi-1705 (11/29/2009)
I little bit confused with that one.My thing is whether Pages are there in Transaction Log
No pages in the transaction log. The data file is divided...
November 29, 2009 at 11:48 pm
arun.sas (11/28/2009)
Hi,Also use this,
For search in the current database
select object_name(id)TableName from syscolumnswhere name = ‘your string’
syscolumns is a deprecated system view and will be removed in a future version....
November 28, 2009 at 1:43 am
vbprogrammer1986 (11/27/2009)
but note that u can also use a updatable view for update multiple table in one statement.
But the update must still target a single table, ie with an updateable...
November 28, 2009 at 12:21 am
MatthewA.Herold (11/27/2009)
select @tablename = (select Name from Sysobjects where Name like 'queue%' and type = 'U')
That select must return only one value. You're assigning the result to a single string...
November 27, 2009 at 1:18 pm
aureolin (11/27/2009)
You need to balance the storage space necessary for keeping all those backups with how far back you might need to go to find something.
Not just how far...
November 27, 2009 at 1:10 pm
Please post query, table definitions, index definitions and execution plan, as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/ It's really hard to talk about performance in abstract.
Are the indexes fragmented?
First execution of a query will...
November 27, 2009 at 1:08 pm
John Paul-702936 (11/27/2009)
Please .......PleaseeeeeeReply Please ........................
Bitbucket did. What about his reply (which did answer your question on deleting records in related tables) was not sufficient?
November 27, 2009 at 1:05 pm
Please run the following and post the FULL output. There's not enough information in what you've so far posted to make even an educated guess.
DBCC CHECKDB (<Database Name>) WITH NO_INFOMSGS,...
November 27, 2009 at 8:32 am
Not any update to a varchar, one that increases the size of the varchar, hence increasing the size of the row.
It's an option, just not a free one. Tradeoffs, just...
November 27, 2009 at 4:27 am
Would you like to expand on that? (details or example)
PAD_INDEX controls whether the fill factor applies to just the leaf levels or the entire index (leaf and non-leaf levels)
November 27, 2009 at 3:18 am
Johnc (11/27/2009)
November 27, 2009 at 3:02 am
cute_lhen05 (11/26/2009)
"you are not logged on as the databae owner or system...
November 26, 2009 at 2:15 pm
Viewing 15 posts - 35,611 through 35,625 (of 49,557 total)