Viewing 15 posts - 211 through 225 (of 1,068 total)
ColdCoffee (5/18/2012)
Suresh B. (5/18/2012)
Prasad.N (5/18/2012)
i have doubt regarding select statement, i have one table with 46 columns , i want select only 42 columns.but iam not like to write...
May 18, 2012 at 12:19 am
Prasad.N (5/18/2012)
i have doubt regarding select statement, i have one table with 46 columns , i want select only 42 columns.but iam not like to write
select col1,col2...........col42 from...
May 18, 2012 at 12:09 am
vinu512 (5/17/2012)
Are there any Pre-requisite settings and configurations I have to do to get this working?
There a pre-requisite. Go to SQL Agent properties Alert System tab and enable "Replace tokens...
May 17, 2012 at 11:45 pm
I guess your name is not in the DL (distribution list)
May 17, 2012 at 1:40 am
The issue is the login 'DOMAIN\Login' has granted one or more permission(s) to some other login.
Run this query for more details:
select * from sys.server_permissions
where grantor_principal_id =
(select principal_id from sys.server_principals where...
May 17, 2012 at 12:23 am
The order in which data is stored is not important.
While SELECTing you have to specify ORDER BY clause and retrieve the data in the required order.
May 15, 2012 at 10:05 pm
Try this:
select ItemID from reportserver..catalog
where name = 'Your Report Name'
select top 10 * from reportserver..ExecutionLogStorage
where ReportId = '86501BA5-5343-4669-A54E-F6A129E02BA5'
and Status <> 'rsSuccess'
order by TimeStart desc
May 15, 2012 at 6:07 am
By rebuild has no effect, do you mean fragmentation is still there?
How big is your table (in pages)?
Is it a heap?
May 14, 2012 at 10:08 pm
jitendra.gupta1 89520 (5/14/2012)
...Question : Can I replace "inner hash join" with "inner join" should it effect on data manupulation ?? Where to use inner hash join??
Answer:
1) Yes, you can...
May 14, 2012 at 3:48 am
erics44 (5/12/2012)
Thanks for the repliesI'll check out the execution plans
No. Not execution plan. Use Profiler as suggested by Gail.
GilaMonster (5/12/2012)...My preferred way is to run both queries multiple times (10...
May 13, 2012 at 9:53 pm
sysprocess is the old method. DMV is the better and recommended method.
Using DMVs it is possible detect blocking sessions with the application name, user name, host name, IP, SQL...
May 10, 2012 at 10:21 am
DMVs such as sys.dm_exec_requests, sys.dm_tran_locks are the right tools for tracing blocking issues.
But how will you fix it? Better to report this to your ERP and CRM application vendors.
May 10, 2012 at 12:39 am
Just moving the data to a different SAN should not impact replication.
Stopping the SQL Server should be enough for it to pick up where it left off.
Remember that replication has...
May 9, 2012 at 10:18 pm
What is "temporary log information"?
Never heard of it.
May 8, 2012 at 10:10 pm
May 8, 2012 at 10:08 pm
Viewing 15 posts - 211 through 225 (of 1,068 total)