Viewing 15 posts - 16 through 30 (of 615 total)
HowardW (3/6/2014)
Any reason you've set this rather than not specify it (I think it's automatically tuned based on the number...
March 6, 2014 at 9:04 am
Grant Fritchey (3/6/2014)
March 6, 2014 at 8:04 am
What database platform are you using? You sure it's SQL Server?
March 6, 2014 at 7:24 am
Problem solved.
I ran the below then created my trigger:
SET QUOTED_IDENTIFIER ON
SET ANSI_NULLS ON
February 25, 2014 at 4:58 am
Thanks very much all. This is all great code which I have found very useful!
February 17, 2014 at 4:10 am
Thanks very much for the query but in the end I cannibalised the sp_spaceused sproc to come up with the below:
It gives back the reserved size in MB, and when...
February 14, 2014 at 10:24 am
Eugene Elutin (2/13/2014)
venoym (2/13/2014)
I'm going to be the lone guy here and go out on a limb...Are you working for UK NHS IT or new made US Obamacare?
:hehe:
.... you got...
February 13, 2014 at 7:54 am
arrjay (2/12/2014)
Thanks for your response but I'm managing the whole process using sql therefore need the t-sql statement.
Sure.. so just use it in your EXEC master..xp_cmdshell
February 12, 2014 at 10:26 am
arrjay (2/12/2014)
I can...
February 12, 2014 at 10:07 am
JeeTee (2/12/2014)
I'd like to elicit some input from the community about foreign key usage in real systems.
Where I work, for one reason or another, we hardly use foreign keys,...
February 12, 2014 at 9:10 am
My attempt:
DECLARE @Codes TABLE
(
Codes VARCHAR(10)
)
INSERT INTO @Codes
( Codes )
VALUES ('ABC-0350'), ('DEF-00430')
SELECT codes, RIGHT(Codes, CHARINDEX('-', REVERSE(Codes))-1)
FROM @Codes
February 12, 2014 at 8:09 am
jay-h (2/10/2014)
I was my understanding that a SIMPLE recovery model should not grow the log file. What is happening here?
The recovery model of the database is different to the Autogrowth/Maxsize...
February 10, 2014 at 7:49 am
The first query gives me 8 and the second gives me 8, 8?!
February 10, 2014 at 3:13 am
Well here is the thing. When the recruiter approached me about the role he told me the salary would be X per annum. No range or up to blah blah.
oh...
February 7, 2014 at 5:07 am
Viewing 15 posts - 16 through 30 (of 615 total)