Viewing 15 posts - 286 through 300 (of 317 total)
Bhuvnesh (1/11/2013)
arnipetursson (1/10/2013)
You have to remember that NULL in SQL means two things:1. Empty set
2. Undefined set.
This is an well know set algebra bug in SQL.
NO , NUll is...
January 11, 2013 at 8:58 am
You have to remember that NULL in SQL means two things:
1. Empty set
2. Undefined set.
This is an well know set algebra bug in SQL.
January 10, 2013 at 10:01 am
11 lakh is over the ~1 million limit of excel.
Looks like you are out of luck.
January 10, 2013 at 9:57 am
What Gail said.
Stored procs are like an API to the database.
You have to identify the use cases for the database interactions and then define the stored proc interfaces (input/output params...
January 9, 2013 at 9:55 am
I am aware of that.
However you can deduce who is doing what based on the entries in the default trace.
December 28, 2012 at 2:31 pm
If you have default trace records from around the time of the delete, you may be able to compile a list of suspects. Hopefully you do not too may...
December 28, 2012 at 12:42 pm
The dead lock might be caused by backup history cleanup process.
The default proc is slow and causes a lot of locking.
Is a database being dropped with delete of backup history...
December 28, 2012 at 12:36 pm
Below is code I use to get info on processes that are blocking and blocked:
SELECT DISTINCT
sysdatabases.name as database_name,
blocked.spid as blocked_spid,
blocked.waittime/1000 as wait_seconds,
convert(varchar(80),blocked.loginame) as blocked_loginame,
blocked.cmd as blocked_command,
convert(varchar(80),blocked.program_name) as blocked_program_name,
blocked.lastwaittype,
convert(varchar(80),blocked.waitresource) as...
December 26, 2012 at 1:27 pm
In general, certification mainly helps if you do not have a lot of experience. Once you have experience, people that are worth working for will focus on that.
December 19, 2012 at 9:08 am
Sample code:
declare
@max_backup_set_id int,
@db_name varchar(50)
select
...
December 18, 2012 at 1:58 pm
Why are you not getting the file name and path from msdb?
Are you comfortable with the security issues related with using xp_cmdshell?
December 18, 2012 at 1:52 pm
As a rule I don't like to run on 1433.
Yes, any scanning tool out there will try to attack 1433 first.
They will try to log in as sa and sometimes...
December 18, 2012 at 1:37 pm
And is CPU high on the SQL server box?
Is there a particular reason your SQL server is not behind a firewall?
December 18, 2012 at 1:32 pm
How many times a second are the errors?
High number of login attempts can chew up CPU, but it would have to be very frequent.
Generally, any SQL server instance running on...
December 18, 2012 at 1:22 pm
This is a classic issue with the SQL Agent scheduler.
If a job does not fire due a time issue on the server, it will not run again unless you run...
December 5, 2012 at 5:14 pm
Viewing 15 posts - 286 through 300 (of 317 total)