Viewing 15 posts - 241 through 255 (of 346 total)
Why no RAID 5? Are you comparing speed only to disc mirroring? Or are you comparing it to RAID 10?
I always figured that RAID 5 was...
February 2, 2007 at 10:49 am
Log in with the application on another machine then pull up Current Activity in Enterprise manager.
Look for the machine name in the list and then verify the which login is...
February 2, 2007 at 10:46 am
Do you have access to the source of the application? Can you make any modifications to the system?
February 2, 2007 at 10:42 am
I never really thought of licensing on QA. I just figured that what they were concerned with was how many of the database engine you installed.
But if it's really...
February 2, 2007 at 10:28 am
I have this setup to script ALL of my databases to text files nightly. I then zip the files and archive them. That way I have a snapshot...
February 1, 2007 at 8:32 am
Even if the data is related, unless all of the applications are hitting the same data, setup seperate databases. You can simulate having the tables in multiple databases by...
January 26, 2007 at 9:47 am
Try to setup a schedule for your job like this :
1. go into DTS
2. right click on job to schedule
3. click on Schedule Package
4. Don't make any changes to the...
January 19, 2007 at 6:40 am
My first guess off the top of head is that you have SQL Agent login account different than the SQL Server login account. I would check permissions between the...
January 17, 2007 at 9:17 am
You don't need to even have excel in the equation.
If you read BOL about BCP you will see that you can set the comma as a field delimiter and load...
December 14, 2006 at 5:38 am
The tables are small (less than 10,000 narrow rows) and the delete/insert takes less than a sec or two. I just wanted to hear that the table would be...
December 13, 2006 at 10:53 am
Do a search for BCP in Books online and you should have all the info you need.
Also a very helpful aid is to just do a Google search...
December 13, 2006 at 9:36 am
I'm not trying to do anything special inside the START command.
My command inside my procedure is:
declare @CMD CHAR(100)
SET @CMD='START DIR C:\*.* /S'
exec master..xp_cmdshell @CMD
START DIR C:\*.* /S takes about 1...
November 9, 2006 at 7:39 am
I think I have the seeds to my solution. Thanks.
I am still curious as to why the xp_cmdshell won't work with the START command in DOS.
November 8, 2006 at 5:48 am
Ok, how can I get a start a stored procedure in a script and not have the script wait for the stored procedure to finish before continuing?
November 7, 2006 at 2:27 pm
Can't you break the sql into chunks, send each chunk and then tell it to execute through ASP?
November 7, 2006 at 2:07 pm
Viewing 15 posts - 241 through 255 (of 346 total)