Viewing 12 posts - 286 through 297 (of 297 total)
Try creating a SP per component
ie
usp_CreateDB
usp_CreateSchema
usp_GenerateData
etc etc
Then within one file exec each of the SPs.
May 21, 2009 at 4:05 am
On the timeout issue...
(1) Check indexes exist on the correct columns. There are many blogs out there that have scripts to look at the DMVs and report potential "missing indexes"....
May 21, 2009 at 3:47 am
I use this script from Job Web
http://weblogs.sqlteam.com/joew/archive/2007/08/31/60316.aspx
It shows you ALL indexes and the date/time they were updated.
Rgds
JL
May 14, 2009 at 7:00 am
Try this proc
Credit goes to Tony on this one!!!
create PROC csv_extract
@csv varchar(500),
...
May 12, 2009 at 9:53 am
Have you checked that the following are in the "PATH" enviroments.
C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;
C:\Program Files\Microsoft SQL Server\90\Tools\binn\;
C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;
To check :
- Start | Run
- CMD
- Type PATH
To...
May 12, 2009 at 2:41 am
I like to monitor long running queries so that this can be enhancement by you of the dev team (link 1).
As in the previous post you have to track your...
May 7, 2009 at 7:20 am
I think that the post below should help.
May 7, 2009 at 6:50 am
Hope this helps
SELECT
DISTINCT so.name AS [Table Name] ,sch.name AS [Schema Name], si.name AS [Index Name],si.Type_desc AS [Index Type] ,
CASE
WHEN si.index_id = 1 THEN 'clustered' ELSE 'nonclustered' END
+
CASE WHEN...
May 6, 2009 at 9:23 am
Flo
One last thing 😉
What is need if I want to group the CurrentTime and Current calls by Department?
i.e.
Sales 2009-01-02 07:47:00.000 23
Sales 2009-01-02 07:48:00.000 21
Sales 2009-01-02 07:49:00.000 2
Acc 2009-01-02 07:47:00.000 2
Acc...
May 6, 2009 at 8:59 am
Thank you for the quick response.
Is not the list of dates i am having trouble with, it is the Conncurrent/Active calls.
Cheers
JL
May 6, 2009 at 6:26 am
Viewing 12 posts - 286 through 297 (of 297 total)