Viewing 15 posts - 17,761 through 17,775 (of 26,489 total)
How about something like this?
--create download code table
create table #DownloadCode
(
dlc varchar(14) not null,
dlcmembernumber numeric(13,0),
dlcdatereceived datetime,
dlcdateexpires datetime,
dlcissuedby varchar(50)
)
alter table #DownloadCode add...
December 22, 2009 at 8:21 am
Let's take another step back. Help us help you, read the first the article I have referenced below in my signature block. Follow the instructions in that article...
December 22, 2009 at 7:36 am
Sorry to join in late, but looking at your stored procedure in the first post, all your stored procedure is doing is setting local variables to what will most likely...
December 22, 2009 at 7:06 am
Jeff Moden (12/22/2009)
I guess that's why I don't use it... I don't need to match on approximate data. 🙂
Working with the fuzzy lookup was actually quite fun. I can...
December 22, 2009 at 6:41 am
Here is another option:
select
run_date,
run_time,
cast(cast(run_date as varchar(8)) + ' ' + stuff(stuff(right('000000' + cast(run_time as varchar(6)), 6),5,0,':'),3,0,':') as datetime)
from
...
December 22, 2009 at 6:33 am
No, SQL Server does not track the creation of individual records in a table.
December 22, 2009 at 6:24 am
[font="Tahoma"]Merry Christmas and a Happy New Year to All[/font]
December 22, 2009 at 6:18 am
I like SSIS. For the most part we use it to move data between servers or to import/export data. Most data transformations, however, are done using SQL in...
December 21, 2009 at 9:03 pm
CirquedeSQLeil (12/21/2009)
Lynn Pettis (12/21/2009)
December 21, 2009 at 5:18 pm
Jason Jeffery is right, you don't have a WHERE clause to join the two tables in the second FROM clause (the UPDATE statements FROM clause). Are you sure you...
December 21, 2009 at 5:12 pm
We need a little more to help. We could use the table structures, sample data demonstrating the problem, expected results based on the sample data. For assistance in...
December 21, 2009 at 2:38 pm
It isn't an end all or silver bullet. But that doesn't mean it isn't something that can be enhanced and further developed to enhance the security of local databases.
Have...
December 21, 2009 at 2:31 pm
Standard answer here, It Depends. I would not have it as a default, but a development team working on a distributed app may see the usefulness of using TDE...
December 21, 2009 at 2:06 pm
SQL Iron Chef (12/21/2009)
Lynn Pettis (12/21/2009)
SQL Iron Chef (12/21/2009)
You do know that the NOLOCK hint on the update is ignored, right?
Actually I didn't! I was just trying to digest someone...
December 21, 2009 at 2:03 pm
I know, and you have to explicitly code for the encryption, you can't just encrypt the database like you can with TDE in SQL Server 2008 EE. That is...
December 21, 2009 at 1:56 pm
Viewing 15 posts - 17,761 through 17,775 (of 26,489 total)