Viewing 15 posts - 8,731 through 8,745 (of 15,381 total)
monilps (4/11/2013)
Hi,I would like add same prefix to all table names.
For Example:
TableA
TableB
Result Needed:
aaa_TableA
aaa_TableB
I would appreciate some input.
Thanks in advance !!!
Why do you want prefixes on all your tables? This is...
April 11, 2013 at 3:10 pm
Or if you don't want to have a hard coded set of value to look for and your list is delimited we can use the DelimitedSplit8K.
if OBJECT_ID('tempdb..#MyTable') is not null
drop...
April 11, 2013 at 1:27 pm
SqlServerNinja (4/11/2013)
Thank you for your reply. This is the second time you are helping me out.
I actually see that there...
April 11, 2013 at 1:06 pm
Lynn Pettis (4/11/2013)
Jan Van der Eecken (4/11/2013)
Lynn Pettis (4/11/2013)
This really makes one want to help, doesn't it.Dunno, but it really looks like he was dumped into getting this job done.
Yes,...
April 11, 2013 at 12:52 pm
You did a pretty good job posting details about your issue. It would be easier if you had created tables but from your description it is pretty simple.
create table #TableA
(
ID...
April 11, 2013 at 12:14 pm
krishnavenkat16 (4/11/2013)
the table that we are creating trigger wont be having more updates..i'm not much into coding..please help me on this...any idea and code will be appreciated.Thanks
So you are building...
April 11, 2013 at 11:51 am
a_ud (4/11/2013)
Essentially what I was doing was used some VBA on...
April 11, 2013 at 11:48 am
Easiest way is to use SSMS.
Right click the database -> Tasks -> Generate Scripts.
This will bring up a wizard. Choose the table(s) you want to script. Then on the "Set...
April 11, 2013 at 8:41 am
andrewalex.r (4/10/2013)
K, I need to change the format of the Date
???
Did you have a question or did you just want to post some data to see if it posted correctly?
April 11, 2013 at 7:52 am
As previously stated having ddl and sample data is the best way to help. There is a large amount of information here though so that task may be a bit...
April 11, 2013 at 7:40 am
More than likely one of those variables is ending up NULL so when you concatenate them all together the @Message is NULL.
I would recommend NOT sending an email directly from...
April 10, 2013 at 3:27 pm
To read and write files stored in varbinary you have to convert to and from a byte array.
Here is a snippet that I use to retrieve pdf's from a...
April 10, 2013 at 2:17 pm
LOL Lynn's code looks almost the same as mine...except he remembered the isInMarket part. 😉
April 10, 2013 at 2:09 pm
matthew.knudsen (4/10/2013)
guidA, market, isInMarket, guidB (lets just say all of these columns are strings)
I would like to get a count grouped by market, where...
April 10, 2013 at 2:08 pm
johnnyrmtl (4/10/2013)
Hello,I am trying to perform a select based on a condition that the "datetime" formatted column is today's date
2012-12-17 13:57:38.057
what would be the syntax?
thank you
Not totally sure what the...
April 10, 2013 at 2:03 pm
Viewing 15 posts - 8,731 through 8,745 (of 15,381 total)