473,398 Members | 2,380 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Indexing Service IIS 5.0 to IIS 6.0

Jay
Hello all.

I've recently transferred our web sites from a Windows2000 server to a
Windows2003 server. The transfer went almost flawless until I noticed that
our search function isn't working anymore. I'm using an ASP script to use
the Indexing Services and have set up my catalogs and directories but I'm
getting a 'type mismatch' on one of my Server.URLEncode commands.

Do I need to obtain a new script to utilize the Indexing Services of
Windows2003? If so, does anyone know where I can find this or would it be
better to use a service such as Google or another SE?

Thanks,

- J
Jul 19 '05 #1
15 7769
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Hello all.

I've recently transferred our web sites from a Windows2000 server to a
Windows2003 server. The transfer went almost flawless until I noticed that
our search function isn't working anymore. I'm using an ASP script to use
the Indexing Services and have set up my catalogs and directories but I'm
getting a 'type mismatch' on one of my Server.URLEncode commands.

Do I need to obtain a new script to utilize the Indexing Services of
Windows2003? If so, does anyone know where I can find this or would it be
better to use a service such as Google or another SE?


I'm not sure that a type mismatch error with Server.URLEncode relates to an
issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/

Jul 19 '05 #2
Jay

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Hello all.

I've recently transferred our web sites from a Windows2000 server to a
Windows2003 server. The transfer went almost flawless until I noticed that our search function isn't working anymore. I'm using an ASP script to use the Indexing Services and have set up my catalogs and directories but I'm getting a 'type mismatch' on one of my Server.URLEncode commands.

Do I need to obtain a new script to utilize the Indexing Services of
Windows2003? If so, does anyone know where I can find this or would it be better to use a service such as Google or another SE?
I'm not sure that a type mismatch error with Server.URLEncode relates to

an issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


It occures on the line that reads:

' Construct the URL for hit highlighting
WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )

Does it have something to do with vpath?

- J
Jul 19 '05 #3
"Jay" <je******@yahoo.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
Hello all.

I've recently transferred our web sites from a Windows2000 server to a
Windows2003 server. The transfer went almost flawless until I noticed that our search function isn't working anymore. I'm using an ASP script to use the Indexing Services and have set up my catalogs and directories but I'm getting a 'type mismatch' on one of my Server.URLEncode commands.

Do I need to obtain a new script to utilize the Indexing Services of
Windows2003? If so, does anyone know where I can find this or would it be better to use a service such as Google or another SE?


I'm not sure that a type mismatch error with Server.URLEncode relates to

an
issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running

IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


It occures on the line that reads:

' Construct the URL for hit highlighting
WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )

Does it have something to do with vpath?


It could. What is RS("vpath")? It might help to show more of your code.
What value does RS("vpath") return?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/

Jul 19 '05 #4
On Wed, 3 Dec 2003 13:23:35 -0600, "Jay" <je******@yahoo.com> wrote:

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
> Hello all.
>
> I've recently transferred our web sites from a Windows2000 server to a
> Windows2003 server. The transfer went almost flawless until I noticedthat > our search function isn't working anymore. I'm using an ASP script touse > the Indexing Services and have set up my catalogs and directories butI'm > getting a 'type mismatch' on one of my Server.URLEncode commands.
>
> Do I need to obtain a new script to utilize the Indexing Services of
> Windows2003? If so, does anyone know where I can find this or would itbe > better to use a service such as Google or another SE?


I'm not sure that a type mismatch error with Server.URLEncode relates to

an
issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running

IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


It occures on the line that reads:

' Construct the URL for hit highlighting
WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )

Does it have something to do with vpath?


Try a Response.Write RS("vpath") and see what you're getting.

Jeff
Jul 19 '05 #5
Jay

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
> Hello all.
>
> I've recently transferred our web sites from a Windows2000 server to a > Windows2003 server. The transfer went almost flawless until I
noticed that
> our search function isn't working anymore. I'm using an ASP script
to use
> the Indexing Services and have set up my catalogs and directories
but I'm
> getting a 'type mismatch' on one of my Server.URLEncode commands.
>
> Do I need to obtain a new script to utilize the Indexing Services of
> Windows2003? If so, does anyone know where I can find this or would
it be
> better to use a service such as Google or another SE?

I'm not sure that a type mismatch error with Server.URLEncode relates
to an
issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for
running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


It occures on the line that reads:

' Construct the URL for hit highlighting
WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )

Does it have something to do with vpath?


It could. What is RS("vpath")? It might help to show more of your code.
What value does RS("vpath") return?


Hmm...I'm really not sure. The script came from Microsoft's web site almost
2 years ago. I never really understood what it was doing very well. I'm
assuming that it's the path of the file that the Indexing Service returns.

- J
Jul 19 '05 #6
Jay

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:3f*****************@msnews.microsoft.com...
On Wed, 3 Dec 2003 13:23:35 -0600, "Jay" <je******@yahoo.com> wrote:

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
> Hello all.
>
> I've recently transferred our web sites from a Windows2000 server to a > Windows2003 server. The transfer went almost flawless until I noticed

that
> our search function isn't working anymore. I'm using an ASP script to

use
> the Indexing Services and have set up my catalogs and directories but

I'm
> getting a 'type mismatch' on one of my Server.URLEncode commands.
>
> Do I need to obtain a new script to utilize the Indexing Services of
> Windows2003? If so, does anyone know where I can find this or would
itbe
> better to use a service such as Google or another SE?

I'm not sure that a type mismatch error with Server.URLEncode relates
toan
issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running

IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


It occures on the line that reads:

' Construct the URL for hit highlighting
WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )

Does it have something to do with vpath?


Try a Response.Write RS("vpath") and see what you're getting.


Hmm...returns nothing. I wonder if vpath isn't used in Win2003 Indexing
Services.

- J
Jul 19 '05 #7
> > Try a Response.Write RS("vpath") and see what you're getting.

Hmm...returns nothing. I wonder if vpath isn't used in Win2003 Indexing
Services.


Jay, as others have asked, please show more code. We don't even know where
RS("vpath") comes from, or what RS is.

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/
Jul 19 '05 #8
Jay

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:%2******************@TK2MSFTNGP09.phx.gbl...

"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bq**********@kcweb01.netnews.att.com...
"Jay" <je******@yahoo.com> wrote in message
news:ez**************@tk2msftngp13.phx.gbl...
> Hello all.
>
> I've recently transferred our web sites from a Windows2000 server to a > Windows2003 server. The transfer went almost flawless until I
noticed that
> our search function isn't working anymore. I'm using an ASP script
to use
> the Indexing Services and have set up my catalogs and directories
but I'm
> getting a 'type mismatch' on one of my Server.URLEncode commands.
>
> Do I need to obtain a new script to utilize the Indexing Services of
> Windows2003? If so, does anyone know where I can find this or would
it be
> better to use a service such as Google or another SE?

I'm not sure that a type mismatch error with Server.URLEncode relates
to an
issue with Indexing Services. Can you give some more details?

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for
running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserv...y/centers/iis/


It occures on the line that reads:

' Construct the URL for hit highlighting
WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )

Does it have something to do with vpath?


It could. What is RS("vpath")? It might help to show more of your code.
What value does RS("vpath") return?


Tom,

I posted the code on an HTML page so it wouldn't clutter the NG.

http://www.pacer.org/search/searchCode.htm

- J
Jul 19 '05 #9
Jay

"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:%2***************@tk2msftngp13.phx.gbl...
Try a Response.Write RS("vpath") and see what you're getting.
Hmm...returns nothing. I wonder if vpath isn't used in Win2003 Indexing
Services.


Jay, as others have asked, please show more code. We don't even know

where RS("vpath") comes from, or what RS is.


Sorry everyone. I posted the code on a web page so it wouldn't clutter the
NG.

http://www.pacer.org/search/searchCode.htm

- J
Jul 19 '05 #10
On Wed, 3 Dec 2003 15:02:47 -0600, "Jay" <je******@yahoo.com> wrote:

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:3f*****************@msnews.microsoft.com.. .
On Wed, 3 Dec 2003 13:23:35 -0600, "Jay" <je******@yahoo.com> wrote:
>
>"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
>news:bq**********@kcweb01.netnews.att.com...
>> "Jay" <je******@yahoo.com> wrote in message
>> news:ez**************@tk2msftngp13.phx.gbl...
>> > Hello all.
>> >
>> > I've recently transferred our web sites from a Windows2000 server toa >> > Windows2003 server. The transfer went almost flawless until I noticed
>that
>> > our search function isn't working anymore. I'm using an ASP script to
>use
>> > the Indexing Services and have set up my catalogs and directories but
>I'm
>> > getting a 'type mismatch' on one of my Server.URLEncode commands.
>> >
>> > Do I need to obtain a new script to utilize the Indexing Services of
>> > Windows2003? If so, does anyone know where I can find this or wouldit >be
>> > better to use a service such as Google or another SE?
>>
>> I'm not sure that a type mismatch error with Server.URLEncode relatesto >an
>> issue with Indexing Services. Can you give some more details?
>>
>> --
>> Tom Kaminski IIS MVP
>> http://www.iistoolshed.com/ - tools, scripts, and utilities for running
>IIS
>> http://mvp.support.microsoft.com/
>> http://www.microsoft.com/windowsserv...y/centers/iis/
>
>It occures on the line that reads:
>
>' Construct the URL for hit highlighting
> WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )
>
>Does it have something to do with vpath?


Try a Response.Write RS("vpath") and see what you're getting.


Hmm...returns nothing. I wonder if vpath isn't used in Win2003 Indexing
Services.


vpath should work fine, it's just a column in the index table anyway.
Does Indexing Services work on a query from the MMC? Also, post to
the Index Server group for any changes there may be between Indexing
Services 2 and 3.

Jeff
Jul 19 '05 #11
Jay

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:3f*****************@msnews.microsoft.com...
On Wed, 3 Dec 2003 15:02:47 -0600, "Jay" <je******@yahoo.com> wrote:

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:3f*****************@msnews.microsoft.com.. .
On Wed, 3 Dec 2003 13:23:35 -0600, "Jay" <je******@yahoo.com> wrote:

>
>"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
>news:bq**********@kcweb01.netnews.att.com...
>> "Jay" <je******@yahoo.com> wrote in message
>> news:ez**************@tk2msftngp13.phx.gbl...
>> > Hello all.
>> >
>> > I've recently transferred our web sites from a Windows2000 server to
a
>> > Windows2003 server. The transfer went almost flawless until I
noticed >that
>> > our search function isn't working anymore. I'm using an ASP script to >use
>> > the Indexing Services and have set up my catalogs and directories but >I'm
>> > getting a 'type mismatch' on one of my Server.URLEncode commands.
>> >
>> > Do I need to obtain a new script to utilize the Indexing Services of >> > Windows2003? If so, does anyone know where I can find this or wouldit
>be
>> > better to use a service such as Google or another SE?
>>
>> I'm not sure that a type mismatch error with Server.URLEncode
relatesto
>an
>> issue with Indexing Services. Can you give some more details?
>>
>> --
>> Tom Kaminski IIS MVP
>> http://www.iistoolshed.com/ - tools, scripts, and utilities for

running >IIS
>> http://mvp.support.microsoft.com/
>> http://www.microsoft.com/windowsserv...y/centers/iis/
>
>It occures on the line that reads:
>
>' Construct the URL for hit highlighting
> WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )
>
>Does it have something to do with vpath?

Try a Response.Write RS("vpath") and see what you're getting.


Hmm...returns nothing. I wonder if vpath isn't used in Win2003 Indexing
Services.


vpath should work fine, it's just a column in the index table anyway.
Does Indexing Services work on a query from the MMC? Also, post to
the Index Server group for any changes there may be between Indexing
Services 2 and 3.


Good idea Jeff. I'll check there.

Thanks!

- J
Jul 19 '05 #12
Jay

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:3f*****************@msnews.microsoft.com...
On Wed, 3 Dec 2003 15:02:47 -0600, "Jay" <je******@yahoo.com> wrote:

"Jeff Cochran" <jc*************@naplesgov.com> wrote in message
news:3f*****************@msnews.microsoft.com.. .
On Wed, 3 Dec 2003 13:23:35 -0600, "Jay" <je******@yahoo.com> wrote:

>
>"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
>news:bq**********@kcweb01.netnews.att.com...
>> "Jay" <je******@yahoo.com> wrote in message
>> news:ez**************@tk2msftngp13.phx.gbl...
>> > Hello all.
>> >
>> > I've recently transferred our web sites from a Windows2000 server to
a
>> > Windows2003 server. The transfer went almost flawless until I
noticed >that
>> > our search function isn't working anymore. I'm using an ASP script to >use
>> > the Indexing Services and have set up my catalogs and directories but >I'm
>> > getting a 'type mismatch' on one of my Server.URLEncode commands.
>> >
>> > Do I need to obtain a new script to utilize the Indexing Services of >> > Windows2003? If so, does anyone know where I can find this or wouldit
>be
>> > better to use a service such as Google or another SE?
>>
>> I'm not sure that a type mismatch error with Server.URLEncode
relatesto
>an
>> issue with Indexing Services. Can you give some more details?
>>
>> --
>> Tom Kaminski IIS MVP
>> http://www.iistoolshed.com/ - tools, scripts, and utilities for

running >IIS
>> http://mvp.support.microsoft.com/
>> http://www.microsoft.com/windowsserv...y/centers/iis/
>
>It occures on the line that reads:
>
>' Construct the URL for hit highlighting
> WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )
>
>Does it have something to do with vpath?

Try a Response.Write RS("vpath") and see what you're getting.


Hmm...returns nothing. I wonder if vpath isn't used in Win2003 Indexing
Services.


vpath should work fine, it's just a column in the index table anyway.
Does Indexing Services work on a query from the MMC? Also, post to
the Index Server group for any changes there may be between Indexing
Services 2 and 3.


It does work from the MMC.
Jul 19 '05 #13

Jay wrote:
*Hello all.

I've recently transferred our web sites from a Windows2000 server to
a
Windows2003 server. The transfer went almost flawless until I noticed
that
our search function isn't working anymore. I'm using an ASP script to
use
the Indexing Services and have set up my catalogs and directories but
I'm
getting a 'type mismatch' on one of my Server.URLEncode commands.

Do I need to obtain a new script to utilize the Indexing Services of
Windows2003? If so, does anyone know where I can find this or would
it be
better to use a service such as Google or another SE?

Thanks,

- J *


Hi,

I'm having exactly the same problem. The search function of my web site
was working fine in windows 2000, but in windows 2003 the value of
vPath is an empty string. I wonder if this property was removed from
the indexing service in windows 2003 or it's just a configuration
issue.

Thanks.
--
pmontes
------------------------------------------------------------------------
posted via www.WebFrustration.com

----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Jul 19 '05 #14
On Thu, 11 Mar 2004 17:49:00 +0100, pmontes
<pm************@webfrustration.com> wrote:
I've recently transferred our web sites from a Windows2000 server to
a
Windows2003 server. The transfer went almost flawless until I noticed
that
our search function isn't working anymore. I'm using an ASP script to
use
the Indexing Services and have set up my catalogs and directories but
I'm
getting a 'type mismatch' on one of my Server.URLEncode commands.

Do I need to obtain a new script to utilize the Indexing Services of
Windows2003? If so, does anyone know where I can find this or would
it be
better to use a service such as Google or another SE?

Thanks,

- J *


Hi,

I'm having exactly the same problem. The search function of my web site
was working fine in windows 2000, but in windows 2003 the value of
vPath is an empty string. I wonder if this property was removed from
the indexing service in windows 2003 or it's just a configuration
issue.


Try the Index Server newsgroup for help.

Jeff
Jul 19 '05 #15
I have a fix if you are getting the error:

Microsoft VBScript runtime error '800a000d'
Type mismatch: 'URLEncode'

I recently went from Windows Server 2000 to Windows Server 2003 and got
this error. After searching the Internet for more than 4 hours and
finding nothing I decided to post what I found fixes the problem.

I assume that you created the catalog and it's referenced correctly in
your code. The fix is so easy. Just go to the Indexing Services
console (Control Panel > Administrative Tools > Computer Management >
Services and Applications > Indexing Service) and do the following:

1. Right-click the catalog you are trying to get to work and go to
properties.

2. Click on the Tracking Tab.

3. Select the WWW Server that is suppose to be using the catalog. It
was probably set to (None), hence the type mismatch error pertaining to
the vpath.

4. Click Apply and then OK.

5. Stop and start Indexing Services to make the change go into effect.

Hope this helps. Post here if it works for you so that others know.

Jul 22 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: DLacey | last post by:
I have a .NET C# application that uses the indexing service. It adds folders to the catalog to be indexed, removes them, etc. Currently the application requires the user be an admin user in order...
3
by: jliusolar | last post by:
Hi I am trying to figure out why an application get this error when I am trying to open the application's asmx file from localhost. I don't have indexing service running(it set as manual and not...
10
by: Lyle Fairfield | last post by:
By default mdb etc files are not searched by Indexing Service. The default can be changed in Windows XP Pro using Group Policy. I can find no suggested way to make the change in the Windows XO...
0
by: Chung Leong | last post by:
Here's a short tutorial on how to the OLE-DB extension to access Windows Indexing Service. Impress your office-mates with a powerful full-text search feature on your intranet. It's easier than you...
3
by: Chung Leong | last post by:
Here's the rest of the tutorial I started earlier: Aside from text within a document, Indexing Service let you search on meta information stored in the files. For example, MusicArtist and...
8
by: ash | last post by:
i'm using the indexing service and CreateRecordSet("nonsequential") in asp.......and i cant retrieve the record although the keywords is matched. Does anybody know how to solve it? thx
4
by: twilliamson | last post by:
Hello, I am new to the Indexing Service and need a little help. My main goal is for my Windows XP Pro SP2 users is to be able to use the Windows Search (start, search) function to search for...
0
by: =?Utf-8?B?djJ3aW4=?= | last post by:
Does anyone know what might cause this repeated failure message for the Indexing Service?: _______________________________ The indexing service detected that its index of metadata associated...
2
by: =?Utf-8?B?SmVycnkgQw==?= | last post by:
I have a server 2008 IIS 7.0 with indexing service installed. I have created the catalog and have a test page using these posts:...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.