Showing posts with label available. Show all posts
Showing posts with label available. Show all posts

Friday, March 30, 2012

ODBC driver for windows 2003 64bit

Hi All,

I have installed windows 2003 R2 64bit on one of the system, but my devlopment team pointed out that there is no odbc driver available.

I check it for odbc driver on OS cd but i do not found any relevant files/packages, can any one tell me from where I can download the ODBC driver for windows 2003 64bit OS.

Thanks & Regards

Varian

An ODBC driver connects to a particular database backend server (Oracle, SQL Server, etc). What specific ODBC driver are you looking for?|||

There is definitely a SQL Server driver for 64-bit. SQLSRV32.DLL ships with the OS, and SQLNCLI.DLL (used with SQL Server 2005) can be downloaded from the microsoft website.

I think you may be correct, though, about non-SQL Server drivers no being available on 64-bit clients.

|||

I have the same problem. My company works with the windows server 2003 R2 64 bits and we can't use an Access DB in our Site because this version doesn't have the drivers for accessing Access Databases. Can someone help?

Thanks

|||

Hi,

Can you help me with ODBC drivers for MS Excel and MS Access... My organisation needs the same.

Regards

Ramakrishnan M

|||

Try looking at the post http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1239339&SiteID=1, which I believe answers your question. Here's a clip:

64-bit MSDASQL (both AMD64 and IA64) will be released in Windows Longhorn Server Beta 3 and Windows Vista SP1.

Pak-Ming Cheung,

MDAC Team, MSFT.


ODBC driver for windows 2003 64bit

Hi All,

I have installed windows 2003 R2 64bit on one of the system, but my devlopment team pointed out that there is no odbc driver available.

I check it for odbc driver on OS cd but i do not found any relevant files/packages, can any one tell me from where I can download the ODBC driver for windows 2003 64bit OS.

Thanks & Regards

Varian

An ODBC driver connects to a particular database backend server (Oracle, SQL Server, etc). What specific ODBC driver are you looking for?|||

There is definitely a SQL Server driver for 64-bit. SQLSRV32.DLL ships with the OS, and SQLNCLI.DLL (used with SQL Server 2005) can be downloaded from the microsoft website.

I think you may be correct, though, about non-SQL Server drivers no being available on 64-bit clients.

|||

I have the same problem. My company works with the windows server 2003 R2 64 bits and we can't use an Access DB in our Site because this version doesn't have the drivers for accessing Access Databases. Can someone help?

Thanks

|||

Hi,

Can you help me with ODBC drivers for MS Excel and MS Access... My organisation needs the same.

Regards

Ramakrishnan M

|||

Try looking at the post http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1239339&SiteID=1, which I believe answers your question. Here's a clip:

64-bit MSDASQL (both AMD64 and IA64) will be released in Windows Longhorn Server Beta 3 and Windows Vista SP1.

Pak-Ming Cheung,

MDAC Team, MSFT.


sql

Wednesday, March 28, 2012

ODBC driver for windows 2003 64bit

Hi All,

I have installed windows 2003 R2 64bit on one of the system, but my devlopment team pointed out that there is no odbc driver available.

I check it for odbc driver on OS cd but i do not found any relevant files/packages, can any one tell me from where I can download the ODBC driver for windows 2003 64bit OS.

Thanks & Regards

Varian

An ODBC driver connects to a particular database backend server (Oracle, SQL Server, etc). What specific ODBC driver are you looking for?|||

There is definitely a SQL Server driver for 64-bit. SQLSRV32.DLL ships with the OS, and SQLNCLI.DLL (used with SQL Server 2005) can be downloaded from the microsoft website.

I think you may be correct, though, about non-SQL Server drivers no being available on 64-bit clients.

|||

I have the same problem. My company works with the windows server 2003 R2 64 bits and we can't use an Access DB in our Site because this version doesn't have the drivers for accessing Access Databases. Can someone help?

Thanks

|||

Hi,

Can you help me with ODBC drivers for MS Excel and MS Access... My organisation needs the same.

Regards

Ramakrishnan M

|||

Try looking at the post http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1239339&SiteID=1, which I believe answers your question. Here's a clip:

64-bit MSDASQL (both AMD64 and IA64) will be released in Windows Longhorn Server Beta 3 and Windows Vista SP1.

Pak-Ming Cheung,

MDAC Team, MSFT.


Wednesday, March 7, 2012

Obtaining statistical data in MSDB db

Dear folks,
I would like have available statistical data concerning our scheduled DTS.
Up to date I am be able to store and to see some data using sysjobs and
sysjobhistory tables in MSDB database, i.e, I obtain variables such as last
execution, time inverted and owner, as well as owner or version id. That's
fine and very useful but I would need more accurate information in order to
create statistics with the total of time inverted per each DTS during the
last two ws (for instance) or be able to desing a "production map" and
therefore, to schedule better our DTS, covering spaces in terms of time and
avoiding bottlenecks or issues which sometimes are causing headaches to all
the developers.
How could I do such thing? I am seeing these aforementioned tables but the
info stored is the last day.
select run_date,run_duration,run_status,step_na
me from sysjobhistory where
step_name
in('__ABS_PasarDiarioaHistorico')
I see this:
20050805 2855 1 __ABS_PasarDiarioaHistor
ico
20050806 2518 1 __ABS_PasarDiarioaHistor
ico
20050807 148 1 __ABS_PasarDiarioaHistori
co
20050808 6 1 __ABS_PasarDiarioaHistorico
20050809 2113 1 __ABS_PasarDiarioaHistor
ico
20050810 3205 1 __ABS_PasarDiarioaHistor
ico
20050811 3355 1 __ABS_PasarDiarioaHistor
ico
But, July executions where on earth are?
Any though/comment/advice will be welcomed.
Regards,I've done this query which is solving any doubts:
SELECT run_date, run_duration, case MSDB..sysjobschedules.freq_type
when 4 then 'Daily'
when 8 then 'Wly'
when 16 then 'Monthly'
when 32 then 'once'
end
FROM MSDB..sysjobhistory inner join MSDB..sysjobschedules
on MSDB..sysjobhistory.step_name = MSDB..sysjobschedules.name
WHERE STEP_NAME IN('__ABS_EliminarHistorico') ORDER BY 1
*** __ABS_EliminarHistorico is one of our DTS.
"Enric" wrote:

> Dear folks,
> I would like have available statistical data concerning our scheduled DTS.
> Up to date I am be able to store and to see some data using sysjobs and
> sysjobhistory tables in MSDB database, i.e, I obtain variables such as las
t
> execution, time inverted and owner, as well as owner or version id. That's
> fine and very useful but I would need more accurate information in order t
o
> create statistics with the total of time inverted per each DTS during the
> last two ws (for instance) or be able to desing a "production map" and
> therefore, to schedule better our DTS, covering spaces in terms of time an
d
> avoiding bottlenecks or issues which sometimes are causing headaches to al
l
> the developers.
> How could I do such thing? I am seeing these aforementioned tables but the
> info stored is the last day.
> select run_date,run_duration,run_status,step_na
me from sysjobhistory where
> step_name
> in('__ABS_PasarDiarioaHistorico')
> I see this:
> 20050805 2855 1 __ABS_PasarDiarioaHistor
ico
> 20050806 2518 1 __ABS_PasarDiarioaHistor
ico
> 20050807 148 1 __ABS_PasarDiarioaHistori
co
> 20050808 6 1 __ABS_PasarDiarioaHistorico
> 20050809 2113 1 __ABS_PasarDiarioaHistor
ico
> 20050810 3205 1 __ABS_PasarDiarioaHistor
ico
> 20050811 3355 1 __ABS_PasarDiarioaHistor
ico
>
> But, July executions where on earth are?
>
> Any though/comment/advice will be welcomed.
> Regards,|||Enric
select convert(varchar(22), j.name) as job_name
, case freq_type -- Daily, wly, Monthly
when 1 then 'Once'
when 4 then 'Daily'
when 8 then 'Wk ' -- For wly, add in the days of the w
+ case freq_interval & 2 when 2 then 'M' else '' end -- Monday
+ case freq_interval & 4 when 4 then 'Tu' else '' end -- Tuesday
+ case freq_interval & 8 when 8 then 'W' else '' end -- etc
+ case freq_interval & 16 when 16 then 'Th' else '' end
+ case freq_interval & 32 when 32 then 'F' else '' end
+ case freq_interval & 64 when 64 then 'Sa' else '' end
+ case freq_interval & 1 when 1 then 'Su' else '' end
when 16 then 'Mthly on day ' + convert(varchar(2), freq_interval) -- Monthly
on a particular day
when 32 then 'Mthly ' -- The most complicated one, "every third Friday of
the month" for example
+ case freq_relative_interval
when 1 then 'Every First '
when 2 then 'Every Second '
when 4 then 'Every Third '
when 8 then 'Every Fourth '
when 16 then 'Every Last '
end
+ case freq_interval
when 1 then 'Sunday'
when 2 then 'Monday'
when 3 then 'Tuesday'
when 4 then 'Wednesday'
when 5 then 'Thursday'
when 6 then 'Friday'
when 7 then 'Saturday'
when 8 then 'Day'
when 9 then 'W day'
when 10 then 'Wend day'
end
when 64 then 'Startup' -- When SQL Server starts
when 128 then 'Idle' -- Whenever SQL Server gets bored
else 'Err' -- This should never happen
end as schedule
, case freq_subday_type -- FOr when a job funs every few seconds, minutes or
hours
when 1 then 'Runs once at:'
when 2 then 'every ' + convert(varchar(3), freq_subday_interval) + '
seconds'
when 4 then 'every ' + convert(varchar(3), freq_subday_interval) + '
minutes'
when 8 then 'every ' + convert(varchar(3), freq_subday_interval) + ' hours'
end as frequency
-- All the subsrings are because the times are stored as an integer with no
leading zeroes
-- i.e. 0 means midnight, 13000 means half past one in the morning
(01:30:00)
, substring (right (stuff (' ', 1, 1, '000000') +
convert(varchar(6),active_start_time), 6), 1, 2)
+ ':'
+ substring (
right (stuff (' ', 1, 1, '000000') + convert(varchar(6), active_start_time),
6) ,3 ,2)
+ ':'
+ substring (
right (stuff (' ', 1, 1, '000000') + convert(varchar(6),active_start_time),
6) ,5 ,2) as start_at
,case freq_subday_type
when 1 then NULL -- Ignore the end time if not a recurring job
else substring (right (stuff (' ', 1, 1, '000000') + convert(varchar(6),
active_end_time), 6), 1, 2)
+ ':'
+ substring (
right (stuff (' ', 1, 1, '000000') + convert(varchar(6), active_end_time),
6) ,3 ,2)
+ ':'
+ substring (
right (stuff (' ', 1, 1, '000000') + convert(varchar(6), active_end_time),
6) ,5 ,2) end as end_at
from sysjobs j
join sysJobSchedules s
on j.job_id = s.job_id
order by j.name, start_at
"Enric" <Enric@.discussions.microsoft.com> wrote in message
news:E8350DF7-6624-465B-888A-78FDE5899FBB@.microsoft.com...
> I've done this query which is solving any doubts:
> SELECT run_date, run_duration, case MSDB..sysjobschedules.freq_type
> when 4 then 'Daily'
> when 8 then 'Wly'
> when 16 then 'Monthly'
> when 32 then 'once'
> end
> FROM MSDB..sysjobhistory inner join MSDB..sysjobschedules
> on MSDB..sysjobhistory.step_name = MSDB..sysjobschedules.name
> WHERE STEP_NAME IN('__ABS_EliminarHistorico') ORDER BY 1
> *** __ABS_EliminarHistorico is one of our DTS.
> "Enric" wrote:
>|||Thanks so much Uri, it's amazing, just a quick and powerful response.
"Uri Dimant" wrote:

> Enric
> select convert(varchar(22), j.name) as job_name
> , case freq_type -- Daily, wly, Monthly
> when 1 then 'Once'
> when 4 then 'Daily'
> when 8 then 'Wk ' -- For wly, add in the days of the w
> + case freq_interval & 2 when 2 then 'M' else '' end -- Monday
> + case freq_interval & 4 when 4 then 'Tu' else '' end -- Tuesday
> + case freq_interval & 8 when 8 then 'W' else '' end -- etc
> + case freq_interval & 16 when 16 then 'Th' else '' end
> + case freq_interval & 32 when 32 then 'F' else '' end
> + case freq_interval & 64 when 64 then 'Sa' else '' end
> + case freq_interval & 1 when 1 then 'Su' else '' end
> when 16 then 'Mthly on day ' + convert(varchar(2), freq_interval) -- Month
ly
> on a particular day
> when 32 then 'Mthly ' -- The most complicated one, "every third Friday of
> the month" for example
> + case freq_relative_interval
> when 1 then 'Every First '
> when 2 then 'Every Second '
> when 4 then 'Every Third '
> when 8 then 'Every Fourth '
> when 16 then 'Every Last '
> end
> + case freq_interval
> when 1 then 'Sunday'
> when 2 then 'Monday'
> when 3 then 'Tuesday'
> when 4 then 'Wednesday'
> when 5 then 'Thursday'
> when 6 then 'Friday'
> when 7 then 'Saturday'
> when 8 then 'Day'
> when 9 then 'W day'
> when 10 then 'Wend day'
> end
> when 64 then 'Startup' -- When SQL Server starts
> when 128 then 'Idle' -- Whenever SQL Server gets bored
> else 'Err' -- This should never happen
> end as schedule
> , case freq_subday_type -- FOr when a job funs every few seconds, minutes
or
> hours
> when 1 then 'Runs once at:'
> when 2 then 'every ' + convert(varchar(3), freq_subday_interval) + '
> seconds'
> when 4 then 'every ' + convert(varchar(3), freq_subday_interval) + '
> minutes'
> when 8 then 'every ' + convert(varchar(3), freq_subday_interval) + ' hours
'
> end as frequency
> -- All the subsrings are because the times are stored as an integer with n
o
> leading zeroes
> -- i.e. 0 means midnight, 13000 means half past one in the morning
> (01:30:00)
> , substring (right (stuff (' ', 1, 1, '000000') +
> convert(varchar(6),active_start_time), 6), 1, 2)
> + ':'
> + substring (
> right (stuff (' ', 1, 1, '000000') + convert(varchar(6), active_start_time
),
> 6) ,3 ,2)
> + ':'
> + substring (
> right (stuff (' ', 1, 1, '000000') + convert(varchar(6),active_start_time)
,
> 6) ,5 ,2) as start_at
> ,case freq_subday_type
> when 1 then NULL -- Ignore the end time if not a recurring job
> else substring (right (stuff (' ', 1, 1, '000000') + convert(varchar(6),
> active_end_time), 6), 1, 2)
> + ':'
> + substring (
> right (stuff (' ', 1, 1, '000000') + convert(varchar(6), active_end_time),
> 6) ,3 ,2)
> + ':'
> + substring (
> right (stuff (' ', 1, 1, '000000') + convert(varchar(6), active_end_time),
> 6) ,5 ,2) end as end_at
> from sysjobs j
> join sysJobSchedules s
> on j.job_id = s.job_id
> order by j.name, start_at
> "Enric" <Enric@.discussions.microsoft.com> wrote in message
> news:E8350DF7-6624-465B-888A-78FDE5899FBB@.microsoft.com...
>
>

Obtaining SSRS 2000

What is a way of obtaining and licensing SQL 200 Reporting Services? Is it
available for a download?
ThanksOn Apr 10, 8:53 am, "Mark Goldin" <mgol...@.ufandd.com> wrote:
> What is a way of obtaining and licensing SQL 200 Reporting Services? Is it
> available for a download?
> Thanks
I don't believe that SSRS 2000 is still available; however, the only
way to license it is to have a license for SQL Server 2000. Depending
on your needs, you could either obtain SQL Srever 2005 Express Edition
w/Advanced Services(incl.
http://www.microsoft.com/downloads/details.aspx?familyid=5B5528B9-13E1-4DB9-A3FC-82116D598C3D&displaylang=en)
w/the SSRS Toolkit for the BIDS environment:
http://www.microsoft.com/downloads/details.aspx?familyid=E8AD606A-0960-4EFD-8BD7-B21370C7BE2B&displaylang=en
-or- you can purchase SQL Server 2005 (which will incl. SSRS). Hope
this is helpful.
Regards,
Enrique Martinez
Sr. Software Consultant|||What I have found is:
"SQL Server 2000 Reporting Services Evaluation Edition" download.
Can that be licensed with a license from SQL 2000 server?
"EMartinez" <emartinez.pr1@.gmail.com> wrote in message
news:1176222887.227623.238510@.w1g2000hsg.googlegroups.com...
> On Apr 10, 8:53 am, "Mark Goldin" <mgol...@.ufandd.com> wrote:
>> What is a way of obtaining and licensing SQL 200 Reporting Services? Is
>> it
>> available for a download?
>> Thanks
> I don't believe that SSRS 2000 is still available; however, the only
> way to license it is to have a license for SQL Server 2000. Depending
> on your needs, you could either obtain SQL Srever 2005 Express Edition
> w/Advanced Services(incl.
> http://www.microsoft.com/downloads/details.aspx?familyid=5B5528B9-13E1-4DB9-A3FC-82116D598C3D&displaylang=en)
> w/the SSRS Toolkit for the BIDS environment:
> http://www.microsoft.com/downloads/details.aspx?familyid=E8AD606A-0960-4EFD-8BD7-B21370C7BE2B&displaylang=en
> -or- you can purchase SQL Server 2005 (which will incl. SSRS). Hope
> this is helpful.
> Regards,
> Enrique Martinez
> Sr. Software Consultant
>|||The problem is, that is a 90 day evaluation edition that will time out.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Mark Goldin" <mgoldin@.ufandd.com> wrote in message
news:enB%23cL5eHHA.5052@.TK2MSFTNGP06.phx.gbl...
> What I have found is:
> "SQL Server 2000 Reporting Services Evaluation Edition" download.
> Can that be licensed with a license from SQL 2000 server?
> "EMartinez" <emartinez.pr1@.gmail.com> wrote in message
> news:1176222887.227623.238510@.w1g2000hsg.googlegroups.com...
>> On Apr 10, 8:53 am, "Mark Goldin" <mgol...@.ufandd.com> wrote:
>> What is a way of obtaining and licensing SQL 200 Reporting Services? Is
>> it
>> available for a download?
>> Thanks
>> I don't believe that SSRS 2000 is still available; however, the only
>> way to license it is to have a license for SQL Server 2000. Depending
>> on your needs, you could either obtain SQL Srever 2005 Express Edition
>> w/Advanced Services(incl.
>> http://www.microsoft.com/downloads/details.aspx?familyid=5B5528B9-13E1-4DB9-A3FC-82116D598C3D&displaylang=en)
>> w/the SSRS Toolkit for the BIDS environment:
>> http://www.microsoft.com/downloads/details.aspx?familyid=E8AD606A-0960-4EFD-8BD7-B21370C7BE2B&displaylang=en
>> -or- you can purchase SQL Server 2005 (which will incl. SSRS). Hope
>> this is helpful.
>> Regards,
>> Enrique Martinez
>> Sr. Software Consultant
>|||But I thought it can be registered within 90 days to avoid expiration.
"Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> wrote in message
news:e7dpNP5eHHA.4868@.TK2MSFTNGP06.phx.gbl...
> The problem is, that is a 90 day evaluation edition that will time out.
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
> "Mark Goldin" <mgoldin@.ufandd.com> wrote in message
> news:enB%23cL5eHHA.5052@.TK2MSFTNGP06.phx.gbl...
>> What I have found is:
>> "SQL Server 2000 Reporting Services Evaluation Edition" download.
>> Can that be licensed with a license from SQL 2000 server?
>> "EMartinez" <emartinez.pr1@.gmail.com> wrote in message
>> news:1176222887.227623.238510@.w1g2000hsg.googlegroups.com...
>> On Apr 10, 8:53 am, "Mark Goldin" <mgol...@.ufandd.com> wrote:
>> What is a way of obtaining and licensing SQL 200 Reporting Services? Is
>> it
>> available for a download?
>> Thanks
>> I don't believe that SSRS 2000 is still available; however, the only
>> way to license it is to have a license for SQL Server 2000. Depending
>> on your needs, you could either obtain SQL Srever 2005 Express Edition
>> w/Advanced Services(incl.
>> http://www.microsoft.com/downloads/details.aspx?familyid=5B5528B9-13E1-4DB9-A3FC-82116D598C3D&displaylang=en)
>> w/the SSRS Toolkit for the BIDS environment:
>> http://www.microsoft.com/downloads/details.aspx?familyid=E8AD606A-0960-4EFD-8BD7-B21370C7BE2B&displaylang=en
>> -or- you can purchase SQL Server 2005 (which will incl. SSRS). Hope
>> this is helpful.
>> Regards,
>> Enrique Martinez
>> Sr. Software Consultant
>>
>|||I'm not sure. I had to install RS 2000 to get this to occur. One point, the
evaluation edition is the equivalent of Enterprise Edition so if you just
activated it but all you want was Standard edition you would have a problem.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"Mark Goldin" <mgoldin@.ufandd.com> wrote in message
news:OSF3$l5eHHA.1240@.TK2MSFTNGP04.phx.gbl...
> But I thought it can be registered within 90 days to avoid expiration.
> "Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> wrote in message
> news:e7dpNP5eHHA.4868@.TK2MSFTNGP06.phx.gbl...
>> The problem is, that is a 90 day evaluation edition that will time out.
>>
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>> "Mark Goldin" <mgoldin@.ufandd.com> wrote in message
>> news:enB%23cL5eHHA.5052@.TK2MSFTNGP06.phx.gbl...
>> What I have found is:
>> "SQL Server 2000 Reporting Services Evaluation Edition" download.
>> Can that be licensed with a license from SQL 2000 server?
>> "EMartinez" <emartinez.pr1@.gmail.com> wrote in message
>> news:1176222887.227623.238510@.w1g2000hsg.googlegroups.com...
>> On Apr 10, 8:53 am, "Mark Goldin" <mgol...@.ufandd.com> wrote:
>> What is a way of obtaining and licensing SQL 200 Reporting Services?
>> Is it
>> available for a download?
>> Thanks
>> I don't believe that SSRS 2000 is still available; however, the only
>> way to license it is to have a license for SQL Server 2000. Depending
>> on your needs, you could either obtain SQL Srever 2005 Express Edition
>> w/Advanced Services(incl.
>> http://www.microsoft.com/downloads/details.aspx?familyid=5B5528B9-13E1-4DB9-A3FC-82116D598C3D&displaylang=en)
>> w/the SSRS Toolkit for the BIDS environment:
>> http://www.microsoft.com/downloads/details.aspx?familyid=E8AD606A-0960-4EFD-8BD7-B21370C7BE2B&displaylang=en
>> -or- you can purchase SQL Server 2005 (which will incl. SSRS). Hope
>> this is helpful.
>> Regards,
>> Enrique Martinez
>> Sr. Software Consultant
>>
>>
>|||If you have licensed SQL Server2000, you do not need to license RS2000, it
came free.
Your problem is that it may be too late to get it from MS, which does not
provide RS2000 download any more. If you cannot upgrade to SQL Server2005 at
this time, your best bet might be to contact the reseller where you bought
your SQL Server2000 from to see what they can do (it may be as simple as
giving you the CD, once they verified you have licensed SQL Server2000?).
There is no technical issue, just availability problem for an old software
(not old enough, though, especially for an expensive server software. MS
should make it available for longer, instead of implicitly enforcing upgrade
to SQL Server2005).
"Mark Goldin" <mgoldin@.ufandd.com> wrote in message
news:uORHbe3eHHA.3932@.TK2MSFTNGP02.phx.gbl...
> What is a way of obtaining and licensing SQL 200 Reporting Services? Is it
> available for a download?
> Thanks
>

Friday, February 24, 2012

obtain the next Identity seed?

Hi,
I'm using identity seed (increment by 1) as primary key in my tables.
Is there any way to determine what will be the next available identity for a specified table?
Thanks for the info
GauthierHi,

In 2000 you can use IDENT_CURRENT('table name ') + 1 to get next possible value. but in multi user env , need to check ...

best of luck|||that's it!

thanks alot.

Gauthier