Viewing 15 posts - 151 through 165 (of 790 total)
I've made a couple of assumptions... calling your table or view "TRX" and assuming that the [record] field is unique. You can try something along the lines of:
select [Record],[Type],[In],[Out], ...
Cheers,
- Mark
February 18, 2004 at 6:56 pm
David,
I don't think log shipping every 15 minutes is all that unreasonable provided a decent pipe is used. Log shipping at that frequency will only impose a several K overhead...
Cheers,
- Mark
February 18, 2004 at 3:54 am
Being lazy, I usually just edit such jobs and change the owner to sa.
Cheers,
- Mark
February 17, 2004 at 12:37 am
Before doing the tricky bits, have you profiled the statements that are timing out and run index tuning wizard against them?
Cheers,
- Mark
February 16, 2004 at 10:37 pm
I think I may have got this right by assuming the references to "physical database name" and "logical database name" were supposed to be "physical file names" and "logical file names"...
Cheers,
- Mark
February 15, 2004 at 9:47 pm
Do you notice any improvement from specifying port number (1433?) rather than dynaically determining the sql server port?
Cheers,
- Mark
February 13, 2004 at 12:47 pm
Try:
dbcc showcontig with tableresults, all_indexes
Cheers,
- Mark
February 13, 2004 at 12:55 am
If triggered by an INSERT there'll be no rows in the DELETED table.
Cheers,
- Mark
February 13, 2004 at 12:50 am
I guess one way is to run SQLSERVR.EXE -f -m and grab the single connection immediately with Query Analyzer.
At this stage Task Manager's Processes tab whould show something like 20 in...
Cheers,
- Mark
February 12, 2004 at 9:09 pm
well... um... er...
I don't really know what those parms do. I guess the first says the depth you want to go down...
Cheers,
- Mark
February 12, 2004 at 9:01 pm
Phill,
xp_dirtree combined with xp_getfiledetails may do the job for you.
eg. EXECUTE master.dbo.xp_dirtree N'C:\TEMP\', 1, 1
one of the columns returned will say whether the entry is a subdirectory or a file.
To...
Cheers,
- Mark
February 12, 2004 at 8:45 pm
Yes, it's encrypted in the master database with the internal pwdencrypt function. It's a one-way encryption (there's no pwddecrypt function).
Note: if you have registration settings for Enterprise Manager that use standard...
Cheers,
- Mark
February 12, 2004 at 3:17 pm
is your database set to autoclose?
Cheers,
- Mark
February 12, 2004 at 1:13 pm
James,
If your product database is not too big and the varchar/text fields aren't too big and the searches can be satisfied with LIKE clauses then that could be the way...
Cheers,
- Mark
February 10, 2004 at 1:23 am
I can't beleive 9 people (so far) have chosen that answer.![]()
Cheers,
- Mark
February 5, 2004 at 12:49 am
Viewing 15 posts - 151 through 165 (of 790 total)