Viewing 15 posts - 2,791 through 2,805 (of 3,607 total)
If the cache is case sensitive then surely this also has implications for sp_executesql?
March 10, 2005 at 5:27 am
I use them as they do 90% of what I want.
I wish they were a bit more robust and/or had the facility to allow a stepped action if a particular...
March 7, 2005 at 3:51 am
Try TRUNCATE TABLE dbo.YourTable if you are not concerned with logging.
I always script my databases but the problem with drop is where there are dependent views and stored procedures. ...
March 3, 2005 at 1:45 am
Firstly, within TEMPDB your #tmpTable will be called something like tmpTable__________________345u3i5y3. It has to append the rubbish on the end because a # table is specific to your session...
March 3, 2005 at 1:43 am
The bog standard install of SQL comes with 5 CALS, one of which is supposed to be the server itself.
If your app is web based then you should be using...
March 1, 2005 at 3:45 am
If you rely on transaction log backups then you can't use it.
If you are in a heavy production environment then you may want more control over the truncation of the...
March 1, 2005 at 3:42 am
Anything that involves a string function will have a performance hit.
For example, let us suppose that you want to retrieve all names beginning "Smi".
Using WHERE PersonName LIKE 'Smi%' will be...
February 28, 2005 at 2:03 am
What about the IBM/Sony/Toshiba Cell processor? Cell 9 is supposed to behave like 9 CPUs on one chip and therefore you are talking about 9 computers with blindingly fast...
February 24, 2005 at 3:26 am
I found what I considered to be a bug in ADOX and therefore stopped using it.
The exact details as far as I remember were as follows.
As far as ADOX...
February 24, 2005 at 3:17 am
I don't have SQL to hand to test this but
Use the DATEDIFF function to find the number of days, then your average will be SUM(STATE) / DATEDIFF(d, @startDate, @EndDate)
February 24, 2005 at 2:26 am
It is worth looking at the help text for XCOPY because there are a number of switches that are extremely useful.
I have to copy across a backup file from one...
February 23, 2005 at 1:53 am
I notice that you are using DAO.
I last touched MS Access 6 years ago and at the time Microsoft were pushing ADOX as the way to manipulate MS Access objects...
February 23, 2005 at 1:46 am
In the UK we are bombarded with adverts for shredders at £xx.xx and everyone is looking at them and thinking "hmmm... that is pretty good value".
Call me a...
February 23, 2005 at 1:42 am
I think that this subject is worth an article if anyone is prepared to write it.
Scenarios, Pros, Cons, Gotchas etc.
February 23, 2005 at 1:39 am
Viewing 15 posts - 2,791 through 2,805 (of 3,607 total)