Click here to Skip to main content
15,909,437 members
Home / Discussions / Database
   

Database

 
QuestionMigration error from SQL 2014 to SQL 2012 Pin
Kala Vairakkannu5-May-14 7:27
Kala Vairakkannu5-May-14 7:27 
AnswerRe: Migration error from SQL 2014 to SQL 2012 Pin
Kornfeld Eliyahu Peter5-May-14 7:34
professionalKornfeld Eliyahu Peter5-May-14 7:34 
GeneralRe: Migration error from SQL 2014 to SQL 2012 Pin
ZurdoDev5-May-14 7:48
professionalZurdoDev5-May-14 7:48 
GeneralRe: Migration error from SQL 2014 to SQL 2012 Pin
Kala Vairakkannu5-May-14 8:16
Kala Vairakkannu5-May-14 8:16 
AnswerRe: Migration error from SQL 2014 to SQL 2012 Pin
LloydA1115-May-14 7:34
LloydA1115-May-14 7:34 
GeneralRe: Migration error from SQL 2014 to SQL 2012 Pin
ZurdoDev5-May-14 7:47
professionalZurdoDev5-May-14 7:47 
GeneralRe: Migration error from SQL 2014 to SQL 2012 Pin
Kala Vairakkannu5-May-14 8:20
Kala Vairakkannu5-May-14 8:20 
GeneralRe: Migration error from SQL 2014 to SQL 2012 Pin
Kornfeld Eliyahu Peter5-May-14 8:24
professionalKornfeld Eliyahu Peter5-May-14 8:24 
GeneralRe: Migration error from SQL 2014 to SQL 2012 Pin
Kala Vairakkannu5-May-14 8:37
Kala Vairakkannu5-May-14 8:37 
QuestionMySQL: best for true or false, Yes or No, negative or positive Pin
Jassim Rahma3-May-14 4:44
Jassim Rahma3-May-14 4:44 
AnswerRe: MySQL: best for true or false, Yes or No, negative or positive Pin
Jörgen Andersson3-May-14 6:54
professionalJörgen Andersson3-May-14 6:54 
AnswerRe: MySQL: best for true or false, Yes or No, negative or positive Pin
Eddy Vluggen3-May-14 7:49
professionalEddy Vluggen3-May-14 7:49 
QuestionNot in for two columns with Inner join Pin
indian1432-May-14 9:18
indian1432-May-14 9:18 
AnswerRe: Not in for two columns with Inner join Pin
Mycroft Holmes2-May-14 13:04
professionalMycroft Holmes2-May-14 13:04 
Questionhow to join all three query results to one in mysql Pin
sr15930-Apr-14 23:01
sr15930-Apr-14 23:01 
AnswerRe: how to join all three query results to one in mysql Pin
Simon_Whale30-Apr-14 23:12
Simon_Whale30-Apr-14 23:12 
GeneralRe: how to join all three query results to one in mysql Pin
sr1591-May-14 5:34
sr1591-May-14 5:34 
Questionhow to fetch a table column of same name of more than 4 different database in sql server 2008r2??? Pin
Member 1078495429-Apr-14 20:24
Member 1078495429-Apr-14 20:24 
AnswerRe: how to fetch a table column of same name of more than 4 different database in sql server 2008r2??? Pin
Kornfeld Eliyahu Peter29-Apr-14 21:22
professionalKornfeld Eliyahu Peter29-Apr-14 21:22 
QuestionLoading large amount of data with unacceptable time Pin
Amr Muhammed27-Apr-14 10:30
Amr Muhammed27-Apr-14 10:30 
AnswerRe: Loading large amount of data with unacceptable time Pin
David O'Neil27-Apr-14 11:17
professionalDavid O'Neil27-Apr-14 11:17 
GeneralRe: Loading large amount of data with unacceptable time Pin
Amr Muhammed27-Apr-14 11:32
Amr Muhammed27-Apr-14 11:32 
GeneralRe: Loading large amount of data with unacceptable time Pin
David O'Neil27-Apr-14 11:38
professionalDavid O'Neil27-Apr-14 11:38 
AnswerRe: Loading large amount of data with unacceptable time Pin
Mycroft Holmes27-Apr-14 12:54
professionalMycroft Holmes27-Apr-14 12:54 
GeneralRe: Loading large amount of data with unacceptable time Pin
Amr Muhammed27-Apr-14 19:28
Amr Muhammed27-Apr-14 19:28 
There is no table for shares. I have only a table for deeds and this table consists of 4 columns (DEED_ID 'identity', DEED_NUMBER, START_SHARE, END_SHARE). For example if we have a deed consists of a 50 shares the values in these columns will be (1, 100, 1, 50) for DEED_ID, DEED_NUMBER, START_SHARE and END_SHARE respectively. What I need is to get all shares numbers, more clearer, if we apply on the above example of a deed of 50 shares starting for share number 1 to share number 50 I need to get the values 1, 2, 3, 4, 5 ..... 50. I need to do that for all deeds I have within my database. So if I have 150,000 deeds each of which consists of 50 shares. then I have 150,000 * 50 = 7500000 shares. I need to get values starting from 1 up to 7500000. I already make a solution by using a cursor for all deeds, getting each deed separately and then getting its start and end share numbers then making a while loop from the start share number to the end share number of that deed, then get the next deed and so on. However, this solution taking a considerable amount of time to load the the shares values and this time is unacceptable.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.