Viewing 15 posts - 16 through 30 (of 219 total)
Denny,
if we use this from analyzer it wil throw error as its a command not sql syntax.
bcp "tempdb.dbo.DimProducts" in "c:\Users\Shay\Documents\DimProducts.txt" -T -c
Msg 156, Level 15, State 1, Line 1
Incorrect syntax...
September 8, 2011 at 8:32 pm
bcp [tempdb].[dbo].[DimProducts] in
"c:\Users\Shay\Documents\DimProducts.txt" -c -t
You don't use BCP from Query Analyzer. You run it from a command-line window.
you should use -c and not -C. The spacing should be OK,...
September 8, 2011 at 8:25 pm
No one knows any suggestions here ???
Allright, thanks...
September 8, 2011 at 7:52 pm
Can anyone provide suggestions ?
September 8, 2011 at 12:33 am
Please find the attached results.
September 7, 2011 at 7:59 pm
More information:
typeallocatedvirtual_resvirtual_comawetopFivegrand_total
CACHESTORE_SQLCP158888000CACHESTORE_SQLCP158888
MEMORYCLERK_SQLUTILITIES1125201201200MEMORYCLERK_SQLUTILITIES112640
OBJECTSTORE_LOCK_MANAGER4057616384163840OBJECTSTORE_LOCK_MANAGER56960
CACHESTORE_OBJCP45712000CACHESTORE_OBJCP45712
MEMORYCLERK_SOSNODE25984000MEMORYCLERK_SOSNODE25984
September 7, 2011 at 7:56 pm
-- top 10 consumers of memory from BPool
select
top 10 type,
sum(single_pages_kb) as [SPA Mem, Kb]
from
sys.dm_os_memory_clerks
group by...
September 7, 2011 at 7:49 pm
Hello All,
Sorry track this to another way.
- Is there anyway that to track the Logins, created date, accessed date, when it was accessed the particular database.
Is this question makes...
July 29, 2011 at 6:27 am
Thanks much for your time.
Sorry to say, but I was looking for SQL query to store data into a temp table. So that client can query that and test or...
July 29, 2011 at 6:20 am
Log folder doesnt shows info clearly.
Here we have enough preveliges... Donno why they need only SQL Script for this.
I explained like SQL Server 2000 is not the much smart to...
July 29, 2011 at 4:10 am
I am sorry, I should have been more clearer...
But we need this to be implemented in 2000 & 2005 servers as well.
Not C2 auditing. Simply enable server properties security for...
July 29, 2011 at 1:03 am
SQL Server Auditng is enabled on this instance.
Am I posting unclear question ?
July 28, 2011 at 6:43 am
can anyone post any ideas on this ?
can we track in any way ??? Is this possible in SQL Server 2000 ?
July 28, 2011 at 6:24 am
Nothing clicked to me.. accdate shows wrong information. Any other help please..!
One more query :
Is there anyway to track the logins last time used on a particular database in SQL...
July 28, 2011 at 1:12 am
Viewing 15 posts - 16 through 30 (of 219 total)