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

Email notification query (many to many) :: multiple directions

I could sure use some conceptualization and query help with a Page Watch
System I am building in Access 2000 and Asp.

I need to cycle through databae and generate a compiliation query email that
notifies a person of yacht(s) that have changed on our website:
Key database tables
----------------------------------------------------------------------------
Customer (1) --->> (many) Customer_Boats (many)<<---- Boat (1)
----------------------------------------------------------------------------

Person A is watching: Boat1, Boat 2, Boat 3

Person B is watching: Boat3, Boat 4

Person C is watching: Boat 1, Boat 2, Boat 3, Boat 4

Thus:

Boat 1 has the following persons: A C
Boat 2 has the the following persons: A, C
Boat 3 has the following persons: A B C
Boat 4 has the following persons: B, C

Thus:

My dynamic page has to compile a report for each customer based on the boats
he is watching:

eg:
LOOP
sToAddress = sTo
Page Notification for Person" & firstName

Boat 1 price has changed:
Original price: " & varOriginalPrice
Reduced to:" & varNewPrice

Boat 2 location has changed:
Old location: " & varOldLocation:
New Location: & varNewLocation

END LOOP

BUT

I have to do this for all my customers at the same time and then send out
the emails one after the other in a batch.

I am completely lost on how to assemble this email report based on the
overlapping selections of the user.

I could just pull out a boat and send changes to people watching that boat
but then a person may bet 50 emails in one day if he is watching 50 boats.

I have to assemble all his choices dynamically in one email via some magic
queries.

Is this harder or easier than I am making out!

Really, really appreciate some help here.

- Jason


Jul 19 '05 #1
5 2058
You've given a long description but which part of that specifically is the
issue? Generating the SQL query?

--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
http://www.Darkfalz.com
---------------------------------------------------------
...Offering free scripts & code snippits for everyone...
---------------------------------------------------------
"jason" <ja***@catamaranco.com> wrote in message
news:#0**************@TK2MSFTNGP09.phx.gbl...
I could sure use some conceptualization and query help with a Page Watch
System I am building in Access 2000 and Asp.

I need to cycle through databae and generate a compiliation query email that notifies a person of yacht(s) that have changed on our website:
Key database tables
-------------------------------------------------------------------------- -- Customer (1) --->> (many) Customer_Boats (many)<<---- Boat (1)
-------------------------------------------------------------------------- --
Person A is watching: Boat1, Boat 2, Boat 3

Person B is watching: Boat3, Boat 4

Person C is watching: Boat 1, Boat 2, Boat 3, Boat 4

Thus:

Boat 1 has the following persons: A C
Boat 2 has the the following persons: A, C
Boat 3 has the following persons: A B C
Boat 4 has the following persons: B, C

Thus:

My dynamic page has to compile a report for each customer based on the boats he is watching:

eg:
LOOP
sToAddress = sTo
Page Notification for Person" & firstName

Boat 1 price has changed:
Original price: " & varOriginalPrice
Reduced to:" & varNewPrice

Boat 2 location has changed:
Old location: " & varOldLocation:
New Location: & varNewLocation

END LOOP

BUT

I have to do this for all my customers at the same time and then send out
the emails one after the other in a batch.

I am completely lost on how to assemble this email report based on the
overlapping selections of the user.

I could just pull out a boat and send changes to people watching that boat
but then a person may bet 50 emails in one day if he is watching 50 boats.

I have to assemble all his choices dynamically in one email via some magic
queries.

Is this harder or easier than I am making out!

Really, really appreciate some help here.

- Jason

Jul 19 '05 #2
I guess so. I need to assemble a page with different boat choices for
different users as I send out the emails.

The query seems beyond me at the moment - I need help on how to structure
it...

- Jason
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
You've given a long description but which part of that specifically is the
issue? Generating the SQL query?

--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
http://www.Darkfalz.com
---------------------------------------------------------
..Offering free scripts & code snippits for everyone...
---------------------------------------------------------
"jason" <ja***@catamaranco.com> wrote in message
news:#0**************@TK2MSFTNGP09.phx.gbl...
I could sure use some conceptualization and query help with a Page Watch
System I am building in Access 2000 and Asp.

I need to cycle through databae and generate a compiliation query email

that
notifies a person of yacht(s) that have changed on our website:
Key database tables


--------------------------------------------------------------------------
--
Customer (1) --->> (many) Customer_Boats (many)<<---- Boat (1)


--------------------------------------------------------------------------
--

Person A is watching: Boat1, Boat 2, Boat 3

Person B is watching: Boat3, Boat 4

Person C is watching: Boat 1, Boat 2, Boat 3, Boat 4

Thus:

Boat 1 has the following persons: A C
Boat 2 has the the following persons: A, C
Boat 3 has the following persons: A B C
Boat 4 has the following persons: B, C

Thus:

My dynamic page has to compile a report for each customer based on the

boats
he is watching:

eg:
LOOP
sToAddress = sTo
Page Notification for Person" & firstName

Boat 1 price has changed:
Original price: " & varOriginalPrice
Reduced to:" & varNewPrice

Boat 2 location has changed:
Old location: " & varOldLocation:
New Location: & varNewLocation

END LOOP

BUT

I have to do this for all my customers at the same time and then send out the emails one after the other in a batch.

I am completely lost on how to assemble this email report based on the
overlapping selections of the user.

I could just pull out a boat and send changes to people watching that boat but then a person may bet 50 emails in one day if he is watching 50 boats.
I have to assemble all his choices dynamically in one email via some magic queries.

Is this harder or easier than I am making out!

Really, really appreciate some help here.

- Jason


Jul 19 '05 #3
Hey Bmb - awesome - that is the closest I have come to conceptaulizing the
problem. I was originally thinking of creating audti trail tables for my
primary table - Listings - but was still unsure of how to handle the
many-to-many possibilities of a particular person and all the boats he was
watching and do this on the fly when sending bulk email.....

Could I could confirm your alternative:

1. Store customer info in table Customer; store yacht information in table
Listing
2. Store customer selections in a PageWatch table: [CustomerID] [YachtID]

CHANGE TO BOAT

3. Store Name of boat of in table [ChangedBoats]

* 4 * Develop a query in Microsoft Access Query - qryBoatsChangedCustomer
that JOINS all the customer selections in table [PageWatch] with the
similiar boats in table[Listings]

5. Once a day cycel trhough qryBoatsChangedCustomer and write out the boats
to the customer email on the fly dynamically for each and every customer in
an eg: 800 email send out.

CONFUSED ON THE FOLLOWING:

Ok, If I got the above right - Could you confirm - there is just one more
issue. What if need to actually spell out what changed for the particular
boat(s) for each and every customer email according to the boat(s) he is
watching...... I would need to summarize all the changes to his particular
boat(s) in one email and do this for every customer.

Would I merely be storing only the fields that changed in table
[ChangedBoats]. If so, how would I know *WHICH* apect of the boat record
changed:
eg: Location AND/or Price AND/or MarketStatus....

In other words I would need to compare what was in the record before to what
the changed record was. Is there a simple way to to do this?

Jason

"Bite My Bubbles" <bm*@mybubbles.com> wrote in message
news:#g**************@TK2MSFTNGP11.phx.gbl...
I guess so. I need to assemble a page with different boat choices for
different users as I send out the emails.
no comprende. Why do you need to assemble any pages at all when sending

out emails?
everytime a boat changes, stick the name of the boat in a "ChangedBoats"
table.

Then, once a cycle look thru the 'ChangedBoats" table with view showing
Persons / boats

select person, boat from ChangedBoats join People on ChangedBoats.boat =
people.BoatsI'mWatching
For each person in that list send an email showing all his boats from this
list.

Then delete the guy from the 'ChangedBoats" table.
Then move to the next guy.

Are you going to set up some continusously running process on SQL server?

What

"jason" <ja***@catamaranco.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
I guess so. I need to assemble a page with different boat choices for
different users as I send out the emails.

The query seems beyond me at the moment - I need help on how to structure
it...

- Jason
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
You've given a long description but which part of that specifically is the issue? Generating the SQL query?

--
----------------------------------------------------------
Curt Christianson (Software_AT_Darkfalz.Com)
Owner/Lead Designer, DF-Software
http://www.Darkfalz.com
---------------------------------------------------------
..Offering free scripts & code snippits for everyone...
---------------------------------------------------------
"jason" <ja***@catamaranco.com> wrote in message
news:#0**************@TK2MSFTNGP09.phx.gbl...
> I could sure use some conceptualization and query help with a Page Watch > System I am building in Access 2000 and Asp.
>
> I need to cycle through databae and generate a compiliation query email that
> notifies a person of yacht(s) that have changed on our website:
>
>
> Key database tables


--------------------------------------------------------------------------
--
> Customer (1) --->> (many) Customer_Boats (many)<<---- Boat (1)


--------------------------------------------------------------------------
--
>
> Person A is watching: Boat1, Boat 2, Boat 3
>
> Person B is watching: Boat3, Boat 4
>
> Person C is watching: Boat 1, Boat 2, Boat 3, Boat 4
>
> Thus:
>
> Boat 1 has the following persons: A C
> Boat 2 has the the following persons: A, C
> Boat 3 has the following persons: A B C
> Boat 4 has the following persons: B, C
>
>
>
> Thus:
>
> My dynamic page has to compile a report for each customer based on the boats
> he is watching:
>
> eg:
> LOOP
> sToAddress = sTo
> Page Notification for Person" & firstName
>
> Boat 1 price has changed:
> Original price: " & varOriginalPrice
> Reduced to:" & varNewPrice
>
> Boat 2 location has changed:
> Old location: " & varOldLocation:
> New Location: & varNewLocation
>
> END LOOP
>
> BUT
>
> I have to do this for all my customers at the same time and then send out
> the emails one after the other in a batch.
>
> I am completely lost on how to assemble this email report based on
the > overlapping selections of the user.
>
> I could just pull out a boat and send changes to people watching

that boat
> but then a person may bet 50 emails in one day if he is watching 50

boats.
>
> I have to assemble all his choices dynamically in one email via some

magic
> queries.
>
> Is this harder or easier than I am making out!
>
> Really, really appreciate some help here.
>
> - Jason
>
>
>
>



Jul 19 '05 #4
What you said is pretty much what i envisioned. Exept rather Store Name of
boat of in table [ChangedBoats] , you should store the IDNO of that boat
record.

I guess for the remaining problem, notify customer of what changed, I
suggest this.

Before boat 426 record gets changed in listing, copy the entire existing
record to the [ChangedBoats], along with a datetime stamp. Then change
the record.

Now, when it's time to send out your mailing, Say
Here is what the boat is now:
Select boat 426 from Listings

Here is what your boat was:
select boat 426 from [ChangedBoats], using the record with the hightest
datetime stamp.

If you need to specify exactly which field(s) changed, then that is
possible, but I suggest starting a new thread and post a new question. It's
more than I want to think about right now.

The question could be something like: How can I compare two rows and list
only the columns that differ.
"jason" <ja***@catamaranco.com> wrote in message
news:OL*************@TK2MSFTNGP11.phx.gbl...
Hey Bmb - awesome - that is the closest I have come to conceptaulizing the
problem. I was originally thinking of creating audti trail tables for my
primary table - Listings - but was still unsure of how to handle the
many-to-many possibilities of a particular person and all the boats he was
watching and do this on the fly when sending bulk email.....

Could I could confirm your alternative:

1. Store customer info in table Customer; store yacht information in table
Listing
2. Store customer selections in a PageWatch table: [CustomerID] [YachtID]
CHANGE TO BOAT

3. Store Name of boat of in table [ChangedBoats]

* 4 * Develop a query in Microsoft Access Query - qryBoatsChangedCustomer
that JOINS all the customer selections in table [PageWatch] with the
similiar boats in table[Listings]

5. Once a day cycel trhough qryBoatsChangedCustomer and write out the boats to the customer email on the fly dynamically for each and every customer in an eg: 800 email send out.

CONFUSED ON THE FOLLOWING:

Ok, If I got the above right - Could you confirm - there is just one more
issue. What if need to actually spell out what changed for the particular
boat(s) for each and every customer email according to the boat(s) he is
watching...... I would need to summarize all the changes to his particular
boat(s) in one email and do this for every customer.

Would I merely be storing only the fields that changed in table
[ChangedBoats]. If so, how would I know *WHICH* apect of the boat record
changed:
eg: Location AND/or Price AND/or MarketStatus....

In other words I would need to compare what was in the record before to what the changed record was. Is there a simple way to to do this?

Jason

"Bite My Bubbles" <bm*@mybubbles.com> wrote in message
news:#g**************@TK2MSFTNGP11.phx.gbl...
I guess so. I need to assemble a page with different boat choices for
different users as I send out the emails.


no comprende. Why do you need to assemble any pages at all when sending

out
emails?
everytime a boat changes, stick the name of the boat in a "ChangedBoats"
table.

Then, once a cycle look thru the 'ChangedBoats" table with view showing
Persons / boats

select person, boat from ChangedBoats join People on ChangedBoats.boat =
people.BoatsI'mWatching
For each person in that list send an email showing all his boats from this list.

Then delete the guy from the 'ChangedBoats" table.
Then move to the next guy.

Are you going to set up some continusously running process on SQL server?
What

"jason" <ja***@catamaranco.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
I guess so. I need to assemble a page with different boat choices for
different users as I send out the emails.

The query seems beyond me at the moment - I need help on how to structure it...

- Jason
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:uZ**************@TK2MSFTNGP10.phx.gbl...
> You've given a long description but which part of that specifically is the
> issue? Generating the SQL query?
>
> --
> ----------------------------------------------------------
> Curt Christianson (Software_AT_Darkfalz.Com)
> Owner/Lead Designer, DF-Software
> http://www.Darkfalz.com
> ---------------------------------------------------------
> ..Offering free scripts & code snippits for everyone...
> ---------------------------------------------------------
>
>
> "jason" <ja***@catamaranco.com> wrote in message
> news:#0**************@TK2MSFTNGP09.phx.gbl...
> > I could sure use some conceptualization and query help with a Page

Watch
> > System I am building in Access 2000 and Asp.
> >
> > I need to cycle through databae and generate a compiliation query

email
> that
> > notifies a person of yacht(s) that have changed on our website:
> >
> >
> > Key database tables
>


--------------------------------------------------------------------------
> --
> > Customer (1) --->> (many) Customer_Boats (many)<<---- Boat (1)
>


--------------------------------------------------------------------------
> --
> >
> > Person A is watching: Boat1, Boat 2, Boat 3
> >
> > Person B is watching: Boat3, Boat 4
> >
> > Person C is watching: Boat 1, Boat 2, Boat 3, Boat 4
> >
> > Thus:
> >
> > Boat 1 has the following persons: A C
> > Boat 2 has the the following persons: A, C
> > Boat 3 has the following persons: A B C
> > Boat 4 has the following persons: B, C
> >
> >
> >
> > Thus:
> >
> > My dynamic page has to compile a report for each customer based on the > boats
> > he is watching:
> >
> > eg:
> > LOOP
> > sToAddress = sTo
> > Page Notification for Person" & firstName
> >
> > Boat 1 price has changed:
> > Original price: " & varOriginalPrice
> > Reduced to:" & varNewPrice
> >
> > Boat 2 location has changed:
> > Old location: " & varOldLocation:
> > New Location: & varNewLocation
> >
> > END LOOP
> >
> > BUT
> >
> > I have to do this for all my customers at the same time and then send out
> > the emails one after the other in a batch.
> >
> > I am completely lost on how to assemble this email report based on the > > overlapping selections of the user.
> >
> > I could just pull out a boat and send changes to people watching that boat
> > but then a person may bet 50 emails in one day if he is watching

50 boats.
> >
> > I have to assemble all his choices dynamically in one email via some magic
> > queries.
> >
> > Is this harder or easier than I am making out!
> >
> > Really, really appreciate some help here.
> >
> > - Jason
> >
> >
> >
> >
>
>



Jul 19 '05 #5
an additonal benefit when you copy the entire existing record to the
[ChangedBoats] table, is that you get a record of all changes. whether you
need that or not...

"Bite My Bubbles" <bm*@mybubbles.com> wrote in message
news:Oo**************@TK2MSFTNGP11.phx.gbl...
What you said is pretty much what i envisioned. Exept rather Store Name of
boat of in table [ChangedBoats] , you should store the IDNO of that boat
record.

I guess for the remaining problem, notify customer of what changed, I
suggest this.

Before boat 426 record gets changed in listing, copy the entire existing
record to the [ChangedBoats], along with a datetime stamp. Then change
the record.

Now, when it's time to send out your mailing, Say
Here is what the boat is now:
Select boat 426 from Listings

Here is what your boat was:
select boat 426 from [ChangedBoats], using the record with the hightest
datetime stamp.

If you need to specify exactly which field(s) changed, then that is
possible, but I suggest starting a new thread and post a new question. It's more than I want to think about right now.

The question could be something like: How can I compare two rows and list
only the columns that differ.
"jason" <ja***@catamaranco.com> wrote in message
news:OL*************@TK2MSFTNGP11.phx.gbl...
Hey Bmb - awesome - that is the closest I have come to conceptaulizing the
problem. I was originally thinking of creating audti trail tables for my
primary table - Listings - but was still unsure of how to handle the
many-to-many possibilities of a particular person and all the boats he was watching and do this on the fly when sending bulk email.....

Could I could confirm your alternative:

1. Store customer info in table Customer; store yacht information in table Listing
2. Store customer selections in a PageWatch table: [CustomerID] [YachtID]

CHANGE TO BOAT

3. Store Name of boat of in table [ChangedBoats]

* 4 * Develop a query in Microsoft Access Query - qryBoatsChangedCustomer that JOINS all the customer selections in table [PageWatch] with the
similiar boats in table[Listings]

5. Once a day cycel trhough qryBoatsChangedCustomer and write out the

boats
to the customer email on the fly dynamically for each and every customer

in
an eg: 800 email send out.

CONFUSED ON THE FOLLOWING:

Ok, If I got the above right - Could you confirm - there is just one more issue. What if need to actually spell out what changed for the particular boat(s) for each and every customer email according to the boat(s) he is
watching...... I would need to summarize all the changes to his particular boat(s) in one email and do this for every customer.

Would I merely be storing only the fields that changed in table
[ChangedBoats]. If so, how would I know *WHICH* apect of the boat record
changed:
eg: Location AND/or Price AND/or MarketStatus....

In other words I would need to compare what was in the record before to

what
the changed record was. Is there a simple way to to do this?

Jason

"Bite My Bubbles" <bm*@mybubbles.com> wrote in message
news:#g**************@TK2MSFTNGP11.phx.gbl...
>I guess so. I need to assemble a page with different boat choices for
> different users as I send out the emails.

no comprende. Why do you need to assemble any pages at all when sending
out
emails?
everytime a boat changes, stick the name of the boat in a
"ChangedBoats" table.

Then, once a cycle look thru the 'ChangedBoats" table with view showing Persons / boats

select person, boat from ChangedBoats join People on ChangedBoats.boat = people.BoatsI'mWatching
For each person in that list send an email showing all his boats from this list.

Then delete the guy from the 'ChangedBoats" table.
Then move to the next guy.

Are you going to set up some continusously running process on SQL server?
What

"jason" <ja***@catamaranco.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
> I guess so. I need to assemble a page with different boat choices
for > different users as I send out the emails.
>
> The query seems beyond me at the moment - I need help on how to structure
> it...
>
> - Jason
> "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
> news:uZ**************@TK2MSFTNGP10.phx.gbl...
> > You've given a long description but which part of that specifically is the
> > issue? Generating the SQL query?
> >
> > --
> > ----------------------------------------------------------
> > Curt Christianson (Software_AT_Darkfalz.Com)
> > Owner/Lead Designer, DF-Software
> > http://www.Darkfalz.com
> > ---------------------------------------------------------
> > ..Offering free scripts & code snippits for everyone...
> > ---------------------------------------------------------
> >
> >
> > "jason" <ja***@catamaranco.com> wrote in message
> > news:#0**************@TK2MSFTNGP09.phx.gbl...
> > > I could sure use some conceptualization and query help with a
Page Watch
> > > System I am building in Access 2000 and Asp.
> > >
> > > I need to cycle through databae and generate a compiliation query email
> > that
> > > notifies a person of yacht(s) that have changed on our website:
> > >
> > >
> > > Key database tables
> >
>


-------------------------------------------------------------------------- > > --
> > > Customer (1) --->> (many) Customer_Boats (many)<<---- Boat (1)
> >
>


--------------------------------------------------------------------------
> > --
> > >
> > > Person A is watching: Boat1, Boat 2, Boat 3
> > >
> > > Person B is watching: Boat3, Boat 4
> > >
> > > Person C is watching: Boat 1, Boat 2, Boat 3, Boat 4
> > >
> > > Thus:
> > >
> > > Boat 1 has the following persons: A C
> > > Boat 2 has the the following persons: A, C
> > > Boat 3 has the following persons: A B C
> > > Boat 4 has the following persons: B, C
> > >
> > >
> > >
> > > Thus:
> > >
> > > My dynamic page has to compile a report for each customer based
on the
> > boats
> > > he is watching:
> > >
> > > eg:
> > > LOOP
> > > sToAddress = sTo
> > > Page Notification for Person" & firstName
> > >
> > > Boat 1 price has changed:
> > > Original price: " & varOriginalPrice
> > > Reduced to:" & varNewPrice
> > >
> > > Boat 2 location has changed:
> > > Old location: " & varOldLocation:
> > > New Location: & varNewLocation
> > >
> > > END LOOP
> > >
> > > BUT
> > >
> > > I have to do this for all my customers at the same time and then

send
> out
> > > the emails one after the other in a batch.
> > >
> > > I am completely lost on how to assemble this email report based
on the
> > > overlapping selections of the user.
> > >
> > > I could just pull out a boat and send changes to people watching

that
> boat
> > > but then a person may bet 50 emails in one day if he is watching

50 > boats.
> > >
> > > I have to assemble all his choices dynamically in one email via some > magic
> > > queries.
> > >
> > > Is this harder or easier than I am making out!
> > >
> > > Really, really appreciate some help here.
> > >
> > > - Jason
> > >
> > >
> > >
> > >
> >
> >
>
>



Jul 19 '05 #6

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

Similar topics

0
by: Dave | last post by:
Hi all, I have a problem with a query. (well, I actually have a few problems...) Here is my query. select FOCUS.SiteName, FOCUS.URL, OTWAdCars.* , REGION.SiteName as RegionSite, REGION.URL...
4
by: DG | last post by:
Hi, Can anyone advise how to execute multiple statements in a single query batch. For example- update customers set customer_name = 'Smith' where customer_name = 'Smyth'; select * from...
4
by: carl.barrett | last post by:
Hi, I have a list box that displays 2 columns. Behind it sits a query with five columns. These are Column1 (DOB), column2 (a concatenated string of Surname Forname, Title), Column3 (Surname),...
2
by: alAzif | last post by:
Hi everyone. If I have a table T with columns C1 and C2, I would like to know if the following is possible: T.DefaultView.Sort = "C1 ASC, C2 DESC"; If this is not so, I would really...
6
by: MVM | last post by:
Hi, I am attempting to run a query in MS SQL server between two tables that have a one to many relationship. The tables are linked on GID. What I want is one instance of every record from Table...
2
by: Kosmos | last post by:
Alright so I've got this Outlook code written in VBA in Access. The first part, which works, records information about appointment times based on the required days before notification of certain...
8
by: needhelp | last post by:
Hi there, I really need some help, everything I've tried, all I've found, doesn't seem to work. I have lost an email address which is very important to me. I really need to contact that person...
9
by: JJM0926 | last post by:
I'm trying to create a running totals query in access 97. I have followed the directions on how to do it from Microsofts website article id 138911. I took their code they had and replaced it with...
0
by: das | last post by:
Hello all, I am using the SqlDependency to subscribe to any new inserts into a database table, I enabled the DB to be borker ready and subscrbed to Query notifications on the database. My C#...
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:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.