Viewing 15 posts - 526 through 540 (of 628 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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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 '
...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 10, 2010 at 12:18 pm
Here is a link that provies detailed explanations and examples.
http://support.microsoft.com/kb/169960
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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.
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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,...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
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...
Dan
If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.
May 6, 2010 at 8:56 am
Viewing 15 posts - 526 through 540 (of 628 total)