Viewing 15 posts - 4,636 through 4,650 (of 7,429 total)
Looking at for a moment but gotta break it down. One thing thou.
In regards to the contact view which you listed as coded
Select * From Openquery(Service, "Select * From dev_rede.tbl_Contacts")
Do...
October 16, 2002 at 4:41 am
Just for the sake of testing the problem try it instead with the TOP x syntax both 100 or less and higher than 100 to see if the same issue...
October 16, 2002 at 4:10 am
Please do not cross post. Duplicate thread please see responses in http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=7459&FORUM_ID=5&CAT_ID=1&Topic_Title=how+to+find+sortorder%2Cchar+set%2Ccollation+seq+%3F&Forum_Title=Administration
Moderator please lock or remove thread.
"Don't roll your eyes at me. I will tape them in place." (Teacher on...
October 16, 2002 at 3:58 am
Use sp_helpsort.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
October 16, 2002 at 3:56 am
This should do the trick.
SELECT
salesx.sales_item,
salesx.Item,
salesx.Qty,
CAST(((salesx.Qty / TSPI.TotQty) * 100) AS NUMERIC(10,2)) As Prcnt
FROM salesx
INNER JOIN
(SELECT sales_item, CAST(sum(Qty) as NUMERIC(10,5)) TotQty FROM salesx GROUP BY sales_item) as TSPI
ON
TSPI.sales_item = salesx.sales_item
"Don't roll...
October 16, 2002 at 3:51 am
Is the rate can potentially change then it is not considered a good idea to use such a PK-FK relationship. In you case I would create an int column set...
October 15, 2002 at 6:10 pm
It is by some considered bad and they would opt for a INDENTITY column. I and many others however prefer not to waste space and indexes on something we want...
October 15, 2002 at 3:56 pm
Sorry, feel like an idiot, can you post the query code itself. Makes it easier to understand the Execution Plan.
Thanks
"Don't roll your eyes at me. I will tape them in...
October 15, 2002 at 3:51 pm
quote:
Antares686,I'm not sure I know how to play with the Fill Factors, they are all currently defaulted to 0%,...
October 15, 2002 at 12:43 pm
You cannot set process priorities, at least not yet in SQL.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
October 15, 2002 at 12:39 pm
What type of timestamp is it. SQL stores most all date time values as an integer in the background. The presentation layer converts to the local time zone based on...
October 15, 2002 at 12:38 pm
Where do you see the login? How are you trying to drop it? And are you sure you are dropping it from the right database when you do so?
"Don't roll...
October 15, 2002 at 4:02 am
That fix pertains to using the Microsoft OLEDB for Oracle driver and not the Oracle OLE driver. The meesage pump from Oracles driver has a huge tendency with this error....
October 15, 2002 at 3:56 am
Alright here is the work I started and for the most part I know it was working, I just did not finish out some special stuff. Take a look at...
October 14, 2002 at 7:13 pm
Indexed views are a SQL 2K item, not available in SQL 7. Also, views are slower than SProcs for thre most part since they cannot take advantage of stored execution...
October 14, 2002 at 6:55 pm
Viewing 15 posts - 4,636 through 4,650 (of 7,429 total)