Viewing 15 posts - 946 through 960 (of 2,904 total)
Try this in Query Analyzer......
SELECT SERVERPROPERTY('LicenseType'),
SERVERPROPERTY('NumLicenses')
-SQLBill
June 20, 2006 at 6:16 am
Check to see that they have permission to access the databases.
-SQLBill
June 19, 2006 at 8:48 am
WITH STOPAT and WITH STOPATMARK are two different things.
WITH STOPATMARK requires you to have set a mark in your transaction.
WITH STOPAT just requires that you be restoring a LOG...
June 19, 2006 at 7:21 am
Aha.......it's those little details that cause problems all the time.
Glad you figured it out.
-SQLBill
June 16, 2006 at 10:52 am
You might want to look at Microsoft's website for some of the other patches that came out after SP3. There were problems with that version, which is why they came...
June 16, 2006 at 10:51 am
Your development server has a RTM version of SQL Server. That needs to be upgraded to SP3a or 4 right away. SP3a was the first to correct the...
June 16, 2006 at 10:49 am
I agree with you, but that doesn't explain the results which was my point. There are three language classes with a total of 22 Males. The three language classes...
June 16, 2006 at 10:46 am
I don't get how you are coming up with your numbers......for example:
Languages, there are three language courses which have a total of 22 Males, but you are only counting two...
June 16, 2006 at 6:28 am
You might be able to make one stored procedure per table, but it's not going to work as a generic 'for all tables' script. All your tables don't have...
June 16, 2006 at 6:17 am
But the table names will begin with the owners name:
joesmith.#mytable
janedoe.#mytable
That's one reason it's always a good idea to use the 3-part naming convention (dbname.owner.table)
-SQLBill
June 16, 2006 at 6:10 am
I believe that when you run the install there is a window where it asks for the instance and has a checkbox for default. Check or uncheck the box as...
June 16, 2006 at 6:06 am
Everyone seems to be looking at this database as though it was created all at once. Maybe it was done a part at a time. Sometimes what works...
June 15, 2006 at 1:47 pm
If the query and data are the exact same, then it's an issue between the Personal and Enterprise editions.
-SQLBill
June 15, 2006 at 12:06 pm
I'll second BKelly's comment......I'll bet you have more than one instance and just keep updating the default instance. You MUST apply service packs to each instance even if they are...
June 15, 2006 at 12:01 pm
Viewing 15 posts - 946 through 960 (of 2,904 total)