Viewing 15 posts - 1 through 15 (of 45 total)
You need to have a master package in each of the project. The master package will have all the package as Execute Package task in sequence. You can then schedule...
November 17, 2006 at 1:07 am
In SQL Configuration Manager, SQL Native Client Configuration->Client Protocols enable TCP/IP if it is disabled
In the OWC data change the Connection string from "Provider=MSOLAP.2" to "Provider=MSOLAP.3"
HTH
November 17, 2006 at 12:58 am
Thanx for the reply. I found the problem. The SP we are using calls an extended SP and the DLL has logging functionality. Someone started that logging although it is...
October 21, 2004 at 10:54 pm
In Report Designer you will need to use the Generic Query Designer when working with queries that use temp tables.
HTH,
Regards.
September 8, 2004 at 2:28 am
Hi,
But where is the Question or Problem or whatever u wanted to ask?
July 23, 2004 at 2:21 am
Thanks for the reply.
I am using SQL statements to insert/update data and have not used anything like setting isolation level. Now I am going to trace each and every...
August 22, 2003 at 3:55 am
Accessing Remote Resources (Delegation)
Sometimes the resource required by your application is on a computer other than the Web server. This is recommended for some resources, such as a database. In...
August 13, 2003 at 4:13 am
Following links might help:
http://support.microsoft.com/default.aspx?scid=kb;en-us;815542
http://support.microsoft.com/default.aspx?scid=kb;en-us;814893
If u r using ADO then simply adding "Table's" key field to the select query solves the problem.
HTH,
Regards.
August 11, 2003 at 8:09 am
This is probably caused by the installation of Visual Studio update / new version. Try installing/re-installing the latest service pack (as fromnaija has said). If that doesn't work then...
August 8, 2003 at 7:32 am
And thats like what it does:
select i.rows as [rows]
from sysindexes i
where i.indid < 2
and i.id = object_id('Customers')
Cheers.
August 7, 2003 at 8:52 am
What I understand is u want a crosstab query.
If yes then the following query accomplishes it.
SELECT ST.productCode,
SUM(CASE WHEN (MONTH(OrderDateTime)) = 1 THEN ST.QuantitySold ELSE 0 END) AS [Jan],
SUM(CASE WHEN (MONTH(OrderDateTime))...
August 6, 2003 at 4:11 am
<%
Dim Conn
Dim Com
Dim Rs
set conn = Server.CreateObject("ADODB.Connection")
set Com = Server.CreateObject("ADODB.command")
set Rs = Server.CreateObject("ADODB.recordset")
conn.provider="SQLOLEDB"
conn.connectionstring="Data Source=(local); initial catalog=pubs; user id=sa; password="
conn.open
set Com.activeconnection=Conn
Com.commandtext="select *...
August 1, 2003 at 7:34 am
Well I might not be getting ur point completely but u can check
LECCO SQL Expert from http://www.leccotech.com/
mssqlXpress from
And Superior sql builder from
and...
August 1, 2003 at 7:01 am
Viewing 15 posts - 1 through 15 (of 45 total)