Viewing 15 posts - 76 through 90 (of 134 total)
I think I am confusing. So, if we have more data, we get more pages...and vice versa right...So, at this point i think it is good to focus on only...
May 22, 2012 at 3:04 pm
Reduce page count
May 22, 2012 at 2:24 pm
So, if the table has more than 1000 pages, so how can we reduce it.
May 22, 2012 at 2:14 pm
I tried to run these script individually and able to load the data. But, have to see how to create a variable, where it takes table name. But, if we...
May 22, 2012 at 12:00 pm
--Tried this atleast to enter the table name, but receiving an error, of incorrect syntax,...
create proc Up_Export
(
@Tablename as varchar(20) = null
)
AS
SET NOCOUNT ON
begin
INSERT INTO @Tablename --Receiving error over here,...
May 21, 2012 at 11:48 am
I tried this..but receiving the following errors:
create proc up_exportdata
as
begin
IF EXISTS (SELECT 1
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE='BASE TABLE'
...
May 21, 2012 at 11:19 am
Error:
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.".
Msg 7321, Level 16, State 2, Line 5
An error occurred while...
May 21, 2012 at 10:04 am
Tried this script, but didn't worked..can u help out plz..
Declare @Tabname nvarchar(100)
set @Tabname = 'C:\..\...\packages\*.xls' --Given path of the folder
SELECT * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\..\...\packages\@Tabname.xls', '@Tabname')
May 21, 2012 at 9:41 am
This query looks good. But, if we have 100 tables in a folder, do we need to keep change the table name, pathname for all 100 tables manually?
May 21, 2012 at 9:10 am
ok..thank you...
I am actually working on moving a 3rd party company database to my environment. Initially they have give there DB in last january, now they made few more changes...
May 17, 2012 at 12:03 pm
Thanks All. It is not the database upgrade. It is only the data upgrade. As the company has modified it, so I need to make those changes into my existing...
May 6, 2012 at 11:58 am
Will do thanx mike
May 4, 2012 at 10:47 am
It works!!! Thanks for quick response.
May 4, 2012 at 9:25 am
Viewing 15 posts - 76 through 90 (of 134 total)