Viewing 12 posts - 16 through 27 (of 27 total)
Forgive me if I misunderstood your question.
I havent worked on partitions for sometime but i think you should be able to use the datetime as part of the partition function...
June 10, 2011 at 1:36 pm
I agree with ocp , if you can help it try and use Merge within the proc, exceptions could be where the proc is expected to perform simple crud and...
June 10, 2011 at 1:28 pm
insert into Main
select * from stg
except
select * from main
June 10, 2011 at 6:16 am
update a
set a.ORGACCOUNTNUMBER=e.[Accountnumber]
from CoCNewAndarUsersImport a
join [existingorgimporttable] e
on a.ORGNAME=e.[ExistingOrg];
--tablename <> Alaia
June 10, 2011 at 6:10 am
The error message is quite clear , you will need to perform the aggregation in another block such as a CTE and then join back to table you want...
June 10, 2011 at 5:49 am
Hi
I am sure they are undocumented commands however i feel the usage is not the same as the exec statement used in Procedure calls. infact if u look...
September 27, 2010 at 6:31 am
Yes , i saw the usage in sp_rename however I wanted to know the difference between a simple EXEC vs a EXEC %%
September 15, 2010 at 5:00 am
There are no default jobs that run on completion of the SQL Server installation. Are you refering to anything in particular?
September 13, 2010 at 4:11 am
if this is a dev box , for the purpose of meeting your immediate space requirement try dropping the indexes on the tables and then work from there.
September 13, 2010 at 4:08 am
Hi
You could try shrink database and check if it works for you.
check in SSMS , you can run shrinkfile for a the data file only as long...
September 13, 2010 at 4:05 am
You Could try the below steps to find out where the issue is.
Rename a text file to .udl and then use the OLEDB for OLAP provider to connect to that...
September 13, 2010 at 3:59 am
Hi
I have come across a scenario where the temp db after restore or recovery defaults the file size of the mdf and ldf to very large values.
Also you...
September 13, 2010 at 3:42 am
Viewing 12 posts - 16 through 27 (of 27 total)