Viewing 15 posts - 466 through 480 (of 2,904 total)
I think Muhammad meant "Ethically NOT allowed" in regards to asking for answers to interview questions.
-SQLBIll
May 1, 2007 at 10:34 am
We don't have enough information to help you. What kind of system are you installing it on? The fact that you couldn't even load the Express edition tells...
April 20, 2007 at 1:32 pm
Are the logins on both SQL Server and using SQL Server Authentication?
From the looks of the examples you gave, those aren't SQL Server logins.
Windows Authentication can ONLY be used with...
April 19, 2007 at 4:32 pm
When you backup a database to a file, SQL Server 'records' that information. It does NOT keep checking to make sure the information has stayed the same. So if the...
April 16, 2007 at 2:45 pm
Look up Orphaned Users in the BOL. That will show you a script to run to find out which logins are 'orphaned'.
-SQLBill
April 16, 2007 at 2:40 pm
ALTER TABLE tblname
ADD COLUMN myid IDENTITY (1,1)
Adding an IDENTITY column can take a while as it needs to number up every row in the table.
-Bill
April 13, 2007 at 2:36 pm
Just like any other database. However, you CANNOT do a transaction log backup of the master database. If you use a maintenance plan to do the backups, make sure...
April 12, 2007 at 1:00 pm
You could use REPLACE. First replace all commas with 'no space' REPLACE(string, ',', ''). Then replace all slants with a comma, and all spaces with a comma.
-SQLBill
April 12, 2007 at 12:51 pm
How did you do the restore? Did you make sure to use WITH RECOVERY? If not, then the database will continue to show recovering. One of the first...
April 12, 2007 at 12:44 pm
No they are not the same.
The first one only returns rows where dist.cdedoctype equals 'INV'.
The second one returns rows where dist.cdedoctype equals 'INV' OR has a NULL...
April 11, 2007 at 3:47 pm
In Enterprise Manager, right click on the instance, select Properties. Go to the Security tab. You should see a section for Auditing. Check the box for successful logins.
-SQLBill
April 11, 2007 at 3:43 pm
Every job does have Step 0. It is the job outcome. Open Enterprise Manager. Expand Management. Click on Jobs. Right click on any job that has run and...
April 10, 2007 at 2:53 pm
Why use SP1? SP2 is now out and that's what I would use. I don't have a 2005 cluster, so can't help with that. But I wouldn't apply...
April 10, 2007 at 2:50 pm
I don't know....what is the error? If it didn't work you should have gotten an error message - what was it? If it didn't return what you expected...
April 10, 2007 at 1:07 pm
First: who owns the table? Look in Enterprise Manager, expand the database, click on Tables. Look down the list to find the table. Is the owner DBO or...
April 9, 2007 at 4:41 pm
Viewing 15 posts - 466 through 480 (of 2,904 total)