Viewing 15 posts - 12,781 through 12,795 (of 26,486 total)
Felicia Coons (4/17/2012)
April 17, 2012 at 10:32 am
a2zwd (4/17/2012)
HIThanks for the reply. Could you reply with some example please?
Nope, I wasn't involved in the consuption of the reference cursors. All I did was provide the other...
April 17, 2012 at 10:26 am
S_Kumar_S (4/17/2012)
Most likely, length of data from your select table exceeds the lenght of data in your test table. Check for lengths of columns in both tables.
Nothing like stating the...
April 17, 2012 at 10:08 am
Rank1_nj (4/17/2012)
CREATE TABLE [dbo].[MainMaster]([User] [int] NOT NULL,
[ID] [int] NOT NULL,
[Price] [money] NULL,
PRIMARY KEY CLUSTERED
(
[User] ASC,
[ID] ASC
)WITH (IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
CREATE...
April 17, 2012 at 10:05 am
What about the table from which the data is being selected, Channels2? Would help to see its definition as well.
April 17, 2012 at 10:01 am
Felicia Coons (4/17/2012)
April 17, 2012 at 9:44 am
Be very careful dropping indexes. An index you drop may not appear to be used but it may be critical to a process or report that is run infrequently...
April 17, 2012 at 9:36 am
Eugene Elutin (4/17/2012)
Looks like OP need just a running total.My be sample provide is not very exact đŸ™‚
Already suggested that and was told no, it wasn't a running total. ...
April 17, 2012 at 9:33 am
PiMané (4/17/2012)
Thanks.. that's probably it... it has very low amount of data.In addiction, what's the "optimal", if possible, fillfactor value? 90?
Thanks,
Pedro
Simple answer, it depends. It depends on the activity...
April 17, 2012 at 9:32 am
First, be sure to disable autoshrink.
Second, your autogrowth settings should be set to a fixed amount not a percentage. Also, don't rely on it. Set your databases to...
April 17, 2012 at 9:29 am
Jan Van der Eecken (4/17/2012)
SELECT *
FROM
(
VALUES
( 0, NULL ),
( 2.78,...
April 17, 2012 at 9:25 am
If you aren't getting the answers you need, it is because you haven't given us what we need to best answer your question. Please provide the DDL (CREATE TABLE...
April 17, 2012 at 9:18 am
Haven't had to do this, when I wrote SQL Code for Oracle, I returned the reference cursors, others had to deal with the information.
What I can tell you is that...
April 17, 2012 at 9:14 am
In addition to the information requested by Sean, please post the code for all functions used in your queries.
April 17, 2012 at 9:10 am
Please post DDL (CREATE TABLE statement) for the table(s) involved, sample data (series of INSERT INTO statements) for the table(s), sample updates to be used to update appropriate tables, expected...
April 17, 2012 at 8:57 am
Viewing 15 posts - 12,781 through 12,795 (of 26,486 total)