Viewing 15 posts - 4,561 through 4,575 (of 11,678 total)
You could use SSIS for this.
If you have an OLE DB or ODBC provider for your non-SQL Server sources, it should be no problem.
Make sure you have up-to-date providers.
October 10, 2013 at 2:10 pm
I don't think you can skip that many versions in one step.
You might need to upgrade to SQL 2005 first, and then to 2008R2.
edit: it seems Gail can type faster...
October 10, 2013 at 2:08 pm
mister.magoo (10/10/2013)
ali.m.habib (10/10/2013)
select top 1 column5 from table2 where table2.column1ID = 5
if the whole value of...
October 10, 2013 at 1:51 pm
I would go for option 2. More concise and less confusing.
October 10, 2013 at 12:29 pm
Sean Lange (10/10/2013)
select top 1 column5 from
(
SELECT [column5], 1 as SortOrder FROM [dbo].[table2] WHERE [column1ID] = 5
UNION
SELECT NULL, 2
)x order...
October 10, 2013 at 10:15 am
niklasrene (10/10/2013)
Is it possible to connect to a SQL 2008 Db table with ms excel 2010, and edit the fields directly from excel?
Like the same way as...
October 10, 2013 at 7:31 am
You mean something like this:
SELECT * FROM
(SELECT * FROM myTable WHERE col = 'A') tmp;
October 10, 2013 at 7:14 am
You can still alter any area as you please.
The wizard is just a shortcut to get you started.
Although, if you have for example chosen a table report in the wizard,...
October 10, 2013 at 7:13 am
Found a query that works:
WITH CTE_ResultSet AS
(
SELECT [column5] FROM [dbo].[table2] WHERE [column1ID] = 5
UNION
SELECT NULL
)
SELECT [column5] FROM
(SELECT [column5], ROW_NUMBER() OVER(ORDER BY [column5] DESC) AS RID FROM CTE_ResultSet) tmp
WHERE...
October 10, 2013 at 3:25 am
ali.m.habib (10/10/2013)
if the whole value of this column is null the return is empty , but I need to return value or null
If the value of this column is null,...
October 10, 2013 at 3:13 am
Google for a tuturial on SQL Server functions and read it.
You are responsible for your data and before you let any update statement loose on it, you should understand what...
October 10, 2013 at 2:26 am
Guitar_player (10/10/2013)
I am Having a Column full of Capital Letter words like "ABC DEF GHI " , i want to convert that into "Abc Def Ghi"...
October 10, 2013 at 2:14 am
$w@t (10/10/2013)
can't i make it disable...and other databases also...though he is not able to acess i want to make them disable..is it possible?
You can hide the databases if you really...
October 10, 2013 at 1:45 am
$w@t (10/10/2013)
it doesn't have any permission on any other database...i want to disable security,managment to that userplease check the attachment user can see 'sa'(i want to restrict it)
Just because he...
October 10, 2013 at 12:51 am
Viewing 15 posts - 4,561 through 4,575 (of 11,678 total)