Viewing 15 posts - 16 through 30 (of 125 total)
Many thanks for your response, but I know that it should be possible; My issue is that they are not working and I wanted to know from someone who has...
March 1, 2014 at 3:36 am
Akayisi (2/18/2014)
I connect...
February 18, 2014 at 8:49 am
With Standard Edition you are limited with your choices but, you could run a server-side trace for just their ntusername. That would span across all databases or just a...
December 18, 2013 at 8:52 am
Looks like you need an OUTPUT parameter
CREATE PROC USP_first @id INT OUTPUT
AS
DECLARE @date AS DATETIME
SET @date = GETDATE()
SET...
December 18, 2013 at 6:59 am
Sounds like it could be permissions based. Are you a sysadmin on the SQL server?
Either way;check the sql log files and/or event logs for the reason that the service...
December 18, 2013 at 6:07 am
You could look into utilising resource governor (built into SQL) for this very situation
🙂
December 10, 2013 at 9:47 am
The DR is not for the same server - It's a warm standby of another server but always worth mentioning for others reading the post. It wouldn't really meet the...
October 31, 2013 at 7:29 am
Thanks for the response Brandie - The named instance is to be used as a warm standby for DR, so there is no real performance concerns as the default instance...
October 31, 2013 at 4:58 am
chewychewy (8/14/2013)
Understand that by default, SELECT statement on a table will block update statement on the table.
By setting READ_COMMITTED_SNAPSHOT, update statement (writer) will not block select statement (reader) as...
August 16, 2013 at 10:36 am
mohan.bndr (8/14/2013)
August 16, 2013 at 10:28 am
Sean Lange (8/16/2013)
curious_sqldba (8/16/2013)
select a.col1,a.col2
from Table1 A
left join Table2 B
select a.col1,a.col2
from Table1 A
Would these two queries return same result set?
They would if either of the tables has only 1 row....
August 16, 2013 at 10:13 am
I would also look at securing your database with the relevant lowest possible priviledge. Having correct security from the outset can reduce the chances that someone will delete data directly...
August 16, 2013 at 5:46 am
Thanks for the response
July 30, 2013 at 10:10 am
If you are using this column to hold financial data I would not recommend using float, as it is an approximate data type. Use decimal instead.
July 30, 2013 at 3:10 am
Hi Gail - Hope you are well.
I spoke to you at SQL in the City In London a week or so ago (i was the one with the questions...
June 30, 2013 at 12:14 pm
Viewing 15 posts - 16 through 30 (of 125 total)