Viewing 15 posts - 571 through 585 (of 606 total)
This is a hard one to call.
If I read your post correctly, you are saying that the bulk of the queries you are running are for date ranges. This being...
May 14, 2004 at 8:06 am
This is a hard one to call.
If I read your post correctly, you are saying that the bulk of the queries you are running are for date ranges. This being...
May 14, 2004 at 8:04 am
By report, what do you mean?
What application is generating the report and what format is the report in.
Sounds like an application problem rather than sql
May 12, 2004 at 9:04 am
Thanks wlawton. I think you're right about one sp logging and alerting and maybe that was where my friend saw it.
However, I was thinking that one sp could conceivably be...
May 12, 2004 at 8:48 am
Tried a few combinations and finally found it.
Syntax is:
App=application_name
No spaces between the equal sign. I tried this in a vb package and ms access and both work.
May 12, 2004 at 3:27 am
In order to process a cube, you must first process the dimensions. I start with the rule of processing shared dimensions first, non-shared dimensions second and the fact table last.
In...
May 11, 2004 at 9:28 am
If you need a site concentrating more on design isuues rather than the physical building side, you might want to take a look at;
http://www.rkimball.com/html/articlesbydate.html
Ralph is seen as the guru of...
May 11, 2004 at 9:20 am
Quick and dirty but it works.
Run an insert query to insert the value of the variable into a temp table every time the variable is set and select * from...
May 11, 2004 at 8:12 am
Don't forget those indexes. No point in building the best application in the world if runs like a pig.
Get the right indexes in the right places set at the...
May 11, 2004 at 8:07 am
I think there must be something wrong in either your code or the stored procedure. If you are using a stored procedure you must use BEGIN and END. The count...
May 11, 2004 at 4:49 am
This site is great for getting ADO connection strings to multiple dbs.
http://www.able-consulting.com/ADO_Conn.htm
A better one for applpication name is contained in:
Hope either helps.
May 10, 2004 at 1:53 pm
You are not likely to be able to do this in excel. I have never found a way.
Check this site on info you will need to perform the action in...
May 10, 2004 at 10:25 am
If I get you right, you want something like this in a stored procedure:
/* CREATE TABLE AND INSERT VALUES FOR TEST*/
CREATE TABLE TABPERF
(INSTRUMENT NVARCHAR(100),
PERFORMANCE INTEGER)
INSERT INTO TABPERF VALUES ('AAA', 100)
INSERT...
May 10, 2004 at 9:54 am
I found the following site and have implemented it to import a text file dynamically. It enables me to set db location as well text file name change etc.
For example,...
May 10, 2004 at 9:18 am
Just a shot in the dark here.
Are you trying to write the outcome of the job to a log file. If so, it may be storing the data in the...
May 10, 2004 at 9:14 am
Viewing 15 posts - 571 through 585 (of 606 total)