Search Results

0
votes
2answers
433 views

Export basic sales data from JD Edwards

JD Edwards is sales and accounting software sold and supported by Oracle. We need to get daily or weekly exports from an affiliate using JD Edwards, which I can then import into our system. That …
0
votes

Returning the largest of 2 columns in SQL Server

Case statements will probably be the fastest, but get increadibly unwieldly (as in the example in ΤΖΩΤΖΙΟΥ's link. And bad luck with a function, as it needs to be called for every single row (lots …
0
votes

Is it possible to automate MS SQL Server (2005) queries via SQL Server Management Studio?

SKapsal's comment on a command line tool for executing …
0
votes

Executing a stored procedure within a stored procedure

Looks like this question is a duplicate. Please only ask your question o …
0
votes

Is there a Max function in SQL Server that takes two values like Math.Max in .NET?

sambo99, could you please update your post to link to …
3
votes

SQL Server 2005: Wrapping Tables by Views - Pros and Cons

You won't notice any performance impact for one-table views; SQL Server will use the underlying table when building the execution plans for any code using those views. I recommend you schema-bind …
1
vote

SQL Server Full Text Search

This has already been asked and answered for SQL 2005 Express. …
0
votes

MySQL strict select of rows involving many to many tables

A bit of a hacky solution is to use IN with a group by and having filter. Like so: SELECT B_id FROM AB WHERE A_id IN (1,2,3) GROUP BY B_id HAVING COUNT(DISTINCT A_id) = 3; …
1
vote

SQL Server: varbinary or int to store a bit mask?

I usually agree with @hainstech's answer of using bit fields, because you can explicitly name each bit field to indicate what it should store. However I haven't seen a practical approach to doing …
0
votes

Finding out which locks that are acquired in a query on SQL Server?

Here's a query that will show you all active locks, who's got them, and what object they are on. I pulled this from a technet article or something years and years ago. It works on SQL 2000 and 20 …
1
vote

SQL Server IF NOT EXISTS Usage?

Have you verified that there is in fact a row where Staff_Id = @PersonID? What you've posted works fine in a test script, assuming the row exists. If you comment out the insert statement, then th …
1
vote

Push Replication

When the initial snapshot is sent to the subscriber, it will create any missing objects. You will need to indicate what the snapshot should do if the object already exists by setting the "Action i …