Viewing 15 posts - 1,141 through 1,155 (of 7,636 total)
Chan Wai Yin (12/21/2009)
We want to store native fonts for Chinese Macau Fonts and we use Chinese_PRC_90_CI_AS database collation according to MSDN. However as far as I know SQL Server...
December 22, 2009 at 6:14 am
Also, note that using the [ code ] tags can help us a lot by making it easier to read your code:
strSql="Select * from Tbl_Transaction where txt_StateCode="& txt_StateCode &" and...
December 22, 2009 at 6:00 am
For future reference, please note that this is a SQL Server 2008 forum, and in general, you will get better response to yoru SQL 2000 questions in the corresponding SQL...
December 22, 2009 at 5:51 am
warrenstroebel (12/16/2009)
...I hope I have explained my predicament thouroughly enough for someone to understand it and be able to provide some advice. ...
Well, *I* can't figure out what you're asking...
December 21, 2009 at 11:16 am
skinothetis1 (12/16/2009)
December 21, 2009 at 11:01 am
There are lots of reasons, but in my experience, there are two (or three) biggies...
First is what nabha already mentioned: some instances are hidden and won't ever show up.
Second, is...
December 21, 2009 at 10:39 am
I think that this thread (http://www.sqlservercentral.com/Forums/Topic649184-386-1.aspx) explains the problem.
December 21, 2009 at 10:18 am
sbowell (12/13/2009)
I did have a play with Service Broker and couldn't get what I wanted out of it. I haven't a clue what BizTalk is or even how to use...
December 21, 2009 at 10:11 am
nagarajan.tiruppur (12/15/2009)
I have a SP ....
CREATE PROCEDURE
sp_GET_NEXT_SEQU (@TABLE_NAME char(25))
AS
DECLARE @LV_TEST numeric(9,0)
BEGIN TRANSACTION
SELECT @LV_TEST = SQ_COUNT FROM F_Sequ LOCK WHERE SQ_TABLE=@TABLE_NAME
UPDATE F_Sequ SET...
December 21, 2009 at 10:02 am
Two things, first in your SQL script:
DECLARE @xml XML
SELECT @xml = xml_data FROM #XmlImportTest
DECLARE @Pointer INT
EXECUTE sp_xml_preparedocument @Pointer OUTPUT,@xml
SELECT
[Status] = Table1.Column1.value('./../Status[1]', 'varchar(50)'),
PONumber = Table1.Column1.value('./../PONumber[1]', 'varchar(24)')
FROM @xml.nodes('/Response/PONumber') AS Table1(Column1)
You do not...
December 21, 2009 at 9:38 am
No something is wrong here. Without the CONNECT right, a Login cannot use any resources in the database. If they are getting in "some other way" then they...
December 20, 2009 at 9:01 am
The only way to do this that I can see would be to use "GRANT ALTER TO {user} WITH GRANT OPTION" which gives them the desired permissions, except on everything...
December 20, 2009 at 8:39 am
I think that what you want is something like "GRANT ALTER ANY PROCEDURE". Unfortunately that doesn't exist.
December 20, 2009 at 8:29 am
skinothetis1 (12/14/2009)
Thanks!!
Glad I could help.
...Anyway i'm from Greece so English is not my mother language (although English is a mixture of Greek and Latin).
Well, while it's true that English has...
December 15, 2009 at 11:29 pm
Viewing 15 posts - 1,141 through 1,155 (of 7,636 total)