Viewing 15 posts - 526 through 540 (of 629 total)
I recommend using xcopy. We have several bat files to do similiar things.
you would put something like the below in a bat file.
There are many options with xcopy and I...
May 13, 2010 at 8:53 am
It is likely just becuase I am stuburn and stuck in my ways but when you are talking about such a small amount of changes. I still prefer to write...
May 13, 2010 at 8:42 am
The only way I could think to do it would be to script all the veiws with drop and then do a search and replace assumig that you are fairly...
May 12, 2010 at 1:29 pm
I had to use MySQL for a project and I generally find it stable and a reliable way of storing and accessing data. If you are looking for this...
May 11, 2010 at 10:34 am
add a forth single quote on each side and that will result in a quote around the date.
select 'EXEC Sproc '
...
May 11, 2010 at 9:49 am
I assume at this point you are using the Access database as a front end. The data resides on SQL but you are using Access for the forms and...
May 10, 2010 at 12:32 pm
No it does not take any time. Ultimatley I would advise moving away from Access all together if possible. we have one ourselves that I can not get...
May 10, 2010 at 12:18 pm
Here is a link that provies detailed explanations and examples.
May 10, 2010 at 12:08 pm
in access you would actually need to go to the linked tables manager and update that linked table. That should add the index from SQL.
May 10, 2010 at 12:04 pm
On Sql server an index should be added on the field you are doing the search on. This may not alone be enough to speed up the entire search...
May 10, 2010 at 11:58 am
I would try running the dro table seperately. If it is truly not in the tempdb then you will get an error stating the table does not exist but...
May 6, 2010 at 9:44 am
I dont see a drop table section to drop the temp table on completion so if you have run this in testing and then you are trying to run it...
May 6, 2010 at 9:33 am
Something like this
DECLARE @tableHTML NVARCHAR(MAX);
SET @tableHTML =
N'<H1>Hot Item(S) out of Stock <H1>' +
N'<table border="1">' +
N'<tr><td>Brand Name</td><td>Category Name</td>' +
N'<td>Product Name</td><td>Color Name</td>' +
N'<td>Color Code</td><td>Sizes</td></tr>' +
CAST ( ( SELECT td = categoryname,...
May 6, 2010 at 9:24 am
If the 500 GB log file is a result of alot of autogrowth then performance could be impacted.
I would recommend reading the following article.
http://www.sqlskills.com/blogs/kimberly/post/8-Steps-to-better-Transaction-Log-throughput.aspx
May 6, 2010 at 9:10 am
Declare a varialbe as int
set the variable to count of records with your where clause so something like this.
Select count(*) from yourtable where column=cluase
then add an if statement before the...
May 6, 2010 at 8:56 am
Viewing 15 posts - 526 through 540 (of 629 total)