Viewing 15 posts - 1 through 15 (of 106 total)
Hi,
As to my knowledge there is no defined size of SQL Server Error Log file. Sql Server will keep on using the same file until the server is restarted or...
February 26, 2015 at 2:13 am
Dear Pramana,
Listed is the script taken from http://www.c-sharpcorner.com/UploadFile/67b45a/how-to-generate-a-create-table-script-for-an-existing-table/
I have modified it to omit the identity property.
DECLARE
@object_name SYSNAME
...
January 4, 2015 at 11:39 pm
GilaMonster (12/30/2014)
No ORDER BY, no guarantee of order. End of StoryIf you need a particular order, put an ORDER BY on your query.
Why so serious...!! :crying:
December 30, 2014 at 1:40 am
Dear Akbar,
If it didn't solve your issue share the complete code and version of your SQL.
Also have you recently upgraded your SQL Version.
Saw a similar kind of thread on msdn...
December 29, 2014 at 5:20 am
Dear Akbar,
have you tried disabling and re-enabling the trigger?
December 29, 2014 at 5:16 am
Hi,
What i can make out of your requirement is listed below:
1. You want to secure your data.
2. You want to know who is accessing what data.
If my assumption is correct...
December 29, 2014 at 2:19 am
Dear Gila,
I started the query with
Select Distinct(Left(Code,3).....
to check for the first three characters.
and then added the rest of the code.
Forgot to remove the Distinct. 😛
December 29, 2014 at 2:06 am
Dear Immaduddin,
Use the Below mentioned query
Select Distinct(LEFT(Code,3)) as CODE,COUNT(Name) as Name
From [TABLENAME]
Group by LEFT(Code,3)
Hope it Helps..!!
December 29, 2014 at 1:40 am
Hi,
For Scheduling backups to one or more then one designated folder you can use ola hallengren backup script.
https://ola.hallengren.com/sql-server-backup.html
If you want to move the backed up database to a new folder...
December 29, 2014 at 1:13 am
Check the last reply from the GilaMonster. 🙂
December 28, 2014 at 11:33 pm
Hi,
Code in your batch file would be something like this:
C:\Program Files\Microsoft SQL Server\100\DTS\Binn\dtexec /f "c:\pkgOne.dtsx" /l "DTS.LogProviderTextFile;c:\log.txt"
# /f "c:\pkgOne.dtsx" refers to the location of the saved SSIS pacakage.
# /l "DTS.LogProviderTextFile;c:\log.txt"...
December 28, 2014 at 11:30 pm
Dear Accidental Programmer,
Best of Luck..!! 🙂
December 28, 2014 at 10:59 pm
Hi,
Another way to go about it is that you can change the recovery model of the database from Full to Bulk logged and hence Alter Index statement would be minimally...
December 26, 2014 at 3:55 am
Viewing 15 posts - 1 through 15 (of 106 total)