Viewing 15 posts - 16 through 30 (of 39 total)
At a very high level, I'd suggest:
- consider whether you have the appriopriate indexes on the data you are querying.
- looking at the query execution plan, may help to...
June 19, 2008 at 2:53 am
Fair enough - but we have just one server (admittedly out of hundreds) where the transaction logs will suddenly stop backing up due to insufficient system memory. All our SQL2000...
May 30, 2008 at 1:54 am
I heard it on the hearsay (ie another forum) that Microsoft advise that it is memory leakage when using linked servers. A reboot is the workaround.
May 29, 2008 at 5:16 am
For the record - what surprised me is that the server is suitable for Windows Server 2008 (which seems to have the same sort of requirements as SQL2005), but hits...
May 25, 2008 at 3:59 pm
No, SQL Server is not on the list of services.
It was a few weeks ago when I originally installed it, and I don't recall setting up accounts/passwords. The server it...
May 20, 2008 at 6:30 am
Well, I think the previous comments still stand - be honest about your skills and level; get a test system; and learn fast!
Have you come from another background - programming...
April 17, 2008 at 6:14 am
I think the first advice that is normally given is - if you know that your data doesn't have duplicates (or it doesn't matter if there are), then you don't...
April 11, 2008 at 5:39 am
Obviously the variable @@servername holds the details of the server name, so you can use that perhaps?
April 11, 2008 at 3:57 am
I've always used the following:
select substring(@myemail, patindex('%@%',@myemail)+1,len(@myemail)-patindex('%@%',@myemail)+1)
where @myemail holds the email address
so if @myemail="bill.gates@microsoft.com" then "microsoft.com" is returned.
April 7, 2008 at 8:29 am
Andreas is (of course) correct - both full and differential backups do not affect the transaction log in anyway. I'd personally suggest that you try it yourself on a test/development...
April 7, 2008 at 6:37 am
Do you mean copy? If so, the prime candidate is probably to setup a SSIS (SQL 2005) / DTS (SQL 2000) package which you can schedule to simply copy the...
April 3, 2008 at 3:49 pm
March 25, 2008 at 8:38 am
Some points of interest here maybe - connecting to Outlook via LINQ or ADO/DAO
March 19, 2008 at 7:47 am
It looks like you can export emails to a file out of outlook into access/excel (admittedly folder by folder) - and then import as normal.
Alternatively, I believe you can connect...
March 19, 2008 at 5:27 am
Viewing 15 posts - 16 through 30 (of 39 total)