Viewing 15 posts - 271 through 285 (of 545 total)
And beware when you are creating linked server, if there are any 🙂
January 7, 2009 at 11:21 am
It depends, usually an SQL server can have upto 75% of the system CPU, if it exceeds this for a time period then you have to look for problems that...
December 19, 2008 at 9:05 am
Have u created your own maintaince plan??, if so can you post the script so we can have a look on that
December 17, 2008 at 10:37 am
Thanks Mate, it looks somthing like this, but the problem is that we are using hibernate to insert values into a table, As per my develolper he says SP cant...
December 17, 2008 at 7:59 am
Thanks Michael
But the problem was that i cant insert null...
December 15, 2008 at 8:56 am
Can you please post us the Query you use, Its not advisible to delete 70 K from the production server in a time. is this a one off thing or...
December 15, 2008 at 7:30 am
Hi
Is the XX server folder shared and has got rights for the user who is accessing the file 🙂
December 15, 2008 at 6:01 am
Search in this forum mate, its a open Question, can you be a bit more specific so we can help 🙂
December 15, 2008 at 5:59 am
Is this a whole database or a table, if its a database then why not backup and restore 🙂
December 12, 2008 at 10:52 am
Hi Steve
I do agree, i forget to mention that :), depends upon the usage
December 11, 2008 at 3:59 am
Why do you really want to do a Open Query when you have an option to create a linked server and use that server on SQL, which is more efficiant...
December 11, 2008 at 3:44 am
You can do this by opening a default trace on the profiler, run the profiler and then your appication, you can see the username and the host name from where...
December 11, 2008 at 3:42 am
insert into school
select ID, name, class from student
Hi you are inserting all the rows from Student table when ever you fire a trigger, you have to use values...
December 11, 2008 at 3:40 am
One way u can use sysindexes table to get the row count of all the table on that databases 🙂
December 11, 2008 at 3:36 am
select top (@sample) *
from.....
Use
Declare @sql varchar(255)
Declare @Sample varchar(2)
Set @Sample='5'
set @sql='Select top '+ @Sample +' * from
EXEC (@SQL)
December 10, 2008 at 12:16 pm
Viewing 15 posts - 271 through 285 (of 545 total)