Viewing 15 posts - 76 through 90 (of 125 total)
If you use a SAN or NAS, where is your tempdb located? I had a server that reacted this way because tempdb was on the SAN.
April 30, 2007 at 1:13 am
I wrote the whole thing inside a sql job, using vb sripting to control the files and os commands for things like ftp.
April 20, 2007 at 1:40 am
I would suggest that the first stored procedure get changed. Instead of just returning the result, let it update database B. That should be faster than using DTS.
April 5, 2007 at 12:02 am
Do you get any errors or does it just return the wrong result? As far as I can see, the problem is that the CASE statement should be inside the...
March 6, 2007 at 12:22 am
1. People respond directly to the advertiser. Too ashamed to post their credentials for the world to read.
2. 99% of the jobs posted...
February 27, 2007 at 1:29 am
1. People respond directly to the advertiser. Too ashamed to post their credentials for the world to read.
2. 99% of the jobs posted...
February 27, 2007 at 1:27 am
Mine: 300GB (Systems and Games)
My son: 600GB (Games, Movies & Music)
January 29, 2007 at 12:29 am
I have never set up transactional replication, only log shipping, but assuming that the replication is working, try setting up a transaction backup job for the sweetwater database every hour...
January 8, 2007 at 1:37 am
You must also watch out for spaces or actually the lack thereof.
Eg: SET @Sql1 = 'Select field'
SET @Sql2 = 'From Table'
EXEC (@Sql1 + @Sql2) will fail bcause @Sql1 + @Sql2...
January 4, 2007 at 2:15 am
Imagine a million records or more per client. Imagine all the clients info in one database. Not too big for SQL but definitely a performance issue. Now, when you get to...
December 29, 2006 at 3:56 am
I agree, no price on their website and I stop looking further. That is the first thing I need to discuss with my seniors.
October 25, 2006 at 2:01 am
Will teach me to write full sentences. 🙂
I meant that there should not be a major speed difference between querying a table direct or using a stored procedure to query the...
July 26, 2006 at 7:02 am
You could put the 2 packages in a job as 2 different steps with the 2nd step only executed on success of the first:
Execute Package 1
|
| on success
v
Execute...
July 26, 2006 at 6:44 am
The DTS package runs on the client PC and the job runs on the SQL server.
Try logging in on the SQL server (console) with the SQL Service Agent user account...
July 26, 2006 at 5:41 am
1. I assume the stored procedure returns data from multiple tables, because if it returns data from one table there would be no speed increase.
2. You do not need a...
July 26, 2006 at 5:33 am
Viewing 15 posts - 76 through 90 (of 125 total)