Viewing 15 posts - 7,186 through 7,200 (of 13,469 total)
form some article i wrote: this is just one way to do it, there are other techniques as well, ig you search SSC, there was another recent thread on the...
July 12, 2011 at 9:21 am
on the dbserver, are there any other services going on in it is it doing Exchange as well as SQL, or web hosting?
does the server also host, say, the company's...
July 12, 2011 at 7:28 am
if you look at edmunds.com, they have a typical search fro autos/old and new; i would avoid allowinging raw text/data entry for fields if possible; much easier to use predefined...
July 11, 2011 at 2:34 pm
i've always done this with the user interface/web page building a dynamic SQL;
something like this (assuming all data entry comes from drop down lists, and vb.net as far as syntax:
...
July 11, 2011 at 2:04 pm
you'll need to edit or rebuild your plan, i think.
I just created a new main plan, and when i look a tthe details, depending on how you set it up...
July 11, 2011 at 10:10 am
kramaswamy (7/11/2011)
July 11, 2011 at 9:05 am
this seems to work for me:
SELECT
SUBSTRING(text150,1,60) AS text60_1,
SUBSTRING(text150,61,60) AS text60_2,
SUBSTRING(text150,121,60) AS text60_3
FROM YourTable
SELECT
SUBSTRING(text150,1,60) AS text60_1,
SUBSTRING(text150,61,60) AS text60_2,
SUBSTRING(text150,121,60) AS text60_3
FROM (SELECT 'EG
SABRE a CIRCUIT BREAKER...
July 11, 2011 at 8:22 am
I'm pretty sure it's the OR.
with a single value, it can do a SEEK, but with the OR, it has to scan to check the values that don't match the...
July 11, 2011 at 8:07 am
if you have to do this via bcp and not SSIS, then there are two ways that i can think of.
one exports a global temp table, and the other uses...
July 11, 2011 at 7:56 am
i'm very eak on this, never implemented it, but i thought there was a "Force Encyption" property on the server that could do that; otherwise it's an optional client connection...
July 8, 2011 at 7:30 pm
a view is just a stored SQL statement. it gets run or rerun on demand whenever you select from it.
if you think about how indexes work, you can't put an...
July 8, 2011 at 7:16 am
yep that's what i figured; my model that i posted last will do what you are asking, but of course you have to adapt it.
I don't think you ever posted...
July 8, 2011 at 5:35 am
in SSMS, you just put everything between single quotes, lines and all: you might need to find and replace single quotes with two single quotes
DECLARE @sql varchar(max)
set @sql = '
CREATE...
July 7, 2011 at 2:39 pm
there's afew posts out there that describe how the driver scans the first 8 rows to determine the data type;usually you can set the extended property "IMEX" of provider to...
July 7, 2011 at 1:46 pm
do a PRINT @sql before you EXEC(@sql); that gives you the statement so you can run it independantly;
look at the costruction in the middle where you inserted EXECUTE:
...EXECUTE USE ......
July 7, 2011 at 1:40 pm
Viewing 15 posts - 7,186 through 7,200 (of 13,469 total)