Viewing 15 posts - 1 through 15 (of 21 total)
thanks for the reply.
NotePad++ can be good solution for own use or for light use.
for the end user it can not be a clean usage.
the solution must...
January 29, 2017 at 11:50 pm
What BCP outputs is XML. It's the viewer that you're having issue with. ...
January 28, 2017 at 3:33 am
the only reason for upgrading to 2016 is the utf-8 encoding witch comes with it
meanwhile i tried another approach than succeeded:
set @xml=(select xml_data from FCSD.DBO.XmlImport)
set @xml_convert=cast(@xml as nvarchar(max));
IF OBJECT_ID('tempdb..##x') IS...
September 4, 2016 at 12:44 pm
OK
I see what you mean
but what about xml that exceed the varchar(max)?
October 22, 2015 at 7:45 am
adding it manually is not an option
is there an option to do it with modify or insert command?
October 22, 2015 at 5:42 am
thanks for the reply and the willingness to help
I'm not familiar with PowerShell or other scripting language besides sql
any assistance will be wonderful
sam
February 21, 2013 at 10:04 am
with
ALTER TABLE Elmn DROP CONSTRAINT PK_Elmn
i get:
Server: Msg 3725, Level 16, State 1, Line 1
The constraint 'PK_Elmn' is being referenced by table 'ElmSh', foreign key constraint 'FK_ElmSh_Elmn'.
Server: Msg 3727, Level...
August 30, 2007 at 3:35 am
because it is primary key index droping the index fail
August 30, 2007 at 2:53 am
i mean how to use the clustering key so i can do something like:
select clientname from tbl where "clustering key" =@x
or
select "clustering key" from tbl where clientname=@y
in shortly...
August 27, 2007 at 12:40 pm
thank's a lot, you were very helpfull
is there a way to know the location (row number)
of a certain record in a clustered table?
August 25, 2007 at 1:59 pm
how can i have a clustered index on clientname when clientname can't be uniqe?
August 22, 2007 at 3:10 pm
when i export hebrew text stored in access table (with the OutputTo method) to excel file
i expect to get hebrew also in the excel file.
it's work's right with access 2000/xp/2003...
July 22, 2007 at 2:44 pm
Viewing 15 posts - 1 through 15 (of 21 total)