Viewing 15 posts - 1 through 15 (of 108 total)
Axell (4/28/2015)
I forgot to mention that I had daily Rebuild Index on the Maintenance Plan. Is this cause the log file to grow?
As said before this can be the reason.
April 28, 2015 at 11:17 pm
Phil Parkin (4/14/2015)
Ville-Pekka Vahteala (4/14/2015)
Grant Fritchey (4/14/2015)
OK. Fair enough. Let's try this one. It might also be found somewhere in here... maybe.
These did not have those numbers what I asked,...
April 14, 2015 at 6:10 am
Grant Fritchey (4/14/2015)
OK. Fair enough. Let's try this one. It might also be found somewhere in here... maybe.
These did not have those numbers what I asked, but they are very...
April 14, 2015 at 5:09 am
I modified you code a little adding index to table.
CREATE Table T (S varchar(2))
Declare @s-2 nvarchar(255)
CREATE INDEX ts ON T (S);
Insert into T
Values ('AR'), ('AT'), ('AW')
April 14, 2015 at 3:31 am
For update you need to use deleted or inserted table.
insert into abcd select *, getdate() from deleted
if you want values before update.
April 10, 2015 at 3:10 pm
Did you try to open IE with administrative rights?
This is needed when if you are trying to open reports on same server where instance of SQL server is running.
April 10, 2015 at 3:06 pm
BWFC (2/11/2015)
It's funny. When it snows in my area (usually get 1 snow/ice storm per year, of no more than 4 to 6 inches), we get all of the...
February 11, 2015 at 11:16 am
Grant Fritchey (2/2/2015)
Sioban Krzywicki (2/2/2015)
SQLRNNR (2/2/2015)
Ed Wagner (2/2/2015)
I only have Standard Edition, but I can't imagine running a production instance on SQL Express. Maybe I'm just spoiled.
I have to...
February 2, 2015 at 12:31 pm
GilaMonster (2/1/2015)
sparky-407434 (1/31/2015)
February 1, 2015 at 12:33 pm
GilaMonster (1/29/2015)
Brandie Tarvin (1/29/2015)
Here's one for everyone. Does anyone have an environment where Enterprise is the production edition and Standard is the Dev / Test version?
he one I hate seeing...
January 29, 2015 at 9:05 am
Lowell (1/28/2015)
ACTLABCOST = case
...
January 28, 2015 at 9:20 am
Select query will be locked because you have transaction still open when it is executed by email.
I second Lowell idea of job or maybe you could use service broker when...
January 27, 2015 at 11:30 am
DBA From The Cold (1/27/2015)
https://msdn.microsoft.com/en-ie/library/ms186939.aspx
The storage size, in bytes, is two times the actual length of data...
January 27, 2015 at 11:05 am
Is there varchar parameters used in query predicates? I have seen that reports are calling always with nvarchar and this causes scans instead of seeks.
January 23, 2015 at 1:21 pm
GilaMonster (1/19/2015)
Officially, according to the government, South Africa uses the , as the decimal point. In reality, everyone, including the government, uses the .
Windows 7, when used...
January 20, 2015 at 12:20 pm
Viewing 15 posts - 1 through 15 (of 108 total)