Viewing 15 posts - 7,801 through 7,815 (of 26,490 total)
J Livingston SQL (4/29/2013)
EdVassie (4/29/2013)
If your reseller is a Microsoft Gold artner then Microsoft accept full liability for any advice they give..
Hi any pointers to official / supporting docs...
April 29, 2013 at 10:00 am
Now, if we could just get people to use the semicolon statement terminitor correctly instead of using it as a begininator at the start of a CTE definition. 😉
April 29, 2013 at 9:24 am
e4d4 (4/29/2013)
You need a running instance of SQL Server, so at least a SQL Server service and a SQL Server Browser if witness is on named instance and you connect...
April 29, 2013 at 9:20 am
S_Kumar_S (4/29/2013)
If I have data like this, where there is only one clustered index on table and index size is 2976 KB.
name ...
April 29, 2013 at 9:14 am
Okay, I will say it explicitly instead of implying it. Look at the code you use to run the index maintenance, is it running the rebuilds/reorgs as a single...
April 29, 2013 at 6:59 am
If t-log growing to 160GB over 2 hours and you are running t-log backups every 20 minutes, sort of sounds like the index maintenance process may be running as a...
April 29, 2013 at 6:32 am
prb88 (4/29/2013)
table b is just a lookup table and remains unchanged.
In all my years in this business I have never seen a lookup table remain static. New values are...
April 29, 2013 at 4:59 am
prb88 (4/29/2013)
April 29, 2013 at 4:45 am
Look up CREATE VIEW in Books Online, but to help:
create view dbo.MyView
as
select
a.DIVISION,
a.SUB_UNIT,
b.Description as ReasonsReferral
from
dbo.TableA...
April 29, 2013 at 4:26 am
rdeheld-535532 (4/24/2013)
Read Multiplexing:
"The number of tiers of hardware or software between the SQL Server and the user or devices that ultimately use its data, services, or...
April 29, 2013 at 4:01 am
You don't need all those RETURN statements in your code:
declare @V_AreaId int = 1
declare @V_Area nvarchar(30)='xxx'
declare @V_Pincode nvarchar(10) ='35646'
BEGIN TRY
BEGIN TRANSACTION
IF...
April 29, 2013 at 3:46 am
Eddie Wuerch (4/27/2013)
April 27, 2013 at 5:24 pm
Okay, not sure what is going on here as I am not making much sense from your ramblings.
What I did get is that the primary key columns of the four...
April 27, 2013 at 5:50 am
Sergiy (4/27/2013)
Try to keep it professional Sergiy.
I believe, my evaluation of your suggestion was absolutely professional.
No Sergiy, I would have to agree with opc.three, you weren't being professional in your...
April 27, 2013 at 5:40 am
IniJoy (4/26/2013)
Is there a way to add a "top 10" factor to only select the ActivityID's whose aggregates are in the top 10 #'s for...
April 26, 2013 at 1:33 pm
Viewing 15 posts - 7,801 through 7,815 (of 26,490 total)