473,803 Members | 3,637 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

issuing sql command that references 2 database servers

cj
I'm tryin to set up a sqlcommand in VB.NET that would issue the command:
insert into server1.databas e.owner.table select * from
server2.databas e.owner.table
Since this sqlcommand has it's connection property set to a connection
string for server1 I'm assuming it isn't seeing server2 -- I get invalid
object name server2.

How can I get one sql statement to reference multiple servers?
Dec 1 '05 #1
6 1761
Hi Cj,

Welcome to MSDN newsgroup.
Regarding on the Sql command question ou mentioned, based on my experience,
for executing two sql statement which refernece to table in different
databases, we have to separate them into two SqlCommand objects and
executing them separately... The ADO.NET's SqlCommand is associated with
a certain SqlConnection(a certain database..), so for the two sqlcommand ,
we have to create two sqlconnection instances for them....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



--------------------
| Date: Thu, 01 Dec 2005 16:07:31 -0500
| From: cj <cj@nospam.nosp am>
| User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: issuing sql command that references 2 database servers
| Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 208.254.170.98
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP14.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:306864
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| I'm tryin to set up a sqlcommand in VB.NET that would issue the command:
| insert into server1.databas e.owner.table select * from
| server2.databas e.owner.table
| Since this sqlcommand has it's connection property set to a connection
| string for server1 I'm assuming it isn't seeing server2 -- I get invalid
| object name server2.
|
| How can I get one sql statement to reference multiple servers?
|

Dec 2 '05 #2
cj
Thank you for your reply. I believe you are correct. I'd hoped there
was a way but didn't really expect to find on. If it was two tables in
two different databases on the SAME SERVER I think it would work but
like you said since a sqlcommand is associated with one particular
sqlconnection it can't see more than one server at a time.

I expect I'll have to load them from one server into a dataset then out
to the new server. Unless anyone has any better ideas.
Steven Cheng[MSFT] wrote:
Hi Cj,

Welcome to MSDN newsgroup.
Regarding on the Sql command question ou mentioned, based on my experience,
for executing two sql statement which refernece to table in different
databases, we have to separate them into two SqlCommand objects and
executing them separately... The ADO.NET's SqlCommand is associated with
a certain SqlConnection(a certain database..), so for the two sqlcommand ,
we have to create two sqlconnection instances for them....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



--------------------
| Date: Thu, 01 Dec 2005 16:07:31 -0500
| From: cj <cj@nospam.nosp am>
| User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: issuing sql command that references 2 database servers
| Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 208.254.170.98
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP14.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:306864
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| I'm tryin to set up a sqlcommand in VB.NET that would issue the command:
| insert into server1.databas e.owner.table select * from
| server2.databas e.owner.table
| Since this sqlcommand has it's connection property set to a connection
| string for server1 I'm assuming it isn't seeing server2 -- I get invalid
| object name server2.
|
| How can I get one sql statement to reference multiple servers?
|

Dec 2 '05 #3
Thanks for your followup CJ,

Yes, so far to have to use the mutiple connection/commands approach is
there're tables in different database/server which will be processed at the
same time...

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Date: Fri, 02 Dec 2005 08:39:18 -0500
| From: cj <cj@nospam.nosp am>
| User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: Re: issuing sql command that references 2 database servers
| References: <ei************ **@TK2MSFTNGP14 .phx.gbl>
<$L************ **@TK2MSFTNGXA0 2.phx.gbl>
| In-Reply-To: <$L************ **@TK2MSFTNGXA0 2.phx.gbl>
| Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <#6************ **@TK2MSFTNGP12 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 208.254.170.98
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP12.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:306951
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| Thank you for your reply. I believe you are correct. I'd hoped there
| was a way but didn't really expect to find on. If it was two tables in
| two different databases on the SAME SERVER I think it would work but
| like you said since a sqlcommand is associated with one particular
| sqlconnection it can't see more than one server at a time.
|
| I expect I'll have to load them from one server into a dataset then out
| to the new server. Unless anyone has any better ideas.
|
|
| Steven Cheng[MSFT] wrote:
| > Hi Cj,
| >
| > Welcome to MSDN newsgroup.
| > Regarding on the Sql command question ou mentioned, based on my
experience,
| > for executing two sql statement which refernece to table in different
| > databases, we have to separate them into two SqlCommand objects and
| > executing them separately... The ADO.NET's SqlCommand is associated
with
| > a certain SqlConnection(a certain database..), so for the two
sqlcommand ,
| > we have to create two sqlconnection instances for them....
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| >
| >
| >
| >
| > --------------------
| > | Date: Thu, 01 Dec 2005 16:07:31 -0500
| > | From: cj <cj@nospam.nosp am>
| > | User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| > | X-Accept-Language: en-us, en
| > | MIME-Version: 1.0
| > | Subject: issuing sql command that references 2 database servers
| > | Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| > | Content-Transfer-Encoding: 7bit
| > | Message-ID: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| > | NNTP-Posting-Host: 208.254.170.98
| > | Lines: 1
| > | Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP14.phx. gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.langua ges.vb:306864
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| > |
| > | I'm tryin to set up a sqlcommand in VB.NET that would issue the
command:
| > | insert into server1.databas e.owner.table select * from
| > | server2.databas e.owner.table
| > | Since this sqlcommand has it's connection property set to a
connection
| > | string for server1 I'm assuming it isn't seeing server2 -- I get
invalid
| > | object name server2.
| > |
| > | How can I get one sql statement to reference multiple servers?
| > |
| >
|

Dec 5 '05 #4
cj
Can I do this?

MyOdbcAdapter.F ill(MyDs, "recent_cal ls")
SqlDataAdapter1 .Update(MyDs, "recent_cal ls")
MyDs.Tables("re cent_calls").Cl ear()
SqlDataAdapter1 .Fill(MyDs, "recent_cal ls")
DataGrid1.DataS ource = MyDs.Tables("re cent_calls")
cj wrote:
Thank you for your reply. I believe you are correct. I'd hoped there
was a way but didn't really expect to find on. If it was two tables in
two different databases on the SAME SERVER I think it would work but
like you said since a sqlcommand is associated with one particular
sqlconnection it can't see more than one server at a time.

I expect I'll have to load them from one server into a dataset then out
to the new server. Unless anyone has any better ideas.
Steven Cheng[MSFT] wrote:
Hi Cj,

Welcome to MSDN newsgroup.
Regarding on the Sql command question ou mentioned, based on my
experience, for executing two sql statement which refernece to table
in different databases, we have to separate them into two SqlCommand
objects and executing them separately... The ADO.NET's SqlCommand
is associated with a certain SqlConnection(a certain database..), so
for the two sqlcommand , we have to create two sqlconnection instances
for them....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)



--------------------
| Date: Thu, 01 Dec 2005 16:07:31 -0500
| From: cj <cj@nospam.nosp am>
| User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: issuing sql command that references 2 database servers
| Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 208.254.170.98
| Lines: 1 | Path:
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP14.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:306864
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| | I'm tryin to set up a sqlcommand in VB.NET that would issue the
command:
| insert into server1.databas e.owner.table select * from |
server2.databas e.owner.table
| Since this sqlcommand has it's connection property set to a
connection | string for server1 I'm assuming it isn't seeing server2
-- I get invalid | object name server2.
| | How can I get one sql statement to reference multiple servers?
|

Dec 5 '05 #5
cj
Can I do this?

MyOdbcAdapter.F ill(MyDs, "recent_cal ls")
SqlDataAdapter1 .Update(MyDs, "recent_cal ls")
MyDs.Tables("re cent_calls").Cl ear()
SqlDataAdapter1 .Fill(MyDs, "recent_cal ls")
DataGrid1.DataS ource = MyDs.Tables("re cent_calls")
Steven Cheng[MSFT] wrote:
Thanks for your followup CJ,

Yes, so far to have to use the mutiple connection/commands approach is
there're tables in different database/server which will be processed at the
same time...

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Date: Fri, 02 Dec 2005 08:39:18 -0500
| From: cj <cj@nospam.nosp am>
| User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: Re: issuing sql command that references 2 database servers
| References: <ei************ **@TK2MSFTNGP14 .phx.gbl>
<$L************ **@TK2MSFTNGXA0 2.phx.gbl>
| In-Reply-To: <$L************ **@TK2MSFTNGXA0 2.phx.gbl>
| Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <#6************ **@TK2MSFTNGP12 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 208.254.170.98
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP12.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:306951
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| Thank you for your reply. I believe you are correct. I'd hoped there
| was a way but didn't really expect to find on. If it was two tables in
| two different databases on the SAME SERVER I think it would work but
| like you said since a sqlcommand is associated with one particular
| sqlconnection it can't see more than one server at a time.
|
| I expect I'll have to load them from one server into a dataset then out
| to the new server. Unless anyone has any better ideas.
|
|
| Steven Cheng[MSFT] wrote:
| > Hi Cj,
| >
| > Welcome to MSDN newsgroup.
| > Regarding on the Sql command question ou mentioned, based on my
experience,
| > for executing two sql statement which refernece to table in different
| > databases, we have to separate them into two SqlCommand objects and
| > executing them separately... The ADO.NET's SqlCommand is associated
with
| > a certain SqlConnection(a certain database..), so for the two
sqlcommand ,
| > we have to create two sqlconnection instances for them....
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| >
| >
| >
| >
| > --------------------
| > | Date: Thu, 01 Dec 2005 16:07:31 -0500
| > | From: cj <cj@nospam.nosp am>
| > | User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| > | X-Accept-Language: en-us, en
| > | MIME-Version: 1.0
| > | Subject: issuing sql command that references 2 database servers
| > | Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| > | Content-Transfer-Encoding: 7bit
| > | Message-ID: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| > | NNTP-Posting-Host: 208.254.170.98
| > | Lines: 1
| > | Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP14.phx. gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.langua ges.vb:306864
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| > |
| > | I'm tryin to set up a sqlcommand in VB.NET that would issue the
command:
| > | insert into server1.databas e.owner.table select * from
| > | server2.databas e.owner.table
| > | Since this sqlcommand has it's connection property set to a
connection
| > | string for server1 I'm assuming it isn't seeing server2 -- I get
invalid
| > | object name server2.
| > |
| > | How can I get one sql statement to reference multiple servers?
| > |
| >
|

Dec 5 '05 #6
Thanks for your followup Salam,

Yes, you can use two different DataAdapters to fill two different DataTable
(from different database....) in to the same DataSet instances... DataSet
is not bound to a certain connection... And when calling the
DataAdapter.Fil l method, just specify the datatable's name you want to fill.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Date: Mon, 05 Dec 2005 10:35:14 -0500
| From: cj <cj@nospam.nosp am>
| User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| X-Accept-Language: en-us, en
| MIME-Version: 1.0
| Subject: Re: issuing sql command that references 2 database servers
| References: <ei************ **@TK2MSFTNGP14 .phx.gbl>
<$L************ **@TK2MSFTNGXA0 2.phx.gbl>
<#6************ **@TK2MSFTNGP12 .phx.gbl>
<7o************ *@TK2MSFTNGXA02 .phx.gbl>
| In-Reply-To: <7o************ *@TK2MSFTNGXA02 .phx.gbl>
| Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| Content-Transfer-Encoding: 7bit
| Message-ID: <ee************ **@TK2MSFTNGP10 .phx.gbl>
| Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| NNTP-Posting-Host: 208.254.170.98
| Lines: 1
| Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP10.phx. gbl
| Xref: TK2MSFTNGXA02.p hx.gbl microsoft.publi c.dotnet.langua ges.vb:307248
| X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
|
| Can I do this?
|
| MyOdbcAdapter.F ill(MyDs, "recent_cal ls")
| SqlDataAdapter1 .Update(MyDs, "recent_cal ls")
| MyDs.Tables("re cent_calls").Cl ear()
| SqlDataAdapter1 .Fill(MyDs, "recent_cal ls")
| DataGrid1.DataS ource = MyDs.Tables("re cent_calls")
|
|
| Steven Cheng[MSFT] wrote:
| > Thanks for your followup CJ,
| >
| > Yes, so far to have to use the mutiple connection/commands approach is
| > there're tables in different database/server which will be processed at
the
| > same time...
| >
| > Regards,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| > --------------------
| > | Date: Fri, 02 Dec 2005 08:39:18 -0500
| > | From: cj <cj@nospam.nosp am>
| > | User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| > | X-Accept-Language: en-us, en
| > | MIME-Version: 1.0
| > | Subject: Re: issuing sql command that references 2 database servers
| > | References: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| > <$L************ **@TK2MSFTNGXA0 2.phx.gbl>
| > | In-Reply-To: <$L************ **@TK2MSFTNGXA0 2.phx.gbl>
| > | Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| > | Content-Transfer-Encoding: 7bit
| > | Message-ID: <#6************ **@TK2MSFTNGP12 .phx.gbl>
| > | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| > | NNTP-Posting-Host: 208.254.170.98
| > | Lines: 1
| > | Path: TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP12.phx. gbl
| > | Xref: TK2MSFTNGXA02.p hx.gbl
microsoft.publi c.dotnet.langua ges.vb:306951
| > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| > |
| > | Thank you for your reply. I believe you are correct. I'd hoped
there
| > | was a way but didn't really expect to find on. If it was two tables
in
| > | two different databases on the SAME SERVER I think it would work but
| > | like you said since a sqlcommand is associated with one particular
| > | sqlconnection it can't see more than one server at a time.
| > |
| > | I expect I'll have to load them from one server into a dataset then
out
| > | to the new server. Unless anyone has any better ideas.
| > |
| > |
| > | Steven Cheng[MSFT] wrote:
| > | > Hi Cj,
| > | >
| > | > Welcome to MSDN newsgroup.
| > | > Regarding on the Sql command question ou mentioned, based on my
| > experience,
| > | > for executing two sql statement which refernece to table in
different
| > | > databases, we have to separate them into two SqlCommand objects and
| > | > executing them separately... The ADO.NET's SqlCommand is
associated
| > with
| > | > a certain SqlConnection(a certain database..), so for the two
| > sqlcommand ,
| > | > we have to create two sqlconnection instances for them....
| > | >
| > | > Thanks,
| > | >
| > | > Steven Cheng
| > | > Microsoft Online Support
| > | >
| > | > Get Secure! www.microsoft.com/security
| > | > (This posting is provided "AS IS", with no warranties, and confers
no
| > | > rights.)
| > | >
| > | >
| > | >
| > | >
| > | >
| > | >
| > | >
| > | > --------------------
| > | > | Date: Thu, 01 Dec 2005 16:07:31 -0500
| > | > | From: cj <cj@nospam.nosp am>
| > | > | User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
| > | > | X-Accept-Language: en-us, en
| > | > | MIME-Version: 1.0
| > | > | Subject: issuing sql command that references 2 database servers
| > | > | Content-Type: text/plain; charset=ISO-8859-1; format=flowed
| > | > | Content-Transfer-Encoding: 7bit
| > | > | Message-ID: <ei************ **@TK2MSFTNGP14 .phx.gbl>
| > | > | Newsgroups: microsoft.publi c.dotnet.langua ges.vb
| > | > | NNTP-Posting-Host: 208.254.170.98
| > | > | Lines: 1
| > | > | Path:
TK2MSFTNGXA02.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGP14.phx. gbl
| > | > | Xref: TK2MSFTNGXA02.p hx.gbl
| > microsoft.publi c.dotnet.langua ges.vb:306864
| > | > | X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb
| > | > |
| > | > | I'm tryin to set up a sqlcommand in VB.NET that would issue the
| > command:
| > | > | insert into server1.databas e.owner.table select * from
| > | > | server2.databas e.owner.table
| > | > | Since this sqlcommand has it's connection property set to a
| > connection
| > | > | string for server1 I'm assuming it isn't seeing server2 -- I get
| > invalid
| > | > | object name server2.
| > | > |
| > | > | How can I get one sql statement to reference multiple servers?
| > | > |
| > | >
| > |
| >
|

Dec 6 '05 #7

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

Similar topics

10
13276
by: Jay Chan | last post by:
I keep getting the following error message when I run a serie of SQL commands: Server: Msg 9002, Level 17, State 6, Line 15 The log file for database 'tempdb' is full. Back up the transaction log for the database to free up some log space. I have tried "dump transaction tempdb with no_log" right before I run the SQL command. But that doesn't help.
1
11595
by: Sandie Towers | last post by:
We use a number of similar databases and frequently create a new database using a backup restore of another similar database. We try to keep changes between databases in _Additional tables - like Account Additional, Sale_Additional so most tables stay the same. The latest restored database (I'll call it DBaseA) is behaving differently in VB6 code and I need help trying to make it work. I have been using use an ADODB.Command to execute...
68
5185
by: rkusenet | last post by:
http://www.eweek.com/article2/0,1759,1820667,00.asp The database market grew by 10.3 percent in 2004, fueled largely by hunger for business intelligence and analytics, according to numbers released by the Gartner Group on Monday. With 34.1 percent of the overall market, IBM holds a slim margin over its closest competitor, Oracle Corp., which maintains 33.7 percent of the overall market. Microsoft Corp. follows up with 20 percent of...
10
1680
by: Keith | last post by:
A2000 SP-3. Win XP Pro. I've inherited an A2k database which references both DAO and ADO libraries. I'm a bit of a newbie with libraries and so-on so my question is, can the two libraries be selected and co-exist in the same project? The app certainly compiles OK and I don't think it would be a quick job to convert to one library or the other. For info, if I de-select either I get loads of compilation errors.
3
3782
by: Susan Bricker | last post by:
Greetings. I am running Acc 2k3 on Windows XP. I have the following VB code behind a form in the btnClose_Click event: Dim intAns As Integer If blnDataChanged = True Then intAns = MsgBox("Data has been updated but the record has not been saved." & _ vbCrLf & vbCrLf & _ "Do you want to save your changes before the window
3
1922
by: Brian | last post by:
Hi, I want to issue mailto from one of my pages. Basically to drop contact information from a from to the body of the email and have the user enter the desired address to send it to. I thought that I could use response.redirect for this, but I get a "the page could not be displayed" error in my window and not the outlook window. I am initiating this from the onclick of a button. It does work with a HyperlinkButton, but I need to build...
4
3395
by: Randy | last post by:
Hello, I'm trying to find out if it is possible, and if so...how to accomplish issuing a PLSQL command from within C#. The command is... SET SCAN OFF; What is happening is I'm trying to insert/update records with strings which contain "&" (this causes a prompt in oracle for a parameter) and this causes the query to fail in C#. I need to turn it off just for my application and then turn it back on after updating. I need to be able to do...
3
4581
by: Raqueeb Hassan | last post by:
Hello, Given the idea of having voter ID card for all the citizens of Bangladesh, I was thinking of assessing few things before it actually starts. The election commission, the government agency responsible for issuing voter ID cards in Bangladesh might plan to use this - not only to hold a fair election but to facilitate its citizen to establish their credentials seeking access to all government and other commercial privileges - from...
1
4451
by: Bob Alston | last post by:
Trying to install some software on Access 2007. The software works just fine on earlier versions of Access. I have been told that it works on Access 2007 but I have not seen that personally. The command buttons on my user-created forms do not function when it is run under Access 2007. The operating system is Windows XP home SP2.
0
9703
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9564
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10548
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10316
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10069
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7604
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5629
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2970
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.