Viewing 15 posts - 44,476 through 44,490 (of 49,571 total)
Good to hear.
Yeah, replication can be a pain sometimes. Glad you came right.
September 17, 2008 at 12:52 am
I'll give it a try, but it won't be in the next couple of days. I've got *real work* that needs doing :crying:
September 16, 2008 at 11:23 am
It's as easy as changing the properties of the server, no hacks necessary. A restart of the SQL instance is required for the change to take effect
All SQL logins will...
September 16, 2008 at 11:21 am
I wouldn't call 200000 rows small. 🙂
Check the number of pages in the table. Don't worry too much about tables with < 100 pages.
September 16, 2008 at 11:15 am
How big are the tables in question? How many pages? (you can see that from the full output of index physical stats)
My guess is that the tables are very small...
September 16, 2008 at 11:04 am
Can you post the code please? There are places where you would have to explicitly cast as varchar/nvarchar(max) or be cut off at 4000/8000 characters. Considering the length is...
September 16, 2008 at 11:01 am
bcronce (9/16/2008)
I though SQL stops executing an AND statement once 1 comparison returns false.
Depends on the plan the optimiser comes up with. Sometimes it does, sometimes it doesn't. The order...
September 16, 2008 at 10:56 am
kevriley (9/16/2008)
GilaMonster (9/16/2008)
It doesn't take into account existing indexesGail, can you explain what you mean ??
Kev
If there's an existing index on a table on (for example) columns A, B, C...
September 16, 2008 at 10:48 am
Can you check the connection string that the app uses, see if it specifies an initial database. Also check what the default database is for sa.
A properly set up account...
September 16, 2008 at 5:39 am
Can you please post the table definitions, the index definitions and the execution plan?
To get the exec plan on SQL 2000, run the query with SHOWPLAN_ALL on, run to grid,...
September 16, 2008 at 5:37 am
Perry Whittle (9/16/2008)
sunshine (9/15/2008)
the previous statement must be terminated with a semicolon.this message is fairly descriptive!! The USE statement and exec must be separated by a semi colon like so
That...
September 16, 2008 at 5:32 am
Brandie Tarvin (9/16/2008)
WHOO HOO! I've had 2 sessions accepted!
Congrats. Is this your first time speaking?
September 16, 2008 at 5:17 am
State 16 means that the default DB or the DB requested by the login is not available. Check what DB the app in question wants and make sure that it's...
September 16, 2008 at 4:30 am
Do you know why the transaction log is growing? If you have regular log backups, it should not be continually growing.
Query the sys.databases view and see what the log_reuse_wait_desc column...
September 16, 2008 at 3:35 am
Unless you had one of the traceflags on or a profiler trace running with the deadlock events, there's no way to tell now what happened.
September 16, 2008 at 3:07 am
Viewing 15 posts - 44,476 through 44,490 (of 49,571 total)