473,388 Members | 1,524 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,388 software developers and data experts.

Why does call to Process.GetCurrentProcess() access the floppy drive?

Everytime I call Process.GetCurrentProcess() the system goes out to the
floppy drive. Why does this happen. I decided to use FileMon to get a log
of what is happening when this occurs. Here is the log:

1 4:31:10 PM BlockedConfigAp:1340 IRP_MJ_CREATE A: DASD SUCCESS Attributes:
Any Options: Open
2 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_DEVICE_CONTROL A: DASD INVALID
DEVICE REQUEST IOCTL: 0x560000
3 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLEANUP A: DASD SUCCESS
4 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLOSE A: DASD SUCCESS

Can someone tell me how to prevent the floppy drive access from occurring
when this call is performed?

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.
va***@diebold.com
-----------------------------------
Jul 19 '05 #1
8 4137
Ken Varn wrote:
|| Everytime I call Process.GetCurrentProcess() the system goes out to
|| the floppy drive. Why does this happen. I decided to use FileMon
|| to get a log of what is happening when this occurs. Here is the log:
||
|| 1 4:31:10 PM BlockedConfigAp:1340 IRP_MJ_CREATE A: DASD SUCCESS
|| Attributes: Any Options: Open
|| 2 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_DEVICE_CONTROL A: DASD
|| INVALID DEVICE REQUEST IOCTL: 0x560000
|| 3 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLEANUP A: DASD SUCCESS
|| 4 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLOSE A: DASD SUCCESS
||
|| Can someone tell me how to prevent the floppy drive access from
|| occurring when this call is performed?
||
|| --
|| -----------------------------------
|| Ken Varn
|| Senior Software Engineer
|| Diebold Inc.
|| va***@diebold.com
|| -----------------------------------

No floppy access when I call GetCurrentProcess() on XP and W2k3.
Are you sure this happens when calling GetCurrentProcess()? What OS version, version of the framework are you running on?

Willy.
Jul 19 '05 #2
I am running .NET Framework 1.1.4322. on a Windows 2000 Pro machine with SP4
on it.

Since my function is calling Process.GetCurrentProcess().ProcessName, it
could be happening on the ProcessName
property call, but it is definitely happening on either GetCurrentProcess or
GetCurrentProcess.ProcessName.

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.
va***@diebold.com
-----------------------------------
"Willy Denoyette [MVP]" <wi*************@skynet.be> wrote in message
news:ep****************@TK2MSFTNGP12.phx.gbl...
Ken Varn wrote:
|| Everytime I call Process.GetCurrentProcess() the system goes out to
|| the floppy drive. Why does this happen. I decided to use FileMon
|| to get a log of what is happening when this occurs. Here is the log:
||
|| 1 4:31:10 PM BlockedConfigAp:1340 IRP_MJ_CREATE A: DASD SUCCESS
|| Attributes: Any Options: Open
|| 2 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_DEVICE_CONTROL A: DASD
|| INVALID DEVICE REQUEST IOCTL: 0x560000
|| 3 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLEANUP A: DASD SUCCESS
|| 4 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLOSE A: DASD SUCCESS
||
|| Can someone tell me how to prevent the floppy drive access from
|| occurring when this call is performed?
||
|| --
|| -----------------------------------
|| Ken Varn
|| Senior Software Engineer
|| Diebold Inc.
|| va***@diebold.com
|| -----------------------------------

No floppy access when I call GetCurrentProcess() on XP and W2k3.
Are you sure this happens when calling GetCurrentProcess()? What OS version, version of the framework are you running on?
Willy.

Jul 19 '05 #3
Ken,

I can answer why this happens.

Internally the current 1.0 and 1.1 frameworks call performance counters as
part of the Process object. As the perf system initializes, it will load
in various perf objects. When the disk object loads, it will enumerate the
known disks (this is Windows 2000). The disk performance counters changed
between Windows 2000 and XP (2k3).

This posting is provided "AS IS" with no warranties, and confers no rights.

Jul 19 '05 #4
hi, Ken

Peter asked me to follow up with you.. There is no supported way to do
this on Win2K. If you want to try something speculative, you can disable
the disk perf counters.
HKLM\SYSTEM\CurrentControlSet\Services\Perfdisk\pe rformance

Add a DWORD value called "Disable Performance Counters" and set it to 1.
No disk monitoring will work now. But their perf will increase.

To reenable these counters, you should delete the key, or set it to 0

This is an ugly, ugly solution, and we do NOT recommend using it. A better
solution would be to physically disconnect the floppy drive, given how
rarely they are used these days.

Please get back to me if you have further questions.

HTH,

John Eikanger
Microsoft Developer Support

This posting is provided “AS IS” with no warranties, and confers no rights.
(c) 2003 Microsoft Corporation. All rights reserved.
--------------------
| Reply-To: "Ken Varn" <va***@diebold.com>
| From: "Ken Varn" <va***@diebold.com>
| References: <ur**************@TK2MSFTNGP10.phx.gbl>
<ep**************@TK2MSFTNGP12.phx.gbl>
<Oy**************@TK2MSFTNGP12.phx.gbl>
<8O**************@cpmsftngxa06.phx.gbl>
| Subject: Re: Why does call to Process.GetCurrentProcess() access the
floppy drive?
| Date: Tue, 15 Jul 2003 12:33:48 -0400
| Lines: 30
| X-Tomcat-NG: microsoft.public.dotnet.general
|
| Is there anyway to configure Win 2000 so that it does not go to the floppy
| drive for performance counters? This really kills application performance
| when the floppy drive is accessed.
|
| --
| -----------------------------------
| Ken Varn
| Senior Software Engineer
| Diebold Inc.
| va***@diebold.com
| -----------------------------------
| "Peter Davidson [MS]" <pe******@online.microsoft.com> wrote in message
| news:8O**************@cpmsftngxa06.phx.gbl...
| > Ken,
| >
| > I can answer why this happens.
| >
| > Internally the current 1.0 and 1.1 frameworks call performance counters
as
| > part of the Process object. As the perf system initializes, it will
load
| > in various perf objects. When the disk object loads, it will enumerate
| the
| > known disks (this is Windows 2000). The disk performance counters
| changed
| > between Windows 2000 and XP (2k3).
| >
| > This posting is provided "AS IS" with no warranties, and confers no
| rights.
| >
|
|
|

Jul 19 '05 #5
Thanks. That seems to work.

I would think that disconnecting the floppy drive is a much uglier solution
than disabling disk performance counters.

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.
va***@diebold.com
-----------------------------------
"John Eikanger [MSFT]" <jo****@online.microsoft.com> wrote in message
news:L5**************@cpmsftngxa06.phx.gbl...
hi, Ken

Peter asked me to follow up with you.. There is no supported way to do
this on Win2K. If you want to try something speculative, you can disable
the disk perf counters.
HKLM\SYSTEM\CurrentControlSet\Services\Perfdisk\pe rformance

Add a DWORD value called "Disable Performance Counters" and set it to 1.
No disk monitoring will work now. But their perf will increase.

To reenable these counters, you should delete the key, or set it to 0

This is an ugly, ugly solution, and we do NOT recommend using it. A better solution would be to physically disconnect the floppy drive, given how
rarely they are used these days.

Please get back to me if you have further questions.

HTH,

John Eikanger
Microsoft Developer Support

This posting is provided "AS IS" with no warranties, and confers no rights. (c) 2003 Microsoft Corporation. All rights reserved.
--------------------
| Reply-To: "Ken Varn" <va***@diebold.com>
| From: "Ken Varn" <va***@diebold.com>
| References: <ur**************@TK2MSFTNGP10.phx.gbl>
<ep**************@TK2MSFTNGP12.phx.gbl>
<Oy**************@TK2MSFTNGP12.phx.gbl>
<8O**************@cpmsftngxa06.phx.gbl>
| Subject: Re: Why does call to Process.GetCurrentProcess() access the
floppy drive?
| Date: Tue, 15 Jul 2003 12:33:48 -0400
| Lines: 30
| X-Tomcat-NG: microsoft.public.dotnet.general
|
| Is there anyway to configure Win 2000 so that it does not go to the floppy | drive for performance counters? This really kills application performance | when the floppy drive is accessed.
|
| --
| -----------------------------------
| Ken Varn
| Senior Software Engineer
| Diebold Inc.
| va***@diebold.com
| -----------------------------------
| "Peter Davidson [MS]" <pe******@online.microsoft.com> wrote in message
| news:8O**************@cpmsftngxa06.phx.gbl...
| > Ken,
| >
| > I can answer why this happens.
| >
| > Internally the current 1.0 and 1.1 frameworks call performance counters as
| > part of the Process object. As the perf system initializes, it will
load
| > in various perf objects. When the disk object loads, it will enumerate | the
| > known disks (this is Windows 2000). The disk performance counters
| changed
| > between Windows 2000 and XP (2k3).
| >
| > This posting is provided "AS IS" with no warranties, and confers no
| rights.
| >
|
|
|

Jul 19 '05 #6
Hi, Ken

From a software perspective hacking the registry this way is like eating
your lunch over the PC motherboard. You REALLY want to do this as little
as possible.

Peter's recommendation is still don't do this. If you must do this, flip
this key value in code just before you call Process.GetCurrentProcess() and
restore it afterward. You do NOT want to leave perf counters disabled.
Make sure you check which OS you are using and only do this on Win2K. If
this is used on a limited set of machines, Get them upgraded to WinXP or
Win2k3 as soon as you can.

HTH,

John Eikanger
Microsoft Developer Support

This posting is provided “AS IS” with no warranties, and confers no rights.
(c) 2003 Microsoft Corporation. All rights reserved.
--------------------
| Reply-To: "Ken Varn" <va***@diebold.com>
| From: "Ken Varn" <va***@diebold.com>
| References: <ur**************@TK2MSFTNGP10.phx.gbl>
<ep**************@TK2MSFTNGP12.phx.gbl>
<Oy**************@TK2MSFTNGP12.phx.gbl>
<8O**************@cpmsftngxa06.phx.gbl>
<eB**************@TK2MSFTNGP10.phx.gbl>
<L5**************@cpmsftngxa06.phx.gbl>
| Subject: Re: Why does call to Process.GetCurrentProcess() access the
floppy drive?
| Date: Wed, 16 Jul 2003 10:40:29 -0400
| Lines: 94
| Organization: Diebold Inc.
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#C**************@TK2MSFTNGP11.phx.gbl>
| Newsgroups: microsoft.public.dotnet.general
| NNTP-Posting-Host: 204.151.249.23
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:101356
| X-Tomcat-NG: microsoft.public.dotnet.general
|
| Thanks. That seems to work.
|
| I would think that disconnecting the floppy drive is a much uglier
solution
| than disabling disk performance counters.
|
| --
| -----------------------------------
| Ken Varn
| Senior Software Engineer
| Diebold Inc.
| va***@diebold.com
| -----------------------------------
| "John Eikanger [MSFT]" <jo****@online.microsoft.com> wrote in message
| news:L5**************@cpmsftngxa06.phx.gbl...
| > hi, Ken
| >
| > Peter asked me to follow up with you.. There is no supported way to do
| > this on Win2K. If you want to try something speculative, you can
disable
| > the disk perf counters.
| > HKLM\SYSTEM\CurrentControlSet\Services\Perfdisk\pe rformance
| >
| > Add a DWORD value called "Disable Performance Counters" and set it to 1.
| > No disk monitoring will work now. But their perf will increase.
| >
| > To reenable these counters, you should delete the key, or set it to 0
| >
| > This is an ugly, ugly solution, and we do NOT recommend using it. A
| better
| > solution would be to physically disconnect the floppy drive, given how
| > rarely they are used these days.
| >
| > Please get back to me if you have further questions.
| >
| > HTH,
| >
| > John Eikanger
| > Microsoft Developer Support
| >
| > This posting is provided "AS IS" with no warranties, and confers no
| rights.
| > (c) 2003 Microsoft Corporation. All rights reserved.
| > --------------------
| > | Reply-To: "Ken Varn" <va***@diebold.com>
| > | From: "Ken Varn" <va***@diebold.com>
| > | References: <ur**************@TK2MSFTNGP10.phx.gbl>
| > <ep**************@TK2MSFTNGP12.phx.gbl>
| > <Oy**************@TK2MSFTNGP12.phx.gbl>
| > <8O**************@cpmsftngxa06.phx.gbl>
| > | Subject: Re: Why does call to Process.GetCurrentProcess() access the
| > floppy drive?
| > | Date: Tue, 15 Jul 2003 12:33:48 -0400
| > | Lines: 30
| > | X-Tomcat-NG: microsoft.public.dotnet.general
| > |
| > | Is there anyway to configure Win 2000 so that it does not go to the
| floppy
| > | drive for performance counters? This really kills application
| performance
| > | when the floppy drive is accessed.
| > |
| > | --
| > | -----------------------------------
| > | Ken Varn
| > | Senior Software Engineer
| > | Diebold Inc.
| > | va***@diebold.com
| > | -----------------------------------
| > | "Peter Davidson [MS]" <pe******@online.microsoft.com> wrote in message
| > | news:8O**************@cpmsftngxa06.phx.gbl...
| > | > Ken,
| > | >
| > | > I can answer why this happens.
| > | >
| > | > Internally the current 1.0 and 1.1 frameworks call performance
| counters
| > as
| > | > part of the Process object. As the perf system initializes, it will
| > load
| > | > in various perf objects. When the disk object loads, it will
| enumerate
| > | the
| > | > known disks (this is Windows 2000). The disk performance counters
| > | changed
| > | > between Windows 2000 and XP (2k3).
| > | >
| > | > This posting is provided "AS IS" with no warranties, and confers no
| > | rights.
| > | >
| > |
| > |
| > |
| >
|
|
|

Jul 19 '05 #7
The Win2K install is on our own device hardware that we control. So
changing the registry is not a problem since we distribute both hardware and
software as a complete system.

It sounds like there is some other issue with disabling disk performance
counters. Is there some negative ramification in doing this? I know that
in Windows NT they were off by default. Is there some reason why they are
on by default in Win2K?

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.
va***@diebold.com
-----------------------------------
"John Eikanger [MSFT]" <jo****@online.microsoft.com> wrote in message
news:uk**************@cpmsftngxa06.phx.gbl...
Hi, Ken

From a software perspective hacking the registry this way is like eating
your lunch over the PC motherboard. You REALLY want to do this as little
as possible.

Peter's recommendation is still don't do this. If you must do this, flip
this key value in code just before you call Process.GetCurrentProcess() and restore it afterward. You do NOT want to leave perf counters disabled.
Make sure you check which OS you are using and only do this on Win2K. If
this is used on a limited set of machines, Get them upgraded to WinXP or
Win2k3 as soon as you can.

HTH,

John Eikanger
Microsoft Developer Support

This posting is provided "AS IS" with no warranties, and confers no rights. (c) 2003 Microsoft Corporation. All rights reserved.
--------------------
| Reply-To: "Ken Varn" <va***@diebold.com>
| From: "Ken Varn" <va***@diebold.com>
| References: <ur**************@TK2MSFTNGP10.phx.gbl>
<ep**************@TK2MSFTNGP12.phx.gbl>
<Oy**************@TK2MSFTNGP12.phx.gbl>
<8O**************@cpmsftngxa06.phx.gbl>
<eB**************@TK2MSFTNGP10.phx.gbl>
<L5**************@cpmsftngxa06.phx.gbl>
| Subject: Re: Why does call to Process.GetCurrentProcess() access the
floppy drive?
| Date: Wed, 16 Jul 2003 10:40:29 -0400
| Lines: 94
| Organization: Diebold Inc.
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#C**************@TK2MSFTNGP11.phx.gbl>
| Newsgroups: microsoft.public.dotnet.general
| NNTP-Posting-Host: 204.151.249.23
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP11.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.general:101356
| X-Tomcat-NG: microsoft.public.dotnet.general
|
| Thanks. That seems to work.
|
| I would think that disconnecting the floppy drive is a much uglier
solution
| than disabling disk performance counters.
|
| --
| -----------------------------------
| Ken Varn
| Senior Software Engineer
| Diebold Inc.
| va***@diebold.com
| -----------------------------------
| "John Eikanger [MSFT]" <jo****@online.microsoft.com> wrote in message
| news:L5**************@cpmsftngxa06.phx.gbl...
| > hi, Ken
| >
| > Peter asked me to follow up with you.. There is no supported way to do | > this on Win2K. If you want to try something speculative, you can
disable
| > the disk perf counters.
| > HKLM\SYSTEM\CurrentControlSet\Services\Perfdisk\pe rformance
| >
| > Add a DWORD value called "Disable Performance Counters" and set it to 1. | > No disk monitoring will work now. But their perf will increase.
| >
| > To reenable these counters, you should delete the key, or set it to 0
| >
| > This is an ugly, ugly solution, and we do NOT recommend using it. A
| better
| > solution would be to physically disconnect the floppy drive, given how
| > rarely they are used these days.
| >
| > Please get back to me if you have further questions.
| >
| > HTH,
| >
| > John Eikanger
| > Microsoft Developer Support
| >
| > This posting is provided "AS IS" with no warranties, and confers no
| rights.
| > (c) 2003 Microsoft Corporation. All rights reserved.
| > --------------------
| > | Reply-To: "Ken Varn" <va***@diebold.com>
| > | From: "Ken Varn" <va***@diebold.com>
| > | References: <ur**************@TK2MSFTNGP10.phx.gbl>
| > <ep**************@TK2MSFTNGP12.phx.gbl>
| > <Oy**************@TK2MSFTNGP12.phx.gbl>
| > <8O**************@cpmsftngxa06.phx.gbl>
| > | Subject: Re: Why does call to Process.GetCurrentProcess() access the
| > floppy drive?
| > | Date: Tue, 15 Jul 2003 12:33:48 -0400
| > | Lines: 30
| > | X-Tomcat-NG: microsoft.public.dotnet.general
| > |
| > | Is there anyway to configure Win 2000 so that it does not go to the
| floppy
| > | drive for performance counters? This really kills application
| performance
| > | when the floppy drive is accessed.
| > |
| > | --
| > | -----------------------------------
| > | Ken Varn
| > | Senior Software Engineer
| > | Diebold Inc.
| > | va***@diebold.com
| > | -----------------------------------
| > | "Peter Davidson [MS]" <pe******@online.microsoft.com> wrote in message | > | news:8O**************@cpmsftngxa06.phx.gbl...
| > | > Ken,
| > | >
| > | > I can answer why this happens.
| > | >
| > | > Internally the current 1.0 and 1.1 frameworks call performance
| counters
| > as
| > | > part of the Process object. As the perf system initializes, it will | > load
| > | > in various perf objects. When the disk object loads, it will
| enumerate
| > | the
| > | > known disks (this is Windows 2000). The disk performance counters | > | changed
| > | > between Windows 2000 and XP (2k3).
| > | >
| > | > This posting is provided "AS IS" with no warranties, and confers no | > | rights.
| > | >
| > |
| > |
| > |
| >
|
|
|

Jul 19 '05 #8
This is a known bug which will be fixed in next release.
The reason is that Process is trying to get index for some performance
counters.

Thanks,
Gang Peng
[MS]

"Ken Varn" <va***@diebold.com> wrote in message
news:Oy**************@TK2MSFTNGP12.phx.gbl...
I am running .NET Framework 1.1.4322. on a Windows 2000 Pro machine with SP4 on it.

Since my function is calling Process.GetCurrentProcess().ProcessName, it
could be happening on the ProcessName
property call, but it is definitely happening on either GetCurrentProcess or GetCurrentProcess.ProcessName.

--
-----------------------------------
Ken Varn
Senior Software Engineer
Diebold Inc.
va***@diebold.com
-----------------------------------
"Willy Denoyette [MVP]" <wi*************@skynet.be> wrote in message
news:ep****************@TK2MSFTNGP12.phx.gbl...
Ken Varn wrote:
|| Everytime I call Process.GetCurrentProcess() the system goes out to
|| the floppy drive. Why does this happen. I decided to use FileMon
|| to get a log of what is happening when this occurs. Here is the log:
||
|| 1 4:31:10 PM BlockedConfigAp:1340 IRP_MJ_CREATE A: DASD SUCCESS
|| Attributes: Any Options: Open
|| 2 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_DEVICE_CONTROL A: DASD
|| INVALID DEVICE REQUEST IOCTL: 0x560000
|| 3 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLEANUP A: DASD SUCCESS
|| 4 4:31:11 PM BlockedConfigAp:1340 IRP_MJ_CLOSE A: DASD SUCCESS
||
|| Can someone tell me how to prevent the floppy drive access from
|| occurring when this call is performed?
||
|| --
|| -----------------------------------
|| Ken Varn
|| Senior Software Engineer
|| Diebold Inc.
|| va***@diebold.com
|| -----------------------------------

No floppy access when I call GetCurrentProcess() on XP and W2k3.
Are you sure this happens when calling GetCurrentProcess()? What OS

version, version of the framework are you running on?

Willy.


Jul 19 '05 #9

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

Similar topics

1
by: Anil Kumar Narayanan | last post by:
This is the DIR command of MS-DOS and works for a floppy drive media.. it retrieves all the files whether deleted or not from the floppy drive.. but i was unsuccessful in getting the Date and Time...
9
by: Ken Varn | last post by:
Everytime I call Process.GetCurrentProcess() the system goes out to the floppy drive. Why does this happen. I decided to use FileMon to get a log of what is happening when this occurs. Here is...
1
by: Sandy | last post by:
Is there a way to detect if a disk has been put in the floppy drive? Thank You! Sandy
3
by: Just Me | last post by:
In code I check to see if the Floppy drive is ready and display it's state. But if the user inserts or removes a floppy disk I need an event or a Wndproc message to cause the code to display the...
0
by: Ken Varn | last post by:
This is a very strange problem that I cannot figure out. It only seems to be happening on my development machine when I browse locally. I have isolated the problem area down to where My ASP.NET...
3
by: Colin | last post by:
Is there a way to prevent running an .exe from the floppy drive?
5
by: Benzi Eilon | last post by:
I have written a C# application which should run as a Windows Service. I must avoid having multiple instances of the application on one machine so I inserted the following code at the beginning of...
1
by: Matthew Lock | last post by:
Hello, I get some strange behaviour after calling a method on a third party library when I call: System.Diagnostics.Process.GetCurrentProcess().StartTime If I run the following code it works as...
3
by: tshad | last post by:
I need to find out how many threads a process has. I have used ThreadPool.GetAvailableThreads and ThreadPool.GetMaxThreads, but they both show 50 for worker threads and 100 for port threads. ...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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,...

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.