Viewing 15 posts - 271 through 285 (of 7,429 total)
That is the problem the character set you must have gotten it out of was symbol so if on a web page you display it it might look like this
[font="arial"]TRANSCOPYâ[/font]
when...
November 28, 2007 at 2:35 pm
Antares686 (11/28/2007)
It all depends on your output method and what character sets they support.
As well the font can sometimes give you other than intended results.
November 28, 2007 at 2:04 pm
It all depends on your output method and what character sets they support.
November 28, 2007 at 2:02 pm
Not that I can recall but there have been several scripts posted to use the system tables or schema views in the past to do this or you could build...
November 28, 2007 at 1:56 pm
Can you please expand the code for this back to the function with any sensitive info altered?
addNewOrder = New SqlCommand("InsertNewOrder",tr.Connection)
session("NewOrderID") = AddNewOrder.ExecuteScalar()
I want to understand your path thru
November 28, 2007 at 1:53 pm
When you say junk characters exactly what do you mean?
As for design NVARCHAR whill accept any valid character unless you have constrained to a limited list.
Are you trying to...
November 28, 2007 at 12:37 pm
I agree most people tend to have someone whose job it is specifically. Although in small houses it depends on who has the best knowledge the DBA or an App...
November 28, 2007 at 12:32 pm
allen davidson (11/28/2007)
November 28, 2007 at 12:22 pm
Hey bittucket your code doen't cycle to the next column. But based on that here is a simpler method commonly used
DECLARE @TableName AS VARCHAR(64)
DECLARE @sql AS VARCHAR(4000)
SET @TableName = 'LocDetail'
SELECT...
November 28, 2007 at 12:09 pm
Don't fully understand, you saw if Wed you want Thur, Fri, and Sat, what about Sun, Mon and Tues. All in all however look at DATEPART with the wk parameter,...
November 28, 2007 at 11:37 am
November 28, 2007 at 11:33 am
Megha Yadav (11/13/2007)
I have come across a DB where there are no Foreign key relationship's ...
Is this a wise thing to do? ... Since the data is being...
November 28, 2007 at 11:30 am
Loads of ways to do, here is what I was talking about.
DECLARE @MyDate NVARCHAR(6)
SET @MyDate = '112807'
SELECT CAST(STUFF(STUFF(@MyDate,5,0,'/'),3,0,'/') as DATETIME)
November 28, 2007 at 10:50 am
It changes, India and China have been the biggest but inflation may drive people away in the near future. Phillipines are the next big target from what I have seen....
November 28, 2007 at 10:45 am
Normally I would do something like this
Invoices
Invoice_ID indentity(1,1) int or bigint primary key,
Customer_ID (fk to purchasers information)
and a table for items
Invoice_Details
Item_ID (FK to purchased item where decription comes from),
Quatity,
Price_Per_Item,
Discount_Applied
Then...
November 28, 2007 at 10:41 am
Viewing 15 posts - 271 through 285 (of 7,429 total)