Viewing 15 posts - 5,731 through 5,745 (of 13,460 total)
here's a pretty full fleshed model:
CREATE PROCEDURE EXAMPLEINSERT(
@Value VARCHAR(30))
AS
BEGIN
BEGIN TRY
BEGIN TRANSACTION
...
Lowell
March 22, 2012 at 6:21 am
echoing Henrico and Anthony's responses, there is more support and examples for using SSIS than any other ETL tool out there, and the price for SSIS, being included free for...
Lowell
March 22, 2012 at 5:28 am
if you want to start digging into slow queries, something like this will get you started.
you could then start reviewing the querie plans and see where the perforance issues are...non-SARGABLE...
Lowell
March 21, 2012 at 3:20 pm
does your application make hundreds of separate trips to the server? so for example if you have a dataset with 100 table,s it makes 100 separate calls to the server...
Lowell
March 21, 2012 at 3:08 pm
all the code inserting the data has to use the same datatype : NVARCHAR or NCHAR.
code as simple looking as
try this code example out and see what happens if...
Lowell
March 21, 2012 at 2:42 pm
Seans idea of using a view has a lot of advantages.
if you deny SELECT on a column like my first example,
if you have code in an application they are using...
Lowell
March 21, 2012 at 2:34 pm
deny trumps any other grants unless the user is a sysadmin...so deny it
DENY SELECT ON [dbo].[PAYROLL] ([RATEOFPAY]) TO [ClarkKent]
Lowell
March 21, 2012 at 2:09 pm
oops my error, i thought this was via TSQL and not in SSIS...sorry folks.
Lowell
March 21, 2012 at 9:46 am
Paul can you add a CLR?
if you can, it is REALLY easy.
here's an example call
select dbo.CLR_WebQuery('http://www.YourDomain.com?f=QueryString')
and the code for the CLR, which i just tested was incredibly simple:
'Imports...
Lowell
March 21, 2012 at 9:45 am
yeah that's working by design;it's considered the normal behavior to throw away the identities that get rolled back in a transaciton or deleted; they are not reused.
the identity() columns...
Lowell
March 21, 2012 at 8:44 am
what are the specific row values that are not coming over;
the WHERE statement you posted has WHERE items that might filter it out, as well as a group by to...
Lowell
March 21, 2012 at 8:41 am
Sapen (3/21/2012)
The option "prevent saving changes that require table re-creation" is currently checked. But I dont want any data loss if I am making changes...
Lowell
March 21, 2012 at 8:32 am
ramadesai108 (3/21/2012)
Lowell
March 21, 2012 at 8:05 am
Tom Brown (3/21/2012)
Lowell
March 21, 2012 at 7:58 am
Thanks for the reply...
How could i now take that script but update a new column in my database to show the sequence.
At the moment that seq column is blank but...
Lowell
March 21, 2012 at 7:54 am
Viewing 15 posts - 5,731 through 5,745 (of 13,460 total)