Viewing 15 posts - 1,861 through 1,875 (of 2,612 total)
It could be a number of different things. The application may be using too much memory causing SQL to cache to virtual memory, you could be contending for processor...
April 17, 2008 at 6:13 am
Is it fixed width? How can you tell one field from the next? Perhaps you could post a file - or part of one.
April 17, 2008 at 6:05 am
A UNION ALL can (and almost always will) un-sort your data, so it will mark the data as unsorted.
Data coming from more than one source into a UNION ALL is...
April 17, 2008 at 6:03 am
xSQLCompare has a command line utility that you could use to automate this process.
I think Red-Gate's software package does as well, but I cannot remember.
April 17, 2008 at 5:55 am
Look at the OUTPUT clause in books online.
It will allow you to output the affected records into another statement.
April 17, 2008 at 5:53 am
It is going to be very difficult to determine the exact cause now that you cannot reproduce the behavior.
Stored procedures cache execution plans. If it had cached an execution...
April 17, 2008 at 5:50 am
Freeing the procedure cache will not help the issue being noted.
The problem is if there is a plan being built while the setting is changed the plan could possibly be...
April 16, 2008 at 1:50 pm
It is going to depend on your exact requirements. Does the report database have schema specifically for the reports? It would be common to want different indexes, stored...
April 16, 2008 at 1:30 pm
There is a "Format" menu with an auto-layout option as well as menu items for alignment and sizing.
April 16, 2008 at 12:01 pm
If you are either connected to the server via terminal services, or actually sitting at the server console when you try to run the report, does it work?
April 16, 2008 at 11:59 am
In the Login Properties dialog, choose the User Mapping section.
In the top (users mapped to this login), select your database and leave the defaults here.
In the bottom (which just enabled),...
April 16, 2008 at 11:56 am
Are you are referring to several lines showing up when you run sp_who2 with the same spid and sometimes the spid is displaying as blocking itself?
If that is the situation,...
April 16, 2008 at 11:50 am
The "Spinning Wheel" is just an animated gif. The fact that it is not spinning suggests that you have some problem with the web page displaying on the client.
If...
April 16, 2008 at 7:55 am
If you have replication running for a particular table (making it an article) you need to make schema changes through the replication UI. If you try to make a...
April 16, 2008 at 7:00 am
MS Access is a bit of a terrible front-end for a SQL Database. It is not really designed for a multi-user environment. To add to that, you have...
April 16, 2008 at 6:53 am
Viewing 15 posts - 1,861 through 1,875 (of 2,612 total)