all groups > sql server programming > september 2004 > threads for saturday september 4
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
SQL Server 2005 beta version
Posted by brian at 9/4/2004 8:37:02 PM
Will a beta version be released of SQL Server 2005?... more >>
DTS ActiveX Excel Formatting Question
Posted by Rick Schuhr at 9/4/2004 8:14:47 PM
All,
I have been away from DTS for some time now and have been asked to step back
in and help someone out. However, there are some dynamic steps in the
ActiveX task script that require that we hide and unhide specific Excel
columns relative to the initial column insertion point on each workshe... more >>
Remove String Patterns
Posted by T-SQL Coder at 9/4/2004 12:12:39 PM
OK,
I have a table with a column of content in a text datatype...I need to
search the content in here and remove a pattern of text (ideally with a
regular expression). This is to remove HTML pattern strings...I had a
few sample scripts from another thread but they all require varchar....
... more >>
last
Posted by Savas Ates at 9/4/2004 11:04:33 AM
select last(userid) as lastid from users
'last' is not a recognized function name.
... more >>
Linked Server Job
Posted by Bryan at 9/4/2004 10:51:02 AM
I have a job with a step:
EXECUTE sp_SyncOrders
I have the sp_SyncOrders stored Procedure that is this:
CREATE PROCEDURE [dbo].[sp_SyncOrders]
AS
UPDATE [PLUTO].[dbBase].[dbo].[WebPageParameters]
SET ParmValue = 1
WHERE Parameter = 'SyncOrders'
GO
The problem is that the job fail... more >>
Can I select from one database / insert into another database?
Posted by Steve at 9/4/2004 10:22:15 AM
Is it possible to select from a table in one database
and insert into a table (same structure) in another
database, such as:
insert into eapm.test
select * from eapm_defaults.test
Thanks
Steve
... more >>
Calculate Image size?
Posted by Christian Perthen at 9/4/2004 7:57:01 AM
Hi,
Is there a way to calculate an image datafield type or at least determine if
its empty or not.
Example
SELECT sum(images) as total size FROM images
in VB I could use LenB, is there an similar function in T-SQL?
Thanks in advance
Christian
... more >>
Best way to count records returned?
Posted by Steve Lewis - Website Nation at 9/4/2004 4:20:35 AM
What is the best way to count the number of records returned in a stored
proc.?
I have tried using @@ROWCOUNT and assigning that to an Output parameter,
but that has not worked. I then researched and found others saying that
I should use count() because using @@RowCount is redundant. What i... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Migration from Oracle 7.34 to SQL 2000
Posted by Jack Snow at 9/4/2004 3:01:49 AM
I'm attempting to move a database which currently exists on an old Oracle
7.34 instance and tried to use Data Import via DTS to SQL 2000.
The Oracle database consists of views, indexes,packages,triggers as well as
tables structures. I tried DTS using both the ODBC and OLE for Oracle and
only t... more >>
Migration from Oracle 7.34 to SQL 2000
Posted by Jack Snow at 9/4/2004 3:01:45 AM
I'm attempting to move a database which currently exists on an old Oracle
7.34 instance and tried to use Data Import via DTS to SQL 2000.
The Oracle database consists of views, indexes,packages,triggers as well as
tables structures. I tried DTS using both the ODBC and OLE for Oracle and
only t... more >>
|