Viewing 15 posts - 5,251 through 5,265 (of 6,678 total)
Glad I could help - thank you for the feedback.
April 24, 2009 at 7:44 pm
RESTORE HEADERLISTONLY FROM DISK = '{your tlog backup file here}';
April 24, 2009 at 3:37 pm
These are actually local windows groups that are created during the install. When configuring your system you could just add your domain user (or local user) to these windows...
April 24, 2009 at 3:30 pm
Maybe something like this?
SELECT {columns}
FROM tables
WHERE {some filtering here}
ORDER BY CASE WHEN Type = 'TypeA' THEN 1
...
April 24, 2009 at 3:08 pm
If you are running an AD domain - I would recommend using a domain account for your service line account. This will give you the ability to setup processes...
April 24, 2009 at 2:59 pm
They can put the page file at whatever size they want. SQL Server shouldn't be using it - and if you are you have bigger problems.
If you are migrating...
April 24, 2009 at 2:43 pm
The pagefile really shouldn't matter - since you really don't want SQL Server to be paging out to it anyways.
I would leave it alone.
What edition are you installing? Is...
April 24, 2009 at 1:39 pm
GilaMonster (4/24/2009)[/b:-D
I actually had that happen when we moved to 2005, though it was not intentional.
All tests on dev were fine, all tests on UAT were fine. We upgraded production...
April 24, 2009 at 1:20 pm
You don't insert columns - you insert rows. Each insert statement is going to insert 1 or more rows into that table.
It sounds like you are trying to update...
April 24, 2009 at 1:13 pm
When you upgrade a system to SQL Server 2005 and above, the default for logins is to set the CHECK_POLICY property ON and to provide a new password for all...
April 24, 2009 at 12:41 pm
See if you have a column defined in MyTable with a default defined as 'TBD'.
When inserting into a table, you have to provide values for all columns that do not...
April 24, 2009 at 12:29 pm
Nick (4/24/2009)
Here's one for ya... I applied a hotfix to my My SP2 server to fix an SSRS issue which brought the version...
April 24, 2009 at 12:02 pm
Or preferably test it before you upgrade, by setting up the DB on a test server with 2005 on.
Though, I must admit, there's little that gets adrenaline pumping more than...
April 24, 2009 at 11:48 am
20 million rows is not really a lot these days. One thing you could do is create a new table with the columns structured the way you want, insert...
April 24, 2009 at 11:47 am
This may have already been asked previously, but - have you verified that the client tools have been upgraded to at least the same level as the server you are...
April 24, 2009 at 11:36 am
Viewing 15 posts - 5,251 through 5,265 (of 6,678 total)