Viewing 15 posts - 166 through 180 (of 321 total)
Select emp_id, lname, fname,city, state
into #temp_employee_v3 from employeedetails
CREATE UNIQUE CLUSTERED INDEX IX_1 on #temp_employee_v3
(emp_id,lname, fname)
Make the emp_id as first column in index...
October 10, 2008 at 7:15 am
Export #1 database to Access and import to your new database.
October 10, 2008 at 6:34 am
What was the problem? Can you please share?
October 7, 2008 at 4:41 am
In SQL Server 2005 the same automatic deletions based on the values for the 'Maximum job history log size (rows)' and 'Maximum job history rows per job' can be used...
October 3, 2008 at 6:34 am
sp_GetSchemaLock is a normal SQL Server internal sproc - it's used for data modifications to ensure atomicity. An sch-s lock is a schema stability lock - and it...
October 1, 2008 at 3:47 am
see the "XML Bulk Load Examples" topic in SQL Server 2005 Books Online.
September 30, 2008 at 3:16 am
If you datatype is money it will round off the 4th position after decimal.
September 26, 2008 at 6:11 am
do you have Sysadmin role granted?
September 26, 2008 at 5:45 am
Do you have outlook configured on your server?
September 26, 2008 at 4:04 am
You have to truncate the log first.
Backup Log YourDatabaseName With Truncate_Only
DBCC Shrinkfile('YourLogicalLogfileName',1000)
September 26, 2008 at 1:13 am
Can you please post more details?
September 26, 2008 at 12:33 am
select convert(char(10),getdate(),101)
September 26, 2008 at 12:31 am
Viewing 15 posts - 166 through 180 (of 321 total)