Viewing 15 posts - 5,221 through 5,235 (of 7,429 total)
It is more common to set up a view on Sybase and use a linked server from SQL Server to connect to Sybase and import the data. Or you can...
July 15, 2002 at 9:00 pm
Yes the report would have to be the key, what is the query it runs, what type of report is it (things like Crystal Reports have extra stuff they can...
July 15, 2002 at 8:57 pm
I don't believe you can do the second option, but I have never tried. We use DTS in some situations to move the data to a common database and table....
July 15, 2002 at 8:52 pm
To save a DTS package open the package in EM DTS Designer, then choose files Save As and you will have an option to save to VB file.
"Don't roll your...
July 15, 2002 at 8:45 pm
It is hard to say if this is a poor or good query as there is a lot of work especially on the subquery join. Which means usually you will...
July 15, 2002 at 11:54 am
Here is a good list of the values from SELECT @@version to tell yuo th SP level.
http://www.sql-server-performance.com/service_packs.asp
"Don't roll your eyes at me. I will tape them in place." (Teacher on...
July 15, 2002 at 11:31 am
Glad to hear, duplicate message see responses in http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=5463&FORUM_ID=8&CAT_ID=1&Topic_Title=can+you+UPDATE+with+a+self+join&Forum_Title=T%2DSQL%5B/url as well.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
July 15, 2002 at 11:27 am
Depends on you situation and yes you can see blocking. Look at each in SQL BOL and they will tell you. UPDATE STATISTICS stats can be used in place of...
July 15, 2002 at 11:22 am
Yes an update this way is quite common. If you want to test without affecting your data you can do
SELECT * FROM table_x
BEGIN TRANS
YourUpdate Here
SELECT * FROM table_x
If it looks...
July 15, 2002 at 11:19 am
I have had not problems with Oracle, DB2, INFORMIX and SQL. I will take a look and see if anything else could be involved and let you know when I...
July 15, 2002 at 8:44 am
Turning Auto Update Stats and Suto Shrink on and off does not always perform the action as expected, especially Auto update stats as it is based on percentage of change...
July 15, 2002 at 8:31 am
FIrst try the action of the change thru EM Table designer to be sure it is not something about your syntax (if EM doesn't work the problem is bigger). Also...
July 15, 2002 at 8:27 am
Use sp_detach_db to detach the mdb file if still attached, then use sp_attach_single_file_db [ @dbname = ] 'dbname'
, [ @physname = ] 'physical_name' to reattach...
July 15, 2002 at 8:23 am
What version of SQL and SP are you running? If 7 and SP 1 or no SP then try SP2 or better, I believe there was a known issue that...
July 15, 2002 at 8:03 am
To stop
NET STOP MSSQLSERVER
or if you are also running sql agent (It will ask if you want to stop related services the /y answer that without user input)
NET STOP MSSQLSERVER...
July 15, 2002 at 7:39 am
Viewing 15 posts - 5,221 through 5,235 (of 7,429 total)