Viewing 15 posts - 1,021 through 1,035 (of 1,344 total)
Not sure what you mean by sort by parameters,
But I am assuming you want to sort by fields in your report.
Have you tried to look at the properties of your...
September 12, 2005 at 2:18 pm
September 9, 2005 at 9:49 am
I usually get this when I have a query/procedure in an endless loop, and I stop it.
Does this procedure return tons of data within a loop?
Make sure your code is...
September 9, 2005 at 9:42 am
When U have more than 1 sql server instance installed on a server you must fully qualify your sqlserver name
MyMachine\SqlserverInstanceName
September 9, 2005 at 9:36 am
Have you tried using case statement, This is a cross-tab query
select b.customer_id, Product_Name, [year],
sum(case [month]
when '1'
then payment
end) as [Month1_Year1_Payment],
sum(case [month]
...
September 8, 2005 at 1:38 pm
You can try some server side tracing, (not using profile)
But I do not think the work can be done in a trigger.
http://vyaskn.tripod.com/server_side_tracing_in_sql_server.htm
September 8, 2005 at 10:34 am
To give access to other machines you need to make a domain account, that is used only for services, (Cannot log on interactively)
Set sql server service, and agent service to...
September 7, 2005 at 3:16 pm
Hard to diagnose,
Try running
dbcc freeproccache
which will clean sql server procedure cache and destroy any saved execution plans then try to run again.
Other than this and verifying the...
September 7, 2005 at 2:39 pm
Could you please more clearly define what you are trying to do.
Post a sample table definition, some sample data, and what your expected results are.
It is not likely that you...
September 7, 2005 at 2:36 pm
The really really short answer is
Nope ![]()
I have not seen anything.
IMHO optimizing is as much an art as it is a science.
The easiest...
September 7, 2005 at 2:31 pm
Its hard to say, and it all depends
Can you present us the view definition?
When you state "The view takes a long time to run" what exactly do you mean?
Please post...
September 7, 2005 at 1:10 pm
The job runs under the context of the owner of the job in Sql Agent. (Opent the job in the owner dropdown in the general tab)
The owner needs to be...
September 7, 2005 at 10:09 am
Sql server does not have anything out of the box.
You'll need a third party application like Sql Compare, I belive from Embarcadero (Forgive spelling)
Seems like you have a code...
September 7, 2005 at 9:59 am
There is no build in function that will encrypt data values.
This will be a large benefit for using managed code in sql 2005, but not available in sql out of...
September 6, 2005 at 4:04 pm
No, there is no "Empty" value for a date in sql.
Null means not available, or not defined.
If you do not allow NULLS, then you must supply a date.
You can set...
September 6, 2005 at 4:03 pm
Viewing 15 posts - 1,021 through 1,035 (of 1,344 total)