Viewing 15 posts - 436 through 450 (of 495 total)
What do you know. I always knew that ISNUMERIC would work with commas but assumed it was because we used them when we write in the real world and...
July 26, 2010 at 10:31 am
In the US at least, a comma is used every three places to make numbers easy to read. You passed in in essence "one hundred thousand, two hundred" as...
July 26, 2010 at 9:02 am
Uh, no...
100,200 is a real number. Just because it's in a character string doesn't change that. ISNUMERIC looks to see if whatever you pass it can be made...
July 26, 2010 at 8:43 am
Then script out the job, and add variables to the script for the path and the config file, and you can change the variables one time in that script. ...
July 26, 2010 at 7:52 am
I did read your code. You create two variables to indicate the path that the SSIS package is in as well as the path of the config file for...
July 26, 2010 at 7:44 am
A SQL Server Agent job running an SSIS package could be configured to point to a config file without a batch file. If all that the batch file is...
July 26, 2010 at 5:36 am
As far as the seed goes, this will report the seed:
DBCC CHECKIDENT ("FESD.dbo. Usernames ", NORESEED);
GO
And this will set the seed to 1:
DBCC CHECKIDENT ("FESD.dbo. Usernames ", RESEED, 1);
GO
However, this...
July 23, 2010 at 12:50 pm
SharePoint. Just say no if you can. Ugh. What a beast, and worst of all, there is nothing you can do to tune it. We've been...
July 23, 2010 at 12:24 pm
select name, MAX(logdate) from sysdtspackagelog
group by name
July 23, 2010 at 11:33 am
Better choice would be to create a job to run this (as a batch file) and schedule the Agent to run the job.
July 23, 2010 at 10:40 am
Check BOL for the REPLACE string function. This is what you want.
July 23, 2010 at 8:46 am
We had a similar problem with DR testing and log shipping. One thing you can do is to use WITH STANDBY on the log shipping instead of NORECOVERY if...
July 23, 2010 at 7:40 am
If recompiling it once helped but performance later degraded, maybe one way to band-aid the mess is WITH RECOMPILE so that the SP recompiles on every execution?
July 22, 2010 at 1:27 pm
4000 logins a minute for a small company sounds exhorbitant to me. How many connections on average do you have at any time? At my last job, a...
July 22, 2010 at 1:19 pm
At least use
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
in your transactions. Total guarantee of data accuracy (though it will cause issues with concurrency if the transaction is too long)...
July 22, 2010 at 10:01 am
Viewing 15 posts - 436 through 450 (of 495 total)