Viewing 15 posts - 151 through 165 (of 789 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], ...
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...
February 18, 2004 at 3:54 am
Being lazy, I usually just edit such jobs and change the owner to sa.
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?
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"...
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?
February 13, 2004 at 12:47 pm
Try:
dbcc showcontig with tableresults, all_indexes
February 13, 2004 at 12:55 am
If triggered by an INSERT there'll be no rows in the DELETED table.
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...
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...
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...
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...
February 12, 2004 at 3:17 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...
February 10, 2004 at 1:23 am
I can't beleive 9 people (so far) have chosen that answer.
February 5, 2004 at 12:49 am
Viewing 15 posts - 151 through 165 (of 789 total)