Viewing 15 posts - 31 through 45 (of 231 total)
Not sure what are you looking for and for what purpose. can you elaborate more with Sample data and proper structure?
July 13, 2011 at 5:01 am
No wonder my friend! It been a while Microsoft has come up with new versions and keeping few old features for backward compatibility.
There is no difference in CURRET_TIMESTAMP / GETDATE()...
July 13, 2011 at 4:59 am
I tried some ways to do this but I am not getting the expected result as mentioned in trail. Here is some workaround (see the attachment)
June 30, 2011 at 1:24 am
SQLRO (6/29/2011)
Thanks Abhijeet. Can you tell me how that works internally.
Internally it checks the existenace of records for matching criteria and even we can introduce some indexes to get more...
June 29, 2011 at 7:02 am
That's right! nvarchar is the data type you should use for storing encrypted value as it supports to store unicode charachters.
June 29, 2011 at 6:51 am
Use Dynamic Query to do this.
declare @dtbak varchar(50) = replace(replace(getdate(), ' ', ''), ':', ''), @sql varchar(1000)
select @dtbak
set @sql = 'backup database db1 to disk=''d:\Backup\a_'+ @dtbak...
June 29, 2011 at 4:28 am
You have the information with you! No worries then...
You can create the Trigger on table and check if stock code is prefix with prefix 'Y%' in magic tables. Thats it...
June 29, 2011 at 4:22 am
mitzyturbo (6/28/2011)
I've been getting some severity level 21's on a particular database, error below:
Unable to find index entry in index ID 1,...
June 29, 2011 at 4:14 am
SQLRO (6/29/2011)
ID Col1
1 Name1,address1
2 name2,address2..
There are certain set of words stored in col2 of table2(~300) and those words...
June 29, 2011 at 4:12 am
Sean
Sorry about not providing the dll. I have attached the sample script. We dn't need any data with as we need to get the metadata information. Its not excatly the...
June 29, 2011 at 1:48 am
Thats bit strange ! No one replied with any suggestions :w00t:?
I am still struggling with the issue...
June 28, 2011 at 6:47 am
Have you tried with only NTML authentication?
<AuthenticationTypes>
<RSWindowsNTLM/>
</AuthenticationTypes>
June 28, 2011 at 6:01 am
One more vote 🙂 !
Logically & practically there won't be any performance impact as such.
The only differenece between using >= and > i can see here is one result...
June 28, 2011 at 5:54 am
Viewing 15 posts - 31 through 45 (of 231 total)