Viewing 15 posts - 1 through 15 (of 15 total)
Thanks Dewey! I also, found out from management studio when you create a new sql ce db the "options" button on the lower right corner of the connection window...
September 2, 2008 at 3:24 pm
I put 2 nonclustered indexs on the two most heavily joined columns on the temp table and it reduced the tempdb locks down to a bare minimum! But, when running...
June 22, 2006 at 12:51 pm
but isn't index going to slow down the updates cause with indexs you have to update not only the table but the indexs when an update occurs? I just remember...
June 21, 2006 at 6:07 pm
No i don't think so. I would have to ask my senior dba as I just started this new job. I am in the process of analyzing and trying to...
June 19, 2006 at 2:56 pm
can you give me some examples of using functions badly? appreciate it!
June 15, 2006 at 10:46 am
Sorry I can't find the link i was googling it and can't remember my search criteria. Anyways the answer is as stated before by others is using sp_helpdb or sp_databases. ...
May 9, 2006 at 12:33 pm
If the linked table that your referencing is not huge in size then you could possibly select that table (use a select into clause) into your local machine as a...
May 9, 2006 at 12:01 pm
Check out the below link. I'm not sure if their is or not a system sproc...If it's not listed in sql books online (i'm sure you checked) their probably isn't. ...
May 8, 2006 at 1:29 pm
NICE! thanks all for your help!... Scott the select statement worked...
select * from dbo.fn_GetClosestZip(98052)
September 15, 2005 at 10:57 am
Thanks for the insights!! I'm screwing around learning....Thanks a million!
September 14, 2005 at 12:45 pm
Thank you very much! I think this help me out!
September 7, 2005 at 12:12 pm
select zip, subdistrict, city, state from Feed1
select zip, subdistrict, city, state from Zips
So if zip field from Feed1 matches with zip field from Zips then go ahead and check if subdistrict,...
September 7, 2005 at 11:56 am
actually i just did it through enterprise manager deleting the foreign keys and then just truncated the tables in query analyzer and then used Import and Export wizard to transfer...
August 3, 2005 at 1:06 pm
Hi Steve,
Yup that worked! I deleted the foreign keys on the table and then trucated all the tables and reloaded the data. Then recreated the foreign keys. Appreciate the help!
August 3, 2005 at 10:34 am
Viewing 15 posts - 1 through 15 (of 15 total)