Viewing 15 posts - 901 through 915 (of 3,348 total)
J Livingston SQL (2/7/2016)
Raxter (2/7/2016)
February 7, 2016 at 8:51 am
Stix83 (2/7/2016)
1. what I need to be done...
February 7, 2016 at 8:46 am
Again, if you really need to loop you can do so without temp table.
DECLARE MyCurs CURSOR LOCAL FAST_FORWARD
FOR SELECT brId, sdate
FROM Somewhere
ORDER...
February 7, 2016 at 8:29 am
Venki508 (2/7/2016)
Can you suggest me the tool where i can export the data into .bak file by excluding some of the tables..
Again, this is not possible.
If you want to export...
February 7, 2016 at 5:28 am
I'm not sure I understand the question. Can you please post a full repro script?
(I.e., CREATE TABLE statements for all tables involved, INSERT statements with just enough rows to show...
February 7, 2016 at 3:58 am
Do you really need to loop? In most cases, it is much more efficient to use a set-based approach.
If you do need to loop, then using a temp table is...
February 7, 2016 at 3:56 am
I'm afraid your post lacks a lot of the details that we need in order to be able to answer it.
First: you say you want a trigger; later you also...
February 7, 2016 at 3:50 am
First of all, if you have *any* control over the design of that database at all. Change it. Now. This design is a disaster waiting to happen. It is not...
February 7, 2016 at 3:37 am
Duplicate post. Please continue the discussion here.
February 7, 2016 at 3:10 am
MyDoggieJessie (2/6/2016)
February 6, 2016 at 9:53 am
sestell1 (2/5/2016)
david.dilworth (2/5/2016)
Is anyone able to provide a real-world example demonstrating the usage? What I'm interested to...
February 6, 2016 at 2:52 am
Ed Wagner (2/5/2016)
Luis Cazares (2/5/2016)
curious_sqldba (2/5/2016)
February 6, 2016 at 2:12 am
Ed Wagner (2/5/2016)
February 6, 2016 at 2:07 am
There are basically three ways to return data from a stored procedure.
1. (The version you are using in the stored procedure itself): just run a SELECT statement. The result will...
February 5, 2016 at 9:28 am
Viewing 15 posts - 901 through 915 (of 3,348 total)