Viewing 15 posts - 106 through 120 (of 663 total)
Step 1
quote:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Test]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)drop table [dbo].[Test]
GO
CREATE TABLE [dbo].[Test] (
[A] [int]...
September 25, 2003 at 3:17 pm
Sorry did not read the full article.
A better solution is to use textcopy.exe
See usable example at http://www.mssqlcity.com/Articles/KnowHow/Textcopy.htm
September 25, 2003 at 12:04 am
September 24, 2003 at 5:07 pm
If you restore the database under another name, retrieve and save the object to disk.
September 23, 2003 at 11:42 pm
Try
http://support.microsoft.com/?id=810885
http://support.microsoft.com/default.aspx?scid=kb;en-us;319892
September 23, 2003 at 11:35 pm
Side attraction but noticed the 'SELECT *'
September 23, 2003 at 3:53 am
May in crease the tempdb size intially but should have less potential locking issues.
September 23, 2003 at 3:37 am
Plus by category, like a hierarchy.
Ok, maybe a checkbox, etc.
September 22, 2003 at 6:16 pm
quote:
Troubleshooting the Transact-SQLDebuggerhttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/trblsql/tr_servtools_5cfm.asp
quote:
http://www.windows2000faq.com/Articles/Index.cfm?ArticleID=14347
September 22, 2003 at 6:10 pm
BOL 2000:
LEN
Returns the number of characters, rather than the number of bytes, of the given string expression, excluding trailingblanks.
DATALENGTH
Returns the number of bytes used to represent any expression.
September 22, 2003 at 5:28 pm
[1-9] doesn't work
BOL 2000:
[] = Any single character within the specified range ([a-f]) or set ([abcdef]).
Then the next become 'hardcoded', first character must be a 0 and the second must...
September 22, 2003 at 2:01 pm
Beath, just interest sake, how many characters per row, plus minus, just to get an idea of the total amount of bytes being send to the client.
September 22, 2003 at 1:42 pm
I'll go with Allen_Cui, first try and determine what is causing the problem
Reminder: Make sure your backups have been done regularly, just in case.
September 22, 2003 at 3:48 am
One way is to specify a select statement and for the character based columns use IsNull(Col1,Space(10)).
September 22, 2003 at 3:32 am
Wondering if there maybe an open transaction hanging around. When last did you rebooted the server
September 22, 2003 at 3:21 am
Viewing 15 posts - 106 through 120 (of 663 total)