Viewing 15 posts - 9,091 through 9,105 (of 26,490 total)
FIrst, you really need to read the first article I reference below in my signature block regarding asking for help. You may have provided your code (and I am...
December 27, 2012 at 7:09 am
KumarSQLDBA (12/27/2012)
I have tried like '--EXEC msdb.DBO.sp_start_job @job_name ='dhhjdhjj', @server_name = N'Sdhjhjfhjfhj',@step_name ='step1'
But getting...
December 27, 2012 at 6:53 am
dedicatedtosql (12/26/2012)
Actualy We have both CDC as well as Auditing in place for the prod database. But this was a local environment. Where we...
December 27, 2012 at 6:50 am
If it is important to know who did something, you should look at setting up auditing so that you can capture this in the future. You may also want...
December 26, 2012 at 5:41 pm
Josh Ashwood (12/26/2012)
All hail Celko!!!!!:smooooth:
Please, do not encourage him! We want him to go haunt an Oracle site for a while.
December 26, 2012 at 5:37 pm
Jeff Moden (12/26/2012)
Lynn Pettis (12/24/2012)
I may be wrong, so if I am please tell me so. Aren't logical reads reads from data cached in memory?
Like Gail said... Yes.
Would these...
December 26, 2012 at 4:13 pm
Something like this:
WITH CTE AS
(
SELECT
name as TableName,
object_id
FROM sys.tables WHERE schema_id = schema_id('dbo')
)
SELECT...
December 26, 2012 at 4:08 pm
ScottPletcher (12/25/2012)
Lynn Pettis (12/25/2012)
ScottPletcher (12/25/2012)
Lynn Pettis (12/24/2012)
ScottPletcher (12/24/2012)
If...
December 25, 2012 at 2:35 pm
ScottPletcher (12/25/2012)
Lynn Pettis (12/24/2012)
ScottPletcher (12/24/2012)
If you're going to...
December 25, 2012 at 1:42 pm
imaceo58 8163 (12/25/2012)
Now after inserting rows into GwenF_department , and executing the function .....
drop function dbo.udfSalaryRaise;
CREATE FUNCTION udfSalaryRaise()
RETURNS @Results TABLE (
departmentname ...
December 25, 2012 at 1:04 am
Merry Christam everyone.
We are having a White Christmas here. It has been snowing since 6:00 PM and is still snowing now.
December 25, 2012 at 12:24 am
imaceo58 8163 (12/24/2012)
My table definition is...
December 24, 2012 at 10:19 pm
I am assuming users insert/update/delete records using an application, not by directly writing SQL statements. If so, this is something that should be handled in the application.
December 24, 2012 at 3:37 pm
Nidhi G (12/24/2012)
I have a table with syn_trans with below cols:
(
Id integer(10),
Name varchar2(100),
seq_no integer(10),
seq_name varchar2(100),
gp_name varchar2(100)
)
There is no unique/primary key on the table.
A row exists in table with below...
December 24, 2012 at 3:35 pm
Without being able to see what you have to deal with, or at least a reasonable facsimile of the data, it is hard to provide you much guidance. This...
December 24, 2012 at 3:33 pm
Viewing 15 posts - 9,091 through 9,105 (of 26,490 total)