Click here to Skip to main content
15,921,028 members
Home / Discussions / Database
   

Database

 
AnswerSystables Pin
David Mujica23-Jun-09 6:06
David Mujica23-Jun-09 6:06 
GeneralRe: Systables Pin
David Mujica23-Jun-09 8:19
David Mujica23-Jun-09 8:19 
GeneralRe: Systables Pin
adgonz23-Jun-09 22:06
adgonz23-Jun-09 22:06 
QuestionHow to Get DST Start dates and DST End dates for different Time zones. [modified] Pin
jgotlt23-Jun-09 4:22
jgotlt23-Jun-09 4:22 
Questionhow to move data from one db to another db Pin
janani1323-Jun-09 0:33
janani1323-Jun-09 0:33 
GeneralRe: how to move data from one db to another db Pin
Isaac Gordon23-Jun-09 0:42
Isaac Gordon23-Jun-09 0:42 
GeneralRe: how to move data from one db to another db Pin
janani1323-Jun-09 0:47
janani1323-Jun-09 0:47 
GeneralRe: how to move data from one db to another db Pin
Isaac Gordon23-Jun-09 0:55
Isaac Gordon23-Jun-09 0:55 
USE LINK SERVER

-- ========================================
-- Add Linked Server Access MDB template
-- ========================================

EXEC sp_addlinkedserver
@server = N'<linked_server_name, sysname, NorthwindMDB>',
@provider = N'Microsoft.Jet.OLEDB.4.0',
@srvproduct = N'OLE DB Provider for Jet',
@datasrc = N'<MDB_file_path, nvarchar(4000),C:\AccessDBs\Northwind.mdb>'
GO

-- Set up login mapping using current user's security context
EXEC sp_addlinkedsrvlogin
@rmtsrvname = N'<linked_server_name, sysname, NorthwindMDB>',
@useself = N'TRUE',
@locallogin = NULL,
@rmtuser = N'<MDB_username, sysname, Admin>',
@rmtpassword = <MDB_username_password, sysname, NULL>
GO

-- List the tables on the linked server
EXEC sp_tables_ex N'<linked_server_name, sysname, NorthwindMDB>'
GO

-- Select all the rows from the Customer table
SELECT * FROM <linked_server_name, sysname, NorthwindMDB>...Customers
AnswerRe: how to move data from one db to another db Pin
Jerry Hammond23-Jun-09 4:59
Jerry Hammond23-Jun-09 4:59 
AnswerRe: how to move data from one db to another db Pin
Niladri_Biswas23-Jun-09 18:17
Niladri_Biswas23-Jun-09 18:17 
GeneralRe: how to move data from one db to another db Pin
Jerry Hammond23-Jun-09 19:50
Jerry Hammond23-Jun-09 19:50 
Questionfull text indexed Pin
almasoudi22-Jun-09 23:12
almasoudi22-Jun-09 23:12 
AnswerRe: full text indexed Pin
Eddy Vluggen23-Jun-09 0:18
professionalEddy Vluggen23-Jun-09 0:18 
QuestionHelp me with SQL query Pin
anderslundsgard22-Jun-09 21:00
anderslundsgard22-Jun-09 21:00 
AnswerRe: Help me with SQL query Pin
Blue_Boy22-Jun-09 21:35
Blue_Boy22-Jun-09 21:35 
GeneralRe: Help me with SQL query Pin
Niladri_Biswas23-Jun-09 19:00
Niladri_Biswas23-Jun-09 19:00 
AnswerRe: Help me with SQL query Pin
Niladri_Biswas24-Jun-09 20:09
Niladri_Biswas24-Jun-09 20:09 
QuestionINDEX and INSERT in SQL Server 2005 Pin
sujithkumarsl22-Jun-09 20:57
sujithkumarsl22-Jun-09 20:57 
AnswerRe: INDEX and INSERT in SQL Server 2005 Pin
Ashfield22-Jun-09 21:00
Ashfield22-Jun-09 21:00 
GeneralRe: INDEX and INSERT in SQL Server 2005 Pin
sujithkumarsl22-Jun-09 22:39
sujithkumarsl22-Jun-09 22:39 
GeneralRe: INDEX and INSERT in SQL Server 2005 Pin
Ashfield23-Jun-09 1:42
Ashfield23-Jun-09 1:42 
GeneralDisplay Execution Plan Pin
David Mujica23-Jun-09 2:57
David Mujica23-Jun-09 2:57 
QuestionWhich of those MySQL Licenses do I need? Pin
softwarejaeger22-Jun-09 20:28
softwarejaeger22-Jun-09 20:28 
QuestionMS ACCESS QUery Pin
jonhbt22-Jun-09 19:50
jonhbt22-Jun-09 19:50 
AnswerRe: MS ACCESS QUery Pin
_Damian S_22-Jun-09 20:06
professional_Damian S_22-Jun-09 20:06 

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.