Ask a Question related to ASP Database, Design and Development.
-
Rename table without breaking sp?
What is the best way to rename a table without breaking esxisting Stored
Procs that are dependent on the table....?
Thanks
Jason
Guest
-
why is this breaking?
Hi, it's late and my head hurts!.. can anyone take a look at this site: www.motoxpartsdirect.com and let me know why certain pages intermittently... -
WHY Breaking Text with CS to 10.0
Using mac OS 10.2.4 When receiving a CS document back saved to AI 10.0 from a client via email the text is no longer in a string but broken-up. It... -
Breaking swf
Hey guys I know there are alot of threads about this but i couldnt find one so help me out here. I made this site around a year or so ago and I... -
Breaking up files
My program needs the functionality of exporting and importing of files. Is it possible to break up a large file so that it can be saved onto more... -
Could not load type VTFixup Table from assembly Invalid token in v-table fix-up table.
We are getting this error after clearing the web.config of database infomation - even after using the wizard to re-enter the information. I could... -
Aaron [SQL Server MVP] #2
Re: Rename table without breaking sp?
ALTER the stored procedures at the same time, or don't rename the table.
If you rename the table, the stored procedures aren't going to magically
re-write themselves.
--
[url]http://www.aspfaq.com/[/url]
(Reverse address to reply.)
<jason@catamaranco.com> wrote in message
news:OrVSi59eEHA.1604@TK2MSFTNGP11.phx.gbl...> What is the best way to rename a table without breaking esxisting Stored
> Procs that are dependent on the table....?
>
> Thanks
> Jason
>
>
Aaron [SQL Server MVP] Guest
-
Aaron [SQL Server MVP] #3
Re: Rename table without breaking sp?
Another option is to rename the table and create a view with the old table
name that points at the new table.
--
[url]http://www.aspfaq.com/[/url]
(Reverse address to reply.)
<jason@catamaranco.com> wrote in message
news:OrVSi59eEHA.1604@TK2MSFTNGP11.phx.gbl...> What is the best way to rename a table without breaking esxisting Stored
> Procs that are dependent on the table....?
>
> Thanks
> Jason
>
>
Aaron [SQL Server MVP] Guest
-
Chris Hohmann #4
Re: Rename table without breaking sp?
<jason@catamaranco.com> wrote in message
news:OrVSi59eEHA.1604@TK2MSFTNGP11.phx.gbl...Database? Version? DDL? Sample Data?> What is the best way to rename a table without breaking esxisting Stored
> Procs that are dependent on the table....?
[url]http://aspfaq.com/5009[/url]
How about creating a view/query with the name of the old table, based on the
new table?
Chris Hohmann Guest
-
Re: Rename table without breaking sp?
Thanks.
"Aaron [SQL Server MVP]" <ten.xoc@dnartreb.noraa> wrote in message
news:eD0dgC%23eEHA.3988@tk2msftngp13.phx.gbl...> ALTER the stored procedures at the same time, or don't rename the table.
>
> If you rename the table, the stored procedures aren't going to magically
> re-write themselves.
>
> --
> [url]http://www.aspfaq.com/[/url]
> (Reverse address to reply.)
>
>
>
>
> <jason@catamaranco.com> wrote in message
> news:OrVSi59eEHA.1604@TK2MSFTNGP11.phx.gbl...>> > What is the best way to rename a table without breaking esxisting Stored
> > Procs that are dependent on the table....?
> >
> > Thanks
> > Jason
> >
> >
>
Guest
-
Re: Rename table without breaking sp?
Thanks.
"Aaron [SQL Server MVP]" <ten.xoc@dnartreb.noraa> wrote in message
news:OZJJ6C%23eEHA.1424@tk2msftngp13.phx.gbl...> Another option is to rename the table and create a view with the old table
> name that points at the new table.
>
> --
> [url]http://www.aspfaq.com/[/url]
> (Reverse address to reply.)
>
>
>
>
> <jason@catamaranco.com> wrote in message
> news:OrVSi59eEHA.1604@TK2MSFTNGP11.phx.gbl...>> > What is the best way to rename a table without breaking esxisting Stored
> > Procs that are dependent on the table....?
> >
> > Thanks
> > Jason
> >
> >
>
Guest
-
Re: Rename table without breaking sp?
Thanks - sql server 8.0......3 foreign tables related...two stored
procedures dependent.
- Jason
"Chris Hohmann" <nospam@thankyou.com> wrote in message
news:esblSE%23eEHA.704@TK2MSFTNGP09.phx.gbl...the> <jason@catamaranco.com> wrote in message
> news:OrVSi59eEHA.1604@TK2MSFTNGP11.phx.gbl...>> > What is the best way to rename a table without breaking esxisting Stored
> > Procs that are dependent on the table....?
> Database? Version? DDL? Sample Data?
> [url]http://aspfaq.com/5009[/url]
>
> How about creating a view/query with the name of the old table, based on> new table?
>
>
Guest



Reply With Quote

