Viewing 15 posts - 13,261 through 13,275 (of 13,456 total)
i believe the extended property in question is getting CONVERTed into a varchar field with no definition.
if you cast/convert something as a varchar without a size, it defaults to a...
September 12, 2005 at 12:16 pm
i would have a separate table that has a reference to the InventoryMaster Table and the Category table; I'm awful sure going down the road, you will have multiple items...
September 12, 2005 at 6:17 am
Wherever possible, the backup should have all the data required; ie all lookup tables for static drop down lists such as "status" and "state" and whatnot are in the backup.
I...
September 7, 2005 at 12:54 pm
yes; a SQL Server backup is the equivilent of a dump file; the differences are it restores much faster than a dump, and it is really binary in nature; opening...
September 7, 2005 at 12:17 pm
the best answer is to create a backup of the database, and restore the database, instead of trying to script it out.
I don't think you can script out a TEXT,...
September 7, 2005 at 10:23 am
if you pass zero to a date time field, it is a valid date. that date is 1900-01-01 00:00:00.000 of course, so i think your foxpro database has zeros for...
September 7, 2005 at 7:07 am
use this script from the contributions, and change the where xtype='U'
to be where xtype in('U' ,'V')
http://www.sqlservercentral.com/scripts/contributions/759.asp
that will give you tables and views in dependancy order, which is the...
September 7, 2005 at 6:54 am
which user did you create? rep_process or rep_user?
did you create only one but both need to exist?
September 7, 2005 at 6:40 am
if it's a test database, you should be able to get another copy from production, right? you do have access to backups, right?
if not, your only hope is that you...
September 7, 2005 at 6:35 am
someone recently had trouble with FT where a very vanilla statement no loner worked, but worked on other servers with same data/config.
reinstalling all the patches did the trick;
at a minimum,...
September 6, 2005 at 9:24 pm
i was wondering how this new guy was beeting Remi to the punch/post; must be that Remi-bot we heard so much about. ![]()
Seriosuly, thanks...
September 6, 2005 at 9:22 pm
umm...SQL Server 2000 books online: there's a section called What's New that lists everything relavant in glorious detail.
if you don't have SQl 2000 installed, you can search the knowledgebase for...
September 6, 2005 at 3:35 pm
i'm sorry; i would try some lame ideas like changing the definition of @SearchKeywords char(30) to Varchar like in the example; i'll keep looking, but i dno't see what the...
September 2, 2005 at 1:11 pm
the example from BOL clearly shows an example with a variable similar to what youy are doing:
USE pubs
GO
DECLARE @SearchWord varchar(30)
SET @SearchWord ='Moon'
SELECT pr_info FROM pub_info WHERE FREETEXT(pr_info, @SearchWord)
does this database...
September 2, 2005 at 12:51 pm
in the "other" database which was your original source for the [PM] data, is the information all together is a larger table?
can you post the schema of the source...
September 2, 2005 at 10:21 am
Viewing 15 posts - 13,261 through 13,275 (of 13,456 total)