Click here to Skip to main content
16,004,969 members
Home / Discussions / Database
   

Database

 
GeneralSQL Reporting Services Pin
Anonymous26-Jul-05 2:41
Anonymous26-Jul-05 2:41 
Question"auto update statistics" -- any reason to turn it off? Pin
devvvy25-Jul-05 16:34
devvvy25-Jul-05 16:34 
AnswerRe: "auto update statistics" -- any reason to turn it off? Pin
toxcct26-Jul-05 1:12
toxcct26-Jul-05 1:12 
GeneralRe: "auto update statistics" -- any reason to turn it off? Pin
devvvy26-Jul-05 22:32
devvvy26-Jul-05 22:32 
AnswerRe: "auto update statistics" -- any reason to turn it off? Pin
Mike Dimmick26-Jul-05 2:25
Mike Dimmick26-Jul-05 2:25 
GeneralRe: "auto update statistics" -- any reason to turn it off? Pin
devvvy26-Jul-05 22:35
devvvy26-Jul-05 22:35 
GeneralSQL database table , Data separated by "," Pin
phokojoe25-Jul-05 0:16
phokojoe25-Jul-05 0:16 
GeneralRe: SQL database table , Data separated by "," Pin
Mike Dimmick25-Jul-05 2:33
Mike Dimmick25-Jul-05 2:33 
Each INSERT statement creates the number of rows selected - 1 in the case of an INSERT...VALUES statement, the number of rows returned by the SELECT in the case of INSERT...SELECT.

To put all the data in a single row, you simply need to select all the data you need for that row:
INSERT test (a, b, c)
SELECT
   SUBSTRING(aa, 1, PATINDEX('%,%',aa)-1 ),
   SUBSTRING(aa, 3, PATINDEX('%,%',aa)-1 ),
   SUBSTRING(aa, 5, PATINDEX('%,%',aa)-1 )
FROM table1



Stability. What an interesting concept. -- Chris Maunder
Generalit is possible to take sql server2000 database backup on another machine's disc. Pin
under281124-Jul-05 22:22
under281124-Jul-05 22:22 
GeneralRe: it is possible to take sql server2000 database backup on another machine's disc. Pin
Alomgir Miah25-Jul-05 12:20
Alomgir Miah25-Jul-05 12:20 
GeneralGenerating SQL Script Pin
Tiger45624-Jul-05 21:12
Tiger45624-Jul-05 21:12 
GeneralDate Time in SQL Pin
wEb GuRu...24-Jul-05 19:47
wEb GuRu...24-Jul-05 19:47 
GeneralRe: Date Time in SQL Pin
Marc Soleda24-Jul-05 20:18
Marc Soleda24-Jul-05 20:18 
GeneralRe: Date Time in SQL Pin
wEb GuRu...24-Jul-05 22:17
wEb GuRu...24-Jul-05 22:17 
GeneralRe: Date Time in SQL Pin
Marc Soleda24-Jul-05 22:34
Marc Soleda24-Jul-05 22:34 
GeneralRe: Date Time in SQL Pin
Rob Graham25-Jul-05 2:40
Rob Graham25-Jul-05 2:40 
GeneralRe: Date Time in SQL Pin
JeyKey26-Jul-05 2:56
JeyKey26-Jul-05 2:56 
GeneralRe: Date Time in SQL Pin
wEb GuRu...26-Jul-05 3:19
wEb GuRu...26-Jul-05 3:19 
GeneralRe: Date Time in SQL Pin
| Muhammad Waqas Butt |27-Jul-05 4:26
professional| Muhammad Waqas Butt |27-Jul-05 4:26 
GeneralDate Time datatype in SQL Pin
wEb GuRu...24-Jul-05 19:43
wEb GuRu...24-Jul-05 19:43 
GeneralCreating Hyperlink in Datagrid Pin
wEb GuRu...24-Jul-05 19:34
wEb GuRu...24-Jul-05 19:34 
GeneralSelect all columns of table accept one Pin
wEb GuRu...24-Jul-05 19:25
wEb GuRu...24-Jul-05 19:25 
GeneralRe: Select all columns of table accept one Pin
Marc Soleda24-Jul-05 20:23
Marc Soleda24-Jul-05 20:23 
GeneralRe: Select all columns of table accept one Pin
Rob Graham25-Jul-05 3:38
Rob Graham25-Jul-05 3:38 
GeneralRe: Select all columns of table accept one Pin
mtasaad27-Jul-05 18:35
mtasaad27-Jul-05 18:35 

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.